 :root {
      /* Earthy, island-inspired palette */
      --green: #0f3d2e;     /* pine */
      --green-2: #1f6f54;   /* jade */
      --sand: #e7dbc8;      /* sand */
      --clay: #b8592a;      /* terracotta accent */
      --ink: #1b1b1b;       /* primary text */
      --mist: #f7f7f5;      /* background */
      --card: #ffffff;      /* surfaces */
      --muted: #5b635d;     /* secondary text */
      --radius: 16px;
      --shadow: 0 12px 30px rgba(0,0,0,.08);
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--ink);
      background: var(--mist);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    /* Layout helpers */
    .container { width: min(1100px, 92vw); margin: 0 auto; }
    .grid { display: grid; gap: 1.25rem; }
    .btn { display: inline-block; padding: .9rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 600; }
    .btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow); }
    .btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
    .btn-outline { border: 2px solid var(--green); color: var(--green); }
    .btn-outline:hover { background: var(--green); color: #fff; }

    /* Header */
    header {
      position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px);
      background: color-mix(in oklab, white 70%, transparent);
      border-bottom: 1px solid rgba(0,0,0,.06);
    }
    .nav { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; }
    .brand { display: flex; gap: .6rem; align-items: center; text-decoration: none; color: var(--ink); font-weight: 800; letter-spacing: .3px; }
    .brand-mark { width: 34px; height: 34px; border-radius: 10px; background: conic-gradient(from 180deg at 50% 50%, var(--green), var(--green-2)); display: grid; place-items: center; color: #fff; font-weight: 900; box-shadow: var(--shadow); }
    nav a { color: var(--ink); text-decoration: none; font-weight: 600; opacity: .85; }
    nav a:hover { opacity: 1; }
    .nav-links { display: flex; gap: 1rem; align-items: center; }


    .breadcrumb {
  background: var(--gray-100);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}


    /* Hero */
    .hero { padding: clamp(48px, 6vw, 84px) 0; background:
      radial-gradient(900px 400px at 20% -10%, #dfeee7 0%, transparent 60%),
      radial-gradient(900px 500px at 120% 20%, #f0e8dc 0%, transparent 60%); }
    .hero .wrap { display: grid; gap: 2rem; grid-template-columns: 1.15fr .85fr; align-items: center; }
    .kicker { text-transform: uppercase; font-size: .8rem; letter-spacing: .18em; color: var(--muted); font-weight: 700; }
    .hero h1 { font-size: clamp(1.9rem, 3.2vw, 3rem); line-height: 1.15; margin: .4rem 0 1rem; }
    .hero p { font-size: clamp(1rem, 1.2vw, 1.1rem); color: #2a2e2b; }
    .hero-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
    .hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }

    /* Sections */
    section { padding: clamp(42px, 5vw, 72px) 0; }
    .section-title { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 .6rem; }
    .section-sub { color: var(--muted); margin: 0 0 1.2rem; }

    /* Cards */
    .cards { grid-template-columns: repeat(12, 1fr); }
    .card { grid-column: span 12; background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: grid; }
    .card img { width: 100%; height: 220px; object-fit: cover; }
    .card-body { padding: 1rem 1rem 1.2rem; }
    .card h3 { margin: .2rem 0 .4rem; font-size: 1.15rem; }
    .badge { display: inline-block; background: var(--sand); color: var(--green); font-weight: 700; padding: .2rem .55rem; border-radius: 999px; font-size: .8rem; letter-spacing: .02em; }

    /* Sustainability band */
    .band { background: linear-gradient(180deg, #eaf4ef, #fff); border-top: 1px solid rgba(0,0,0,.06); border-bottom: 1px solid rgba(0,0,0,.06); }
    .band .items { grid-template-columns: repeat(3, 1fr); }
    .band .item { background: #fff; border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
    .item h4 { margin: .4rem 0 .2rem; }
    .item p { margin: 0; color: var(--muted); }

    /* Visit */
    .visit { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; display: grid; gap: 1rem; grid-template-columns: 1.2fr .8fr; }
    .visit .map { border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); }
    .visit .map iframe { width: 100%; height: 300px; border: 0; display: block; }
    .dl { margin: .2rem 0; }
    .dl dt { font-weight: 700; }
    .dl dd { margin: 0 0 .6rem; color: var(--muted); }

    /* Footer */
    footer { padding: 36px 0 116px 0; color: #fff; background: linear-gradient(135deg, var(--green), var(--green-2)); }
    footer .foot { display: grid; gap: 1rem; grid-template-columns: 1fr auto; align-items: center; }
    footer a { color: #fff; opacity: .9; text-decoration: none; }

    /* Accessibility & smalls */
    a:focus-visible, button:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; border-radius: 6px; }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

    /* Responsive */
    @media (min-width: 680px) {
      .card { grid-column: span 6; grid-template-rows: auto 1fr; }
      .card img { height: 220px; }
    }
    @media (min-width: 960px) {
      .cards .card { grid-column: span 4; }
    }
    @media (max-width: 900px) {
      .hero .wrap { grid-template-columns: 1fr; }
      .visit { grid-template-columns: 1fr; }
    }
  

    /* Gallery */
    .gallery-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
    .gallery .section-sub { margin-bottom: 1rem; }

    /* Instagram */
    .insta-grid { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
    .insta-grid a { display: block; }
    .insta-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 10px; }
    .insta-cta { margin-top: .8rem; }

    /* WhatsApp Bar */
    .whatsapp-bar { position: fixed; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; z-index: 100; box-shadow: var(--shadow); }
    .whatsapp-wrap { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .7rem 1rem; max-width: 1100px; margin: 0 auto; }
    .whatsapp-wrap a { display: flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.25); padding: .55rem 1rem; border-radius: 999px; color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .2px; }
    .whatsapp-wrap svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }
    .has-whatsapp-bar { padding-bottom: 68px; }
    @media (min-width: 900px) { .has-whatsapp-bar { padding-bottom: 60px; } }

  

    /* Hero slider */
    .hero-card { position: relative; }
    .hero-card .slider { position: relative; }
    .hero-card .slides { display: flex; width: 100%; transition: transform .6s ease; }
    .hero-card .slide { flex: 0 0 100%; position: relative; }
    .hero-card .slide img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
    .hero-card .slider-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; padding: 0 .3rem; }
    .hero-card .slider-nav button { pointer-events: auto; background: rgba(0,0,0,.45); border: none; color: #fff; width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; backdrop-filter: saturate(1.2) blur(2px); box-shadow: var(--shadow); }
    .hero-card .slider-nav button:hover { filter: brightness(1.1); }
    .hero-card .slider-nav svg { width: 18px; height: 18px; }
    .hero-card .slider-dots { position: absolute; left: 0; right: 0; bottom: 8px; display: flex; gap: 6px; justify-content: center; }
    .hero-card .slider-dots button { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.6); border: 0; box-shadow: var(--shadow); }
    .hero-card .slider-dots button.active { background: #fff; transform: scale(1.15); }
