    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #1a3d2b;
      --green-mid:   #2d6a4f;
      --green-light: #52b788;
      --sand:        #f4e9d8;
      --warm:        #e8c99a;
      --ocean:       #0077b6;
      --ocean-light: #90e0ef;
      --white:       #ffffff;
      --text-dark:   #1c1c1c;
      --text-muted:  #5a5a5a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text-dark);
      background: var(--white);
    }

    /* ══════════════════════════════════════════
       NAV — premium dark glass
    ══════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .7rem 2.5rem;
      background: linear-gradient(90deg,
        rgba(8,22,12,.95) 0%,
        rgba(14,35,20,.92) 50%,
        rgba(8,22,12,.95) 100%);
      backdrop-filter: blur(24px) saturate(2);
      -webkit-backdrop-filter: blur(24px) saturate(2);
      border-bottom: 1px solid rgba(82,183,136,.22);
      box-shadow:
        0 1px 0 rgba(82,183,136,.08),
        0 4px 40px rgba(0,0,0,.45);
      transition: padding .35s ease, background .35s ease, box-shadow .35s;
    }
    nav::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(82,183,136,.04) 0%, transparent 100%);
      pointer-events: none;
    }
    nav.scrolled {
      padding: .5rem 2.5rem;
      background: linear-gradient(90deg,
        rgba(6,18,10,.98) 0%,
        rgba(10,26,15,.97) 50%,
        rgba(6,18,10,.98) 100%);
      box-shadow: 0 2px 48px rgba(0,0,0,.6);
    }

    /* ── LOGO ── */
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 46px; width: auto;
      object-fit: contain;
      transition: height .35s ease, filter .3s;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
    }
    nav.scrolled .nav-logo img { height: 34px; }
    .nav-logo img:hover { filter: drop-shadow(0 2px 12px rgba(82,183,136,.5)); }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      padding: 8px 9px;
      z-index: 300;
      transition: background .2s;
    }
    .nav-hamburger:hover { background: rgba(82,183,136,.18); border-color: rgba(82,183,136,.35); }
    .nav-hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--sand);
      border-radius: 2px;
      transition: transform .3s, opacity .3s, width .3s;
    }
    .nav-hamburger.open { background: rgba(82,183,136,.15); border-color: rgba(82,183,136,.4); }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ── DESKTOP LINKS ── */
    .nav-links {
      display: flex;
      gap: 2px;
      list-style: none;
      align-items: center;
      flex: 1;
      justify-content: center;
      flex-wrap: nowrap;
      overflow: hidden;
    }
    .nav-links a {
      position: relative;
      color: rgba(244,230,210,.72);
      text-decoration: none;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: .42rem .65rem;
      border-radius: 7px;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 50%; right: 50%;
      height: 1.5px;
      background: var(--green-light);
      border-radius: 2px;
      transition: left .25s, right .25s;
    }
    .nav-links a:hover { color: #fff; background: rgba(82,183,136,.1); }
    .nav-links a:hover::after { left: 10%; right: 10%; }

    /* Book Now CTA pill */
    .nav-cta {
      background: linear-gradient(135deg, var(--green-light), #3da87a) !important;
      color: var(--green-dark) !important;
      padding: .48rem 1.1rem !important;
      border-radius: 20px !important;
      font-weight: 700 !important;
      font-size: .68rem !important;
      letter-spacing: 1px !important;
      box-shadow: 0 2px 14px rgba(82,183,136,.35) !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: linear-gradient(135deg, var(--warm), #d4a852) !important;
      color: var(--green-dark) !important;
      box-shadow: 0 4px 20px rgba(232,200,154,.4) !important;
      transform: translateY(-1px);
    }

    /* ── NAV RIGHT ── */
    .nav-right { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }

    /* ── MOBILE SLIDE-DOWN MENU ── */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: linear-gradient(180deg, rgba(6,18,10,.99) 0%, rgba(10,26,15,.98) 100%);
      backdrop-filter: blur(24px);
      z-index: 150;
      padding: 5.5rem 1.5rem 2rem;
      flex-direction: column;
      gap: 2px;
      overflow-y: auto;
      max-height: 100vh;
      transform: translateY(-100%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      border-bottom: 1px solid rgba(82,183,136,.2);
    }
    .nav-mobile.open { display: flex; transform: translateY(0); }
    .nav-mobile a {
      color: rgba(244,230,210,.8);
      text-decoration: none;
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: .8rem 1.1rem;
      border-radius: 10px;
      transition: color .2s, background .2s, padding-left .2s;
      display: flex; align-items: center; gap: .7rem;
    }
    .nav-mobile a:hover {
      color: var(--green-light);
      background: rgba(82,183,136,.1);
      padding-left: 1.6rem;
    }
    .nav-mobile .mob-cta {
      background: linear-gradient(135deg, var(--green-light), #3da87a) !important;
      color: var(--green-dark) !important;
      border-radius: 30px !important;
      font-weight: 700 !important;
      text-align: center;
      justify-content: center;
      margin-top: .8rem;
      padding: .9rem !important;
      box-shadow: 0 4px 18px rgba(82,183,136,.35);
    }
    .nav-mobile .mob-cta:hover {
      background: linear-gradient(135deg, var(--warm), #d4a852) !important;
      padding-left: 1.1rem !important;
    }
    /* mobile section separator */
    .mob-sep {
      height: 1px;
      background: rgba(255,255,255,.07);
      margin: .4rem 0;
    }

    /* ══ LANG SWITCHER ══ */
    .lang-switcher { position: relative; }
    .lang-btn {
      display: flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.16);
      color: var(--sand); border-radius: 22px;
      padding: 5px 10px 5px 6px;
      cursor: pointer;
      transition: background .2s, border-color .2s, box-shadow .2s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    }
    .lang-btn:hover {
      background: rgba(82,183,136,.18);
      border-color: rgba(82,183,136,.4);
      box-shadow: 0 2px 12px rgba(82,183,136,.2);
    }
    /* Flag emoji displayed large */
    .lang-flag { font-size: 1.15rem; line-height: 1; }
    .lang-code { font-weight: 700; font-size: .65rem; letter-spacing: 1px; color: rgba(244,230,210,.8); }
    .lang-arrow {
      font-size: .5rem; opacity: .6;
      transition: transform .25s;
      margin-left: 1px;
    }
    .lang-btn.open .lang-arrow { transform: rotate(180deg); }

    .lang-dropdown {
      display: none;
      position: absolute; top: calc(100% + 10px); right: 0;
      background: rgba(8,22,12,.97);
      border: 1px solid rgba(82,183,136,.28);
      border-radius: 16px;
      overflow: hidden;
      min-width: 190px;
      box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        0 0 0 1px rgba(82,183,136,.08);
      z-index: 300;
      backdrop-filter: blur(24px);
    }
    .lang-dropdown.open { display: block; }

    /* Grid: 3 columns of flag buttons instead of a list */
    .lang-dropdown-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
      padding: 10px;
    }
    .lang-option {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px;
      padding: .6rem .4rem;
      cursor: pointer;
      border-radius: 10px;
      background: none; border: 1.5px solid transparent;
      transition: background .15s, border-color .15s, transform .15s;
      font-family: 'Lato', sans-serif;
    }
    .lang-option:hover {
      background: rgba(82,183,136,.15);
      border-color: rgba(82,183,136,.3);
      transform: translateY(-2px);
    }
    .lang-option.active {
      background: rgba(82,183,136,.22);
      border-color: rgba(82,183,136,.5);
    }
    .lo-flag {
      font-size: 1.6rem;
      line-height: 1;
      display: block;
    }
    .lo-name {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: rgba(244,230,210,.75);
    }
    .lang-option.active .lo-name { color: var(--green-light); }

    /* ── MOBILE LANG STRIP ── */
    .mob-lang-strip {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 5px;
      padding: .8rem 1rem;
      border-top: 1px solid rgba(255,255,255,.07);
      margin-top: .4rem;
    }
    .mob-lang-btn {
      display: flex; flex-direction: column;
      align-items: center; gap: 2px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 6px 4px;
      cursor: pointer; font-family: inherit;
      transition: background .2s, border-color .2s;
    }
    .mob-lang-btn:hover, .mob-lang-btn.active {
      background: rgba(82,183,136,.22);
      border-color: rgba(82,183,136,.45);
    }
    .mob-lang-btn .mlb-flag { font-size: 1.3rem; line-height: 1; }
    .mob-lang-btn .mlb-code { font-size: .55rem; font-weight:700; letter-spacing:.8px; color:rgba(244,230,210,.6); }
    .mob-lang-btn.active .mlb-code { color: var(--green-light); }

    @media (max-width: 1100px) { .nav-links { gap: 0; } .nav-links a { font-size: .62rem; padding: .35rem .4rem; } }
    @media (max-width: 900px)  { .nav-links { display: none; } .nav-hamburger { display: flex; } nav { padding: .75rem 1.4rem; } }
    @media (max-width: 480px)  { nav { padding: .65rem 1rem; } .nav-logo img { height: 36px; } }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(10,30,20,0.55) 0%, rgba(10,30,20,0.25) 50%, rgba(0,60,90,0.45) 100%),
        url('img/eco-hero.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      position: relative;
    }

    .hero-tag {
      font-size: 0.78rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--green-light);
      background: rgba(255,255,255,0.1);
      border: 1px solid var(--green-light);
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
    }

    #hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
      margin-bottom: 0.4rem;
    }

    #hero h1 em {
      font-style: italic;
      color: var(--warm);
      display: block;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,0.88);
      margin: 1.2rem auto 2.5rem;
      max-width: 560px;
      line-height: 1.7;
      font-weight: 300;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

    .btn-primary {
      background: var(--green-light);
      color: var(--green-dark);
      padding: 0.85rem 2.4rem;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }
    .btn-primary:hover { background: var(--warm); transform: translateY(-2px); }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.7);
      color: var(--white);
      padding: 0.85rem 2.4rem;
      border-radius: 40px;
      font-weight: 400;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--warm); background: rgba(255,255,255,0.08); }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .hero-scroll .arrow {
      width: 24px; height: 24px;
      border-right: 2px solid rgba(255,255,255,0.5);
      border-bottom: 2px solid rgba(255,255,255,0.5);
      transform: rotate(45deg);
      animation: bounce 1.6s infinite;
    }
    @keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

    /* ── SECTION COMMON ── */
    section { padding: 6rem 2rem; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-body {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 680px;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 6rem 8vw;
    }

    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      height: 520px;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--green-dark);
      color: var(--sand);
      padding: 1.4rem 1.6rem;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .about-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--green-light);
      line-height: 1;
    }
    .about-badge .label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }

    .about-text { padding-left: 1rem; }
    .about-text .section-body { margin-top: 1rem; }

    .eco-pillars {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .pillar-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--green-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .pillar-text strong { font-size: 0.95rem; color: var(--green-dark); display: block; }
    .pillar-text span { font-size: 0.85rem; color: var(--text-muted); }

    /* ── ROOMS ── */
    #rooms {
      background: var(--white);
      text-align: center;
      padding: 6rem 4vw;
    }
    #rooms .section-title { margin-bottom: 0.5rem; }
    #rooms .section-body { margin: 0 auto 3.5rem; }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .room-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.10);
      transition: transform 0.3s, box-shadow 0.3s;
      background: var(--white);
      text-align: left;
    }
    .room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

    .room-img {
      height: 230px;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    .room-body { padding: 1.6rem; }
    .room-tag {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 0.4rem;
    }
    .room-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--green-dark);
      margin-bottom: 0.5rem;
    }
    .room-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

    .room-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.82rem;
      color: var(--text-muted);
      border-top: 1px solid #eee;
      padding-top: 1rem;
    }
    .room-meta span { display: flex; align-items: center; gap: 0.3rem; }

    .room-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.2rem;
    }
    .price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); }
    .price small { font-size: 0.75rem; font-family: 'Lato', sans-serif; color: var(--text-muted); }

    .btn-book-OLD {
      background: var(--green-dark);
      color: var(--white);
      padding: 0.55rem 1.3rem;
      border-radius: 30px;
      font-size: 0.82rem;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.2s;
    }
    .btn-book:hover { background: var(--green-mid); }

    /* ── ACTIVITIES ── */
    #activities {
      background: var(--green-dark);
      padding: 6rem 4vw;
      text-align: center;
    }
    #activities .section-label { color: var(--green-light); }
    #activities .section-title { color: var(--sand); }
    #activities .section-body { color: rgba(244,233,216,0.75); margin: 0 auto 3.5rem; }

    .act-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .act-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background 0.3s, transform 0.3s;
      cursor: default;
    }
    .act-card:hover {
      background: rgba(82,183,136,0.15);
      transform: translateY(-6px);
    }

    .act-icon { font-size: 2.4rem; margin-bottom: 1rem; }
    .act-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--warm);
      margin-bottom: 0.6rem;
    }
    .act-card p { font-size: 0.88rem; color: rgba(244,233,216,0.72); line-height: 1.7; }

    /* ── GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 0.5rem;
      max-width: 100%;
      overflow: hidden;
    }

    .gallery-strip img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .gallery-strip img:hover { transform: scale(1.03); }
    .g-tall { grid-row: span 2; overflow: hidden; }
    .g-cell { overflow: hidden; }

    /* ── CONTACT ── */
    #contact {
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
      padding: 4rem 8vw;
    }

    .contact-info .section-body { margin-top: .6rem; margin-bottom: 1.2rem; }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.75rem;
    }
    .contact-detail .ci-icon {
      width: 32px; height: 32px;
      background: var(--green-mid);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .contact-detail strong { font-size: 0.85rem; display: block; color: var(--green-dark); }
    .contact-detail span { font-size: 0.9rem; color: var(--text-muted); }

    .contact-form {
      background: var(--white);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    }
    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--green-dark);
      margin-bottom: .9rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: .65rem; }
    .form-group { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .65rem; }
    .form-group label { font-size: 0.72rem; color: var(--green-dark); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

    .form-group input,
    .form-group select,
    .form-group textarea {
      border: 1.5px solid #ddd;
      border-radius: 10px;
      padding: 0.55rem 0.85rem;
      font-family: 'Lato', sans-serif;
      font-size: 0.88rem;
      color: var(--text-dark);
      outline: none;
      transition: border-color 0.2s;
      background: var(--white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--green-light); }
    .form-group textarea { resize: vertical; min-height: 68px; }

    .btn-send {
      width: 100%;
      margin-top: .2rem;
      background: var(--green-dark);
      color: var(--white);
      border: none;
      padding: 1rem;
      border-radius: 40px;
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-send:hover { background: var(--green-mid); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--green-dark);
      color: rgba(244,233,216,0.7);
      text-align: center;
      padding: 3rem 2rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--warm);
      margin-bottom: 0.5rem;
    }
    .footer-logo span { color: var(--green-light); }
    footer p { font-size: 0.88rem; margin-bottom: 1.5rem; }

    .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(244,233,216,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--green-light); }

    .social-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
    .social-icons a {
      width: 40px; height: 40px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--sand);
      text-decoration: none;
      font-size: 1rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .social-icons a:hover { background: var(--green-mid); border-color: var(--green-mid); }

    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
    .copyright { font-size: 0.78rem; color: rgba(244,233,216,0.4); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none !important; }
      #about, #contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6vw; }
      .about-img-wrap img { height: 320px; }
      .about-badge { bottom: -1rem; right: -0.5rem; }
      .about-text { padding-left: 0; }
      .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
      .g-tall { grid-row: span 1; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      section { padding: 4rem 1.5rem; }
      #hero h1 { font-size: 2.4rem; }
    }

    /* ════════════════════════════════
       PHOTO GALLERY — 3 sections
    ════════════════════════════════ */
    .gallery-section {
      padding: 5rem 0 0;
    }
    .gallery-section:last-of-type { padding-bottom: 5rem; }

    .gallery-section-header {
      text-align: center;
      padding: 0 8vw 2.5rem;
    }
    .gallery-section-header .section-label { margin-bottom: 0.5rem; }
    .gallery-section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem,3.2vw,2.4rem);
      color: var(--green-dark);
      margin-bottom: 0.6rem;
    }
    .gallery-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 52ch;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* masonry-feel grid */
    .gal3-grid {
      display: grid;
      gap: 4px;
      width: 100%;
    }

    /* Property & beach — 3-col asymmetric */
    .gal3-grid.property {
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 340px 260px;
    }
    .gal3-grid.property .g-hero    { grid-column: 1; grid-row: 1 / 3; }
    .gal3-grid.property .g-tr      { grid-column: 2; grid-row: 1; }
    .gal3-grid.property .g-br      { grid-column: 3; grid-row: 1; }
    .gal3-grid.property .g-bl      { grid-column: 2; grid-row: 2; }
    .gal3-grid.property .g-br2     { grid-column: 3; grid-row: 2; }

    /* Rooms — 2-row, 3-col equal */
    .gal3-grid.rooms {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 300px 300px;
    }

    /* Events — mixed: 1 tall left + 2 right stacked, then 3 across bottom */
    .gal3-grid.events {
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 300px 260px;
    }
    .gal3-grid.events .g-tall   { grid-column: 1; grid-row: 1 / 3; }
    .gal3-grid.events .g-tr     { grid-column: 2; grid-row: 1; }
    .gal3-grid.events .g-br     { grid-column: 3; grid-row: 1; }
    .gal3-grid.events .g-bl     { grid-column: 2; grid-row: 2; }
    .gal3-grid.events .g-br2    { grid-column: 3; grid-row: 2; }

    .gal3-cell {
      overflow: hidden;
      position: relative;
      background: #c8d5c4;
      cursor: pointer;
    }
    .gal3-cell img, .gal3-cell video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gal3-cell:hover img,
    .gal3-cell:hover video { transform: scale(1.06); }

    .gal3-cell .cell-cap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(10,25,15,0.78));
      color: #fff;
      padding: 28px 16px 14px;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gal3-cell:hover .cell-cap { opacity: 1; }

    /* placeholder tile shown when no real photo loaded yet */
    .gal3-cell.placeholder {
      background: linear-gradient(135deg, #c5d8c1, #9dbf97);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 8px;
    }
    .gal3-cell.placeholder .ph-icon { font-size: 2.2rem; opacity: .55; }
    .gal3-cell.placeholder .ph-text {
      font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(26,61,43,0.6);
    }

    /* upload badge on placeholder */
    .upload-badge {
      position: absolute; top: 10px; right: 10px;
      background: rgba(82,183,136,0.85);
      color: #fff; font-size: 0.65rem; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px;
      border-radius: 20px; backdrop-filter: blur(4px);
    }

    /* lightbox */
    #gal-lb {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(10,20,15,0.94); backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    #gal-lb.open { display: flex; }
    #gal-lb img, #gal-lb video {
      max-width: 92vw; max-height: 88vh;
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      object-fit: contain;
    }
    #lb-close {
      position: absolute; top: 20px; right: 24px;
      color: #fff; font-size: 2rem; cursor: pointer;
      background: none; border: none; line-height: 1;
    }
    #lb-prev, #lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: #fff; font-size: 1.5rem; cursor: pointer;
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    #lb-prev:hover, #lb-next:hover { background: rgba(82,183,136,0.4); }
    #lb-prev { left: 20px; }
    #lb-next { right: 20px; }
    #lb-caption {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.75); font-size: 0.82rem; letter-spacing: 1px;
      text-transform: uppercase; white-space: nowrap;
    }
    #lb-counter {
      position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 2px;
    }

    /* section divider */
    .gal-divider {
      height: 1px; background: #e0d8cc;
      margin: 0 8vw;
    }

    @media (max-width: 760px) {
      .gal3-grid.property,
      .gal3-grid.rooms,
      .gal3-grid.events {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .gal3-grid .g-hero,
      .gal3-grid .g-tall { grid-column: 1 / 3; grid-row: auto; }
      .gal3-cell { min-height: 200px; }
    }
    @media (max-width: 480px) {
      .gal3-grid.property,
      .gal3-grid.rooms,
      .gal3-grid.events { grid-template-columns: 1fr; }
      .gal3-grid .g-hero,
      .gal3-grid .g-tall { grid-column: 1; }
    }

    /* ── GALLERY NAV TABS ── */
    .gal-nav {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      justify-content: center;
      padding: 0 8vw 3rem;
    }
    .gal-tab {
      font-family: 'Lato', sans-serif;
      font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.55rem 1.2rem; border-radius: 30px; cursor: pointer;
      border: 1.5px solid var(--green-mid);
      background: transparent; color: var(--green-dark);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .gal-tab:hover { background: var(--green-light); color: #fff; border-color: var(--green-light); }
    .gal-tab.active { background: var(--green-dark); color: var(--sand); border-color: var(--green-dark); }

    /* ── SUB-SECTION wrapper ── */
    .gal-subsection { display: none; }
    .gal-subsection.active { display: block; }

    /* ── VIDEO CELL ── */
    .gal3-cell.vid-cell { background: #0a1a0f; cursor: pointer; }
    .gal3-cell.vid-cell video {
      width:100%; height:100%; object-fit:cover; display:block;
      pointer-events:none;
    }
    .vid-play-btn {
      position: absolute; inset:0;
      display:flex; align-items:center; justify-content:center;
      z-index:2; transition: opacity 0.3s;
    }
    .vid-play-btn span {
      width: 56px; height: 56px; border-radius:50%;
      background: rgba(255,255,255,0.85);
      display:flex; align-items:center; justify-content:center;
      font-size: 1.4rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35);
      transition: transform 0.2s;
    }
    .gal3-cell.vid-cell:hover .vid-play-btn span { transform: scale(1.12); }

    /* ── DRONE / WIDE VIDEO GRID ── */
    .gal3-grid.drone {
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 380px 280px;
    }
    .gal3-grid.drone .g-hero { grid-column:1; grid-row:1/3; }
    .gal3-grid.drone .g-tr   { grid-column:2; grid-row:1; }
    .gal3-grid.drone .g-br   { grid-column:2; grid-row:2; }

    /* ── SURF VIDEO GRID ── */
    .gal3-grid.surfvid {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 300px 260px;
    }
    .gal3-grid.surfvid .g-wide { grid-column:1/3; grid-row:1; }
    .gal3-grid.surfvid .g-side { grid-column:3;   grid-row:1; }

    /* section count badge */
    .gal-tab .tab-count {
      display:inline-block; margin-left:5px;
      background: rgba(0,0,0,0.12); border-radius:10px;
      font-size:0.68rem; padding:1px 7px;
    }
    .gal-tab.active .tab-count { background: rgba(255,255,255,0.2); }

    /* dark bg for video sections */
    .gal-subsection.dark-bg { background: #0a1a0f; }
    .gal-subsection.dark-bg .gallery-section-header h2 { color: var(--warm); }
    .gal-subsection.dark-bg .gallery-section-header .section-label { color: var(--green-light); }
    .gal-subsection.dark-bg .gallery-section-header p { color: rgba(244,233,216,0.7); }
    .gal-subsection.dark-bg .gal-divider { background: rgba(255,255,255,0.1); }

    @media (max-width:760px){
      .gal3-grid.drone, .gal3-grid.surfvid {
        grid-template-columns:1fr;
        grid-template-rows:auto;
      }
      .gal3-grid.drone .g-hero,
      .gal3-grid.surfvid .g-wide { grid-column:1; grid-row:auto; }
      .gal3-grid.drone .g-tr,
      .gal3-grid.drone .g-br,
      .gal3-grid.surfvid .g-side { grid-column:1; grid-row:auto; }
      .gal3-cell { min-height:200px; }
    }

    /* ── SHORT VIDEO portrait grid ── */
    @media (max-width: 760px) {
      #tab-shortvids .gal3-cell { min-height: 260px; }
      #tab-shortvids > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
      }
    }
    @media (max-width: 480px) {
      #tab-shortvids > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
      }
    }

    /* ════════════════════════════════
       SLIDESHOW GALLERY
    ════════════════════════════════ */
    .ss-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #0a1a0f;
      user-select: none;
    }

    /* Main big slide */
    .ss-stage {
      position: relative;
      width: 100%;
      height: clamp(340px, 56vw, 680px);
      overflow: hidden;
    }
    .ss-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .55s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ss-slide.active { opacity: 1; z-index: 2; }
    .ss-slide.prev   { opacity: 0; z-index: 1; }
    .ss-slide img, .ss-slide video {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .ss-slide video { pointer-events: none; }

    /* Caption overlay */
    .ss-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0; z-index: 4;
      background: linear-gradient(transparent, rgba(5,15,8,.82));
      padding: 3rem 2rem 1.2rem;
      color: rgba(244,233,216,.9);
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      pointer-events: none;
    }

    /* Placeholder inside slide */
    .ss-slide.ss-ph {
      background: linear-gradient(135deg,#1a3d2b,#2d6a4f);
      flex-direction: column; gap: 10px;
    }
    .ss-slide.ss-ph .ph-icon { font-size: 3rem; opacity: .5; }
    .ss-slide.ss-ph .ph-text {
      font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(244,233,216,.45);
    }
    .ss-slide.ss-ph .upload-badge { position: static; margin-top: 8px; }

    /* Arrow buttons */
    .ss-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10; background: rgba(255,255,255,.14);
      border: 1.5px solid rgba(255,255,255,.28);
      color: #fff; font-size: 1.4rem;
      width: 50px; height: 50px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
      backdrop-filter: blur(4px);
    }
    .ss-arrow:hover { background: rgba(82,183,136,.5); transform: translateY(-50%) scale(1.08); }
    .ss-arrow.left  { left:  16px; }
    .ss-arrow.right { right: 16px; }

    /* Dot indicators */
    .ss-dots {
      display: flex; justify-content: center; gap: 7px;
      padding: 14px 0 10px;
      background: #0a1a0f;
    }
    .ss-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.25); cursor: pointer;
      transition: background .25s, transform .25s;
      border: none; padding: 0;
    }
    .ss-dot.active { background: var(--green-light); transform: scale(1.3); }

    /* Thumbnail strip */
    .ss-thumbs {
      display: flex; gap: 4px;
      overflow-x: auto; scroll-behavior: smooth;
      background: #061009;
      padding: 6px;
      scrollbar-width: thin;
      scrollbar-color: #2d6a4f #0a1a0f;
    }
    .ss-thumbs::-webkit-scrollbar { height: 4px; }
    .ss-thumbs::-webkit-scrollbar-track { background: #0a1a0f; }
    .ss-thumbs::-webkit-scrollbar-thumb { background: #2d6a4f; border-radius: 2px; }
    .ss-thumb {
      flex-shrink: 0;
      width: 88px; height: 62px;
      overflow: hidden; cursor: pointer;
      border-radius: 4px;
      border: 2px solid transparent;
      transition: border-color .2s, opacity .2s;
      opacity: .55;
      position: relative;
      background: #1a3d2b;
    }
    .ss-thumb.active { border-color: var(--green-light); opacity: 1; }
    .ss-thumb:hover  { opacity: .85; }
    .ss-thumb img, .ss-thumb video {
      width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
    }
    .ss-thumb .th-ph {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; opacity: .5;
    }
    .ss-thumb .vid-badge {
      position: absolute; bottom: 3px; right: 4px;
      font-size: .6rem; background: rgba(0,0,0,.6);
      color: #fff; padding: 1px 5px; border-radius: 3px;
    }

    /* Auto-play progress bar */
    .ss-progress {
      height: 3px; background: rgba(255,255,255,.12);
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
    }
    .ss-progress-bar {
      height: 100%; background: var(--green-light);
      width: 0%; transition: width linear;
    }

    /* Section label inside the slideshow */
    .ss-section-badge {
      position: absolute; top: 16px; left: 16px; z-index: 6;
      background: rgba(10,25,15,.75); backdrop-filter: blur(6px);
      border: 1px solid rgba(82,183,136,.4);
      color: var(--green-light); font-size: .68rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
    }

    /* Counter */
    .ss-counter {
      position: absolute; top: 16px; right: 16px; z-index: 6;
      background: rgba(10,25,15,.65); backdrop-filter: blur(4px);
      color: rgba(244,233,216,.7); font-size: .72rem;
      letter-spacing: 2px; padding: 5px 10px; border-radius: 12px;
    }

    /* Fullscreen button */
    .ss-fullscreen {
      position: absolute; bottom: 14px; right: 14px; z-index: 6;
      background: rgba(10,25,15,.65); border: 1px solid rgba(255,255,255,.2);
      color: rgba(244,233,216,.8); font-size: .9rem;
      width: 34px; height: 34px; border-radius: 8px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s; backdrop-filter: blur(4px);
    }
    .ss-fullscreen:hover { background: rgba(82,183,136,.4); }

    /* Play/pause button */
    .ss-playpause {
      position: absolute; bottom: 14px; right: 56px; z-index: 6;
      background: rgba(10,25,15,.65); border: 1px solid rgba(255,255,255,.2);
      color: rgba(244,233,216,.8); font-size: .85rem;
      width: 34px; height: 34px; border-radius: 8px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s; backdrop-filter: blur(4px);
    }
    .ss-playpause:hover { background: rgba(82,183,136,.4); }

    /* Touch swipe hint */
    @media (max-width: 600px) {
      .ss-stage { height: clamp(240px, 72vw, 420px); }
      .ss-thumb  { width: 68px; height: 50px; }
      .ss-arrow  { width: 38px; height: 38px; font-size: 1.1rem; }
    }
/* ── SURFING PARADISE ── */
    #surf-paradise {
      background: var(--green-dark);
      padding: 6rem 8vw;
      color: var(--sand);
    }
    #surf-paradise .section-label { color: var(--green-light); }
    #surf-paradise .section-title { color: var(--warm); }
    #surf-paradise .section-body { color: rgba(244,233,216,0.78); margin: 1rem 0 3rem; }
    .spots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin-bottom: 3rem;
    }
    .spot-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 1.4rem 1.2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .spot-card:hover { background: rgba(82,183,136,0.18); transform: translateY(-4px); }
    .spot-card .spot-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .spot-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--warm); margin-bottom: 0.4rem; }
    .spot-card p { font-size: 0.85rem; color: rgba(244,233,216,0.7); line-height: 1.65; }
    .spot-card .dist { font-size: 0.75rem; color: var(--green-light); margin-top: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
    .surf-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
    .surf-wingfoil-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(82,183,136,0.2); border: 1px solid var(--green-light);
      color: var(--green-light); border-radius: 30px;
      padding: 0.45rem 1.1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    }

    
/* ── CLOSER THAN YOU THINK ── */
    #proximity {
      background: var(--ocean);
      padding: 6rem 8vw;
      color: #fff;
    }
    #proximity .section-label { color: rgba(255,255,255,0.7); }
    #proximity .section-title { color: #fff; font-size: clamp(1.9rem,3.8vw,3rem); }
    #proximity .section-body { color: rgba(255,255,255,0.82); margin: 1rem 0 3rem; }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .city-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 14px;
      padding: 1.4rem 1.2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .city-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
    .city-card .city-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: 0.3rem; }
    .city-card .city-time { font-size: 1.6rem; font-weight: 700; color: var(--ocean-light); line-height: 1; margin-bottom: 0.3rem; }
    .city-card .city-route { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
    .city-card .city-badge { font-size: 0.7rem; background: rgba(255,255,255,0.15); color: #fff; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 0.6rem; letter-spacing: 0.5px; }
    .proximity-callout {
      background: rgba(255,255,255,0.12);
      border-left: 4px solid var(--ocean-light);
      border-radius: 0 14px 14px 0;
      padding: 1.4rem 1.8rem;
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
      color: rgba(255,255,255,0.92);
      line-height: 1.75;
    }
    .proximity-callout strong { color: #fff; }

    
/* ── EVENTS & SPECIAL OCCASIONS ── */
    #events {
      background: var(--sand);
      padding: 6rem 8vw;
    }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .event-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem 1.6rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .event-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
    .event-icon { font-size: 2.4rem; margin-bottom: 1rem; }
    .event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.6rem; }
    .event-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
    .event-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; background: var(--green-dark); color: var(--sand); padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; }

    
/* ── FOOD & LIFESTYLE ── */
    #food-lifestyle {
      background: var(--white);
      padding: 6rem 8vw;
    }
    .food-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }
    .food-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 0.8rem; }
    .food-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
    .food-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
    .food-tag { font-size: 0.78rem; background: #eaf3de; color: #1a3d2b; padding: 5px 14px; border-radius: 20px; font-weight: 700; }
    .food-vibes {
      background: linear-gradient(145deg, var(--green-dark), #2d6a4f);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      color: var(--sand);
      text-align: center;
    }
    .food-vibes .vibe-icon { font-size: 3rem; margin-bottom: 1rem; }
    .food-vibes h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--warm); margin-bottom: 0.8rem; }
    .food-vibes p { font-size: 0.92rem; color: rgba(244,233,216,0.8); line-height: 1.75; }

    
/* ── ROMANTIC RETREAT ── */
    #romantic {
      background: #1a0e0a;
      padding: 6rem 8vw;
      text-align: center;
    }
    #romantic .section-label { color: #c9967a; }
    #romantic .section-title { color: var(--warm); }
    #romantic .section-body { color: rgba(244,233,216,0.75); margin: 1rem auto 3rem; }
    .romantic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem;
      max-width: 1000px;
      margin: 0 auto 3rem;
    }
    .romantic-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 1.8rem 1.4rem;
      transition: background 0.3s;
    }
    .romantic-card:hover { background: rgba(201,150,122,0.12); }
    .romantic-card .r-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
    .romantic-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--warm); margin-bottom: 0.5rem; }
    .romantic-card p { font-size: 0.85rem; color: rgba(244,233,216,0.65); line-height: 1.65; }

    @media (max-width: 900px) {
      #surf-paradise, #proximity, #events, #food-lifestyle, #romantic { padding: 4rem 6vw; }
      .food-grid { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ══ SITE SEARCH ══ */
    #site-search { background:var(--green-dark); padding:3rem 8vw; }
    .search-bar-wrap {
      display:flex; gap:0; max-width:680px; margin:0 auto;
      border-radius:40px; overflow:hidden;
      box-shadow:0 8px 32px rgba(0,0,0,0.25);
    }
    #search-input {
      flex:1; padding:1.1rem 1.6rem;
      font-family:'Lato',sans-serif; font-size:1rem; color:var(--text-dark);
      border:none; outline:none; background:var(--white);
    }
    #search-btn {
      padding:1.1rem 2rem; background:var(--green-light); color:var(--white);
      border:none; font-weight:700; font-size:0.95rem; cursor:pointer;
      letter-spacing:1px; text-transform:uppercase; transition:background .2s;
    }
    #search-btn:hover { background:var(--warm); color:var(--green-dark); }
    #search-results {
      max-width:680px; margin:1rem auto 0;
      display:none; background:var(--white); border-radius:16px;
      box-shadow:0 12px 40px rgba(0,0,0,0.2); overflow:hidden;
    }
    .sr-item {
      padding:1rem 1.4rem; border-bottom:1px solid #f0ece4; cursor:pointer;
      transition:background .2s;
    }
    .sr-item:last-child { border-bottom:none; }
    .sr-item:hover { background:#f7f2e8; }
    .sr-item h4 { font-family:'Playfair Display',serif; font-size:1rem; color:var(--green-dark); margin-bottom:3px; }
    .sr-item p  { font-size:0.82rem; color:var(--text-muted); }
    .sr-item .sr-tag { font-size:0.68rem; background:#eaf3de; color:#1a3d2b; padding:2px 8px; border-radius:10px; display:inline-block; margin-bottom:4px; }

    /* ══ BLOG ══ */
    #blog { padding:6rem 8vw; background:var(--white); }
    .blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; margin-top:3rem; }
    .blog-card {
      border-radius:16px; overflow:hidden; border:1px solid #ede8de;
      transition:transform .3s,box-shadow .3s;
    }
    .blog-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.1); }
    .blog-img { aspect-ratio:16/10; overflow:hidden; background:#c8d5c4; }
    .blog-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
    .blog-card:hover .blog-img img { transform:scale(1.05); }
    .blog-img-ph { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:2.5rem;background:linear-gradient(135deg,#c5d8c1,#9dbf97); }
    .blog-body { padding:1.4rem 1.4rem 1.6rem; }
    .blog-cat { font-size:0.7rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-mid);font-weight:700;margin-bottom:0.5rem; }
    .blog-body h3 { font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--green-dark);margin-bottom:0.5rem;line-height:1.4; }
    .blog-body p { font-size:0.88rem;color:var(--text-muted);line-height:1.65;margin-bottom:0.8rem; }
    .blog-meta { display:flex;justify-content:space-between;align-items:center;font-size:0.75rem;color:var(--text-muted); }
    .blog-read { color:var(--green-mid);font-weight:700;text-decoration:none; }
    .blog-featured { grid-column:1/3; display:grid; grid-template-columns:1fr 1fr; }
    .blog-featured .blog-img { aspect-ratio:auto; min-height:280px; }
    .blog-cta-row { text-align:center;margin-top:2.5rem; }

    /* ══ SHOPIFY / SHOP ══ */
    #shop { padding:6rem 8vw; background:var(--sand); }
    .shop-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:3rem; }
    .shop-card {
      background:var(--white); border-radius:14px; overflow:hidden;
      border:1px solid #ede8de; transition:transform .3s,box-shadow .3s;
    }
    .shop-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,0.1); }
    .shop-img { aspect-ratio:1; overflow:hidden; background:linear-gradient(135deg,#c5d8c1,#9dbf97); display:flex;align-items:center;justify-content:center;font-size:3rem; }
    .shop-img img { width:100%;height:100%;object-fit:cover; }
    .shop-body { padding:1rem 1rem 1.2rem; }
    .shop-body h4 { font-family:'Playfair Display',serif;font-size:0.95rem;color:var(--green-dark);margin-bottom:4px; }
    .shop-body p { font-size:0.8rem;color:var(--text-muted);margin-bottom:0.8rem; }
    .shop-price { display:flex;justify-content:space-between;align-items:center; }
    .shop-price .price { font-weight:700;color:var(--green-dark);font-size:0.95rem; }
    .shop-btn { font-size:0.72rem;background:var(--green-dark);color:var(--sand);padding:5px 14px;border-radius:20px;text-decoration:none;font-weight:700;letter-spacing:0.5px; }
    .shop-btn:hover { background:var(--green-light); }
    .shopify-note { text-align:center;margin-top:1.5rem;font-size:0.85rem;color:var(--text-muted); }
    .shopify-note a { color:var(--green-mid);font-weight:700; }

    /* ══ NEWS ══ */
    #news { padding:6rem 8vw; background:var(--green-dark); color:var(--sand); }
    #news .section-title { color:var(--warm); }
    #news .section-label { color:var(--green-light); }
    .news-grid { display:grid;grid-template-columns:1.4fr 1fr;gap:1.5rem;margin-top:3rem; }
    .news-main {
      background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
      border-radius:16px; overflow:hidden;
    }
    .news-main-img { aspect-ratio:16/9; background:rgba(82,183,136,0.2); display:flex;align-items:center;justify-content:center;font-size:3rem; }
    .news-main-img img { width:100%;height:100%;object-fit:cover; }
    .news-main-body { padding:1.6rem; }
    .news-main-body .news-cat { font-size:0.7rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-light);margin-bottom:0.5rem; }
    .news-main-body h3 { font-family:'Playfair Display',serif;font-size:1.35rem;color:var(--warm);margin-bottom:0.6rem;line-height:1.4; }
    .news-main-body p { font-size:0.9rem;color:rgba(244,233,216,0.78);line-height:1.7; }
    .news-sidebar { display:flex;flex-direction:column;gap:1rem; }
    .news-item {
      background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
      border-radius:12px; padding:1.1rem 1.2rem;
      transition:background .2s;
    }
    .news-item:hover { background:rgba(255,255,255,0.1); }
    .news-item .news-cat { font-size:0.65rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-light);margin-bottom:0.4rem; }
    .news-item h4 { font-family:'Playfair Display',serif;font-size:0.95rem;color:var(--warm);margin-bottom:0.3rem; }
    .news-item p { font-size:0.8rem;color:rgba(244,233,216,0.65);line-height:1.6; }
    .news-date { font-size:0.72rem;color:rgba(244,233,216,0.45);margin-top:0.5rem; }

    /* ══ GUIDE ══ */
    #guide { padding:6rem 8vw; background:var(--white); }
    .guide-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem; }
    .guide-card {
      border:1px solid #ede8de; border-radius:16px; padding:1.8rem 1.6rem;
      display:flex;gap:1.2rem;align-items:flex-start;
      transition:border-color .3s,transform .3s;
    }
    .guide-card:hover { border-color:var(--green-light);transform:translateY(-3px); }
    .guide-icon { font-size:2rem;flex-shrink:0; }
    .guide-card h3 { font-family:'Playfair Display',serif;font-size:1.05rem;color:var(--green-dark);margin-bottom:0.4rem; }
    .guide-card p { font-size:0.87rem;color:var(--text-muted);line-height:1.65; }
    .guide-card a { font-size:0.78rem;color:var(--green-mid);font-weight:700;text-decoration:none;margin-top:0.5rem;display:inline-block; }

    /* ══ TIPS ══ */
    #tips { padding:6rem 8vw; background:#f4e9d8; }
    .tips-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:3rem; }
    .tip-card {
      background:var(--white); border-radius:14px; padding:1.6rem 1.4rem;
      box-shadow:0 2px 12px rgba(0,0,0,0.06);
      transition:transform .3s;
    }
    .tip-card:hover { transform:translateY(-4px); }
    .tip-num { font-family:'Playfair Display',serif;font-size:2.5rem;color:var(--green-light);opacity:.4;line-height:1;margin-bottom:0.5rem; }
    .tip-card h4 { font-family:'Playfair Display',serif;font-size:1rem;color:var(--green-dark);margin-bottom:0.5rem; }
    .tip-card p { font-size:0.87rem;color:var(--text-muted);line-height:1.65; }

    @media(max-width:900px){
      .blog-grid { grid-template-columns:1fr; }
      .blog-featured { grid-column:auto;grid-template-columns:1fr; }
      .shop-grid { grid-template-columns:1fr 1fr; }
      .news-grid { grid-template-columns:1fr; }
      .guide-grid { grid-template-columns:1fr; }
      .tips-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:580px){
      .shop-grid { grid-template-columns:1fr; }
      .tips-grid { grid-template-columns:1fr; }
    }

    /* ══ TRANSPORTATION ══ */
    #transport { padding:6rem 8vw; background:var(--green-dark); color:var(--sand); }
    #transport .section-label { color:var(--green-light); }
    #transport .section-title { color:var(--warm); }
    #transport .section-body  { color:rgba(244,233,216,.78); margin:1rem 0 3rem; max-width:60ch; }

    .transport-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.4rem;
      margin-bottom:3rem;
    }
    .transport-card {
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:2rem 1.6rem 1.8rem;
      display:flex; flex-direction:column; gap:.5rem;
      transition:background .3s, transform .3s, border-color .3s;
      position:relative; overflow:hidden;
    }
    .transport-card::before {
      content:'';
      position:absolute; top:0; left:0; right:0; height:3px;
      background:var(--green-light);
    }
    .transport-card.vip::before { background:var(--warm); }
    .transport-card:hover {
      background:rgba(255,255,255,.12);
      border-color:rgba(82,183,136,.45);
      transform:translateY(-5px);
    }
    .transport-card.vip:hover { border-color:rgba(232,201,154,.5); }

    .tc-icon { font-size:2.4rem; margin-bottom:.4rem; }
    .tc-route {
      font-family:'Playfair Display',serif;
      font-size:1.2rem; color:var(--warm); line-height:1.3;
    }
    .tc-arrow { color:var(--green-light); font-size:.9rem; margin:0 4px; }
    .tc-time {
      display:flex; align-items:center; gap:.5rem;
      font-size:.82rem; color:rgba(244,233,216,.65); margin-top:.2rem;
    }
    .tc-time span { color:var(--green-light); font-weight:700; }
    .tc-price {
      margin-top:.8rem; padding-top:.9rem;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex; align-items:baseline; gap:.4rem;
    }
    .tc-price .amount {
      font-family:'Playfair Display',serif;
      font-size:2rem; color:var(--warm); line-height:1;
    }
    .tc-price .per { font-size:.78rem; color:rgba(244,233,216,.55); }
    .tc-tag {
      display:inline-flex; align-items:center; gap:5px;
      font-size:.68rem; letter-spacing:1.5px; text-transform:uppercase;
      background:rgba(82,183,136,.2); color:var(--green-light);
      border:1px solid rgba(82,183,136,.3);
      padding:3px 10px; border-radius:20px; margin-top:.6rem; width:fit-content;
    }
    .transport-card.vip .tc-tag {
      background:rgba(232,201,154,.15); color:var(--warm);
      border-color:rgba(232,201,154,.3);
    }
    .tc-includes {
      margin-top:.8rem; display:flex; flex-direction:column; gap:4px;
      font-size:.82rem; color:rgba(244,233,216,.68);
    }
    .tc-includes li { list-style:none; display:flex; gap:6px; align-items:flex-start; }
    .tc-includes li::before { content:'✓'; color:var(--green-light); flex-shrink:0; }

    /* Local transport options */
    .local-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1rem;
    }
    .local-card {
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.1);
      border-radius:14px; padding:1.4rem 1.2rem;
      text-align:center;
      transition:background .25s, transform .25s;
    }
    .local-card:hover { background:rgba(255,255,255,.1); transform:translateY(-3px); }
    .local-card .lc-icon { font-size:2rem; margin-bottom:.6rem; }
    .local-card h4 {
      font-family:'Playfair Display',serif;
      font-size:.95rem; color:var(--warm); margin-bottom:.4rem;
    }
    .local-card p { font-size:.8rem; color:rgba(244,233,216,.62); line-height:1.6; }
    .local-card .lc-price {
      margin-top:.7rem; font-size:.82rem; color:var(--green-light); font-weight:700;
    }

    .transport-cta {
      text-align:center; margin-top:3rem;
      padding-top:2.5rem; border-top:1px solid rgba(255,255,255,.1);
    }
    .transport-cta p { color:rgba(244,233,216,.7); margin-bottom:1.2rem; font-size:.95rem; }
    .transport-cta .cta-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

    /* VIP badge pulse */
    .vip-badge {
      position:absolute; top:16px; right:16px;
      background:var(--warm); color:var(--green-dark);
      font-size:.65rem; font-weight:700; letter-spacing:1.5px;
      text-transform:uppercase; padding:4px 10px; border-radius:20px;
    }

    @media(max-width:900px){
      .transport-grid { grid-template-columns:1fr; }
      .local-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:500px){
      .local-grid { grid-template-columns:1fr; }
    }

    /* ══ DR CIRCUIT ══ */
    #dr-circuit { padding:6rem 8vw; background:var(--white); }
    #dr-circuit .section-label { color:var(--green-mid); }
    #dr-circuit .section-title { color:var(--green-dark); }
    #dr-circuit .section-body  { color:var(--text-muted); margin:1rem 0 3rem; max-width:60ch; }

    /* route line visual */
    .circuit-map-line {
      display:flex; align-items:center; gap:0;
      overflow-x:auto; padding:.5rem 0 2rem;
      scrollbar-width:none;
      margin-bottom:3rem;
      position:relative;
    }
    .circuit-map-line::-webkit-scrollbar { display:none; }
    .cm-stop {
      display:flex; flex-direction:column; align-items:center;
      flex-shrink:0; position:relative;
    }
    .cm-dot {
      width:44px; height:44px; border-radius:50%;
      background:var(--green-dark); color:var(--sand);
      display:flex; align-items:center; justify-content:center;
      font-size:1.1rem; font-weight:700; z-index:2;
      border:3px solid var(--green-light);
      box-shadow:0 4px 12px rgba(26,61,43,.25);
      flex-shrink:0;
    }
    .cm-dot.start { background:var(--green-light); color:var(--green-dark); }
    .cm-label {
      font-size:.68rem; letter-spacing:1px; text-transform:uppercase;
      color:var(--green-dark); margin-top:.5rem; white-space:nowrap;
      font-weight:700; text-align:center;
    }
    .cm-sub { font-size:.6rem; color:var(--text-muted); margin-top:2px; white-space:nowrap; text-align:center; }
    .cm-line {
      flex:1; height:3px; min-width:40px; max-width:120px;
      background:linear-gradient(90deg,var(--green-light),var(--green-mid));
      position:relative; margin-bottom:26px;
    }
    .cm-line::after {
      content:'►'; position:absolute; right:-8px; top:-9px;
      color:var(--green-mid); font-size:.8rem;
    }
    .cm-dist {
      position:absolute; top:-18px; left:50%; transform:translateX(-50%);
      font-size:.6rem; color:var(--text-muted); white-space:nowrap; background:var(--white); padding:0 3px;
    }

    /* property cards */
    .circuit-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.4rem;
    }
    .circuit-card {
      border-radius:18px; overflow:hidden;
      border:1.5px solid #e8e2d8;
      display:flex; flex-direction:column;
      transition:transform .3s, box-shadow .3s, border-color .3s;
      text-decoration:none; color:inherit;
    }
    .circuit-card:hover {
      transform:translateY(-6px);
      box-shadow:0 20px 56px rgba(0,0,0,.12);
      border-color:var(--green-light);
    }
    .cc-img {
      aspect-ratio:16/10; overflow:hidden; position:relative;
      background:linear-gradient(135deg,#c5d8c1,#9dbf97);
      display:flex; align-items:center; justify-content:center;
    }
    .cc-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
    .circuit-card:hover .cc-img img { transform:scale(1.06); }
    .cc-img-ph { font-size:3rem; }
    .cc-badge {
      position:absolute; top:12px; left:12px;
      background:var(--green-dark); color:var(--sand);
      font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase;
      padding:4px 10px; border-radius:20px;
    }
    .cc-stop-badge {
      position:absolute; top:12px; right:12px;
      background:var(--green-light); color:var(--green-dark);
      font-size:.65rem; font-weight:700; letter-spacing:1px;
      padding:4px 10px; border-radius:20px;
    }
    .cc-body { padding:1.4rem 1.4rem 1.6rem; flex:1; display:flex; flex-direction:column; gap:.4rem; }
    .cc-body h3 {
      font-family:'Playfair Display',serif;
      font-size:1.05rem; color:var(--green-dark); line-height:1.35;
    }
    .cc-location {
      font-size:.76rem; color:var(--text-muted); letter-spacing:.5px;
      display:flex; align-items:center; gap:4px;
    }
    .cc-desc { font-size:.85rem; color:var(--text-muted); line-height:1.65; flex:1; margin-top:.2rem; }
    .cc-footer {
      display:flex; align-items:center; justify-content:space-between;
      margin-top:.8rem; padding-top:.8rem;
      border-top:1px solid #ede8de;
    }
    .cc-from { font-size:.75rem; color:var(--text-muted); }
    .cc-from strong { color:var(--green-dark); font-size:.9rem; }
    .cc-link {
      font-size:.72rem; font-weight:700; letter-spacing:1px;
      text-transform:uppercase; color:var(--green-mid);
      text-decoration:none; display:flex; align-items:center; gap:4px;
    }
    .cc-link:hover { color:var(--green-dark); }

    /* circuit CTA banner */
    .circuit-banner {
      margin-top:3rem; border-radius:18px; overflow:hidden;
      background:linear-gradient(135deg,var(--green-dark) 0%,#2d6a4f 100%);
      padding:2.5rem 3rem; display:flex;
      align-items:center; justify-content:space-between; gap:2rem;
      flex-wrap:wrap;
    }
    .circuit-banner h3 {
      font-family:'Playfair Display',serif; font-size:1.5rem;
      color:var(--warm); margin-bottom:.5rem;
    }
    .circuit-banner p { font-size:.9rem; color:rgba(244,233,216,.78); max-width:48ch; }
    .circuit-banner .banner-btns { display:flex; gap:.8rem; flex-wrap:wrap; flex-shrink:0; }

    @media(max-width:960px){
      .circuit-grid { grid-template-columns:1fr 1fr; }
      .circuit-banner { padding:2rem; }
    }
    @media(max-width:600px){
      .circuit-grid { grid-template-columns:1fr; }
      .circuit-banner { flex-direction:column; }
    }

    /* ══ LANGUAGE SWITCHER ══ */
    .lang-switcher {
      position:relative; margin-left:.5rem;
    }
    .lang-btn {
      display:flex; align-items:center; gap:6px;
      background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
      color:var(--sand); border-radius:30px; padding:6px 14px 6px 10px;
      font-family:'Lato',sans-serif; font-size:.8rem; cursor:pointer;
      letter-spacing:.5px; transition:background .2s;
    }
    .lang-btn:hover { background:rgba(255,255,255,.18); }
    .lang-flag { font-size:1rem; }
    .lang-code { font-weight:700; font-size:.75rem; }
    .lang-arrow { font-size:.6rem; opacity:.7; transition:transform .2s; }
    .lang-btn.open .lang-arrow { transform:rotate(180deg); }
    .lang-dropdown {
      display:none; position:absolute; top:calc(100% + 8px); right:0;
      background:#1a3d2b; border:1px solid rgba(255,255,255,.15);
      border-radius:14px; overflow:hidden; min-width:160px;
      box-shadow:0 16px 48px rgba(0,0,0,.35); z-index:200;
    }
    .lang-dropdown.open { display:block; }
    .lang-option {
      display:flex; align-items:center; gap:10px;
      padding:.7rem 1rem; cursor:pointer; font-size:.85rem;
      color:rgba(244,233,216,.8); transition:background .15s;
      border:none; background:none; width:100%; text-align:left;
      font-family:'Lato',sans-serif;
    }
    .lang-option:hover { background:rgba(255,255,255,.1); color:var(--warm); }
    .lang-option.active { background:rgba(82,183,136,.2); color:var(--green-light); }
    .lang-option .lo-flag { font-size:1.1rem; }
    .lang-option .lo-name { font-weight:600; }
    .lang-option .lo-native { font-size:.75rem; opacity:.65; }

    /* ── Room Book button — same as Book Now ── */
    .btn-book {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green-dark); color: var(--sand);
      border: none; cursor: pointer;
      font-family: 'Lato', sans-serif; font-size: 0.82rem;
      font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.75rem 1.4rem; border-radius: 30px;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none; white-space: nowrap;
    }
    .btn-book:hover { background: var(--warm); color: var(--green-dark); transform: translateY(-2px); }

    .bk-promo{background:rgba(82,183,136,.18);border:1px solid rgba(82,183,136,.4);border-radius:10px;padding:8px 14px;margin-bottom:10px;font-size:.82rem;color:#52b788;text-align:center;font-weight:700;}

    /* ══ PAYMENT METHODS — compact ══ */
    #payment-methods {
      padding: 3rem 8vw;
      background: var(--green-dark);
      color: var(--sand);
    }
    .pay-grid-compact {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: .9rem;
      margin-bottom: 1.8rem;
    }
    .pay-pill {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 12px;
      padding: 1rem 1rem .9rem;
      display: flex; flex-direction: column; gap: .35rem;
      transition: background .25s, transform .25s;
      position: relative; overflow: hidden;
    }
    .pay-pill::before {
      content:''; position:absolute; top:0; left:0; right:0; height:2.5px;
    }
    .pay-pill.zelle::before   { background:#6D1ED4; }
    .pay-pill.revolut::before { background:#0075EB; }
    .pay-pill.paypal::before  { background:#FFC439; }
    .pay-pill.bank::before    { background:#E40000; }
    .pay-pill.stripe::before  { background:#635bff; }
    .pay-pill:hover { background:rgba(255,255,255,.12); transform:translateY(-3px); }
    .pp-head { display:flex; align-items:center; gap:.5rem; }
    .pp-icon { font-size:1.2rem; }
    .pp-name { font-size:.88rem; font-weight:700; color:var(--warm); }
    .pp-tag  { font-size:.65rem; color:rgba(244,233,216,.5); letter-spacing:.5px; }
    .pp-val  { font-size:.78rem; color:rgba(244,233,216,.8); font-family:monospace; margin-top:.15rem; }
    .pp-copy {
      display:inline-flex; align-items:center; gap:4px;
      background:rgba(255,255,255,.09); border:none;
      color:rgba(244,233,216,.7); border-radius:20px;
      padding:3px 10px; font-size:.68rem; cursor:pointer;
      transition:background .2s; font-family:inherit; margin-top:.2rem; width:fit-content;
    }
    .pp-copy:hover { background:rgba(82,183,136,.3); color:#fff; }
    .pp-copy.copied { background:rgba(82,183,136,.5); color:#fff; }
    .pp-btn {
      display:inline-flex; align-items:center; gap:4px;
      border:none; border-radius:20px; padding:4px 12px;
      font-size:.68rem; font-weight:700; cursor:pointer;
      font-family:inherit; margin-top:.2rem; text-decoration:none; width:fit-content;
    }
    .pp-btn.revolut-btn { background:#0075EB; color:#fff; }
    .pp-btn.paypal-btn  { background:#FFC439; color:#003087; }
    .pp-btn.stripe-btn  { background:#635bff; color:#fff; }

    /* Compact payment strip (used in modals) */
    .pay-strip {
      display:flex; flex-wrap:wrap; gap:6px;
      padding:10px 0 4px; border-top:1px solid rgba(255,255,255,.1);
      margin-top:10px;
    }
    .pay-strip-label { width:100%; font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; color:rgba(244,233,216,.45); margin-bottom:2px; }
    .ps-btn {
      display:inline-flex; align-items:center; gap:4px;
      border:none; border-radius:20px; padding:6px 12px;
      font-size:.72rem; font-weight:700; cursor:pointer;
      font-family:inherit; text-decoration:none; transition:opacity .2s;
      white-space:nowrap;
    }
    .ps-btn:hover { opacity:.88; }
    .ps-btn.zelle   { background:#6D1ED4; color:#fff; }
    .ps-btn.revolut { background:#0075EB; color:#fff; }
    .ps-btn.paypal  { background:#FFC439; color:#003087; }
    .ps-btn.bank    { background:#E40000; color:#fff; }
    .ps-btn.stripe  { background:#635bff; color:#fff; }

    @media (max-width: 580px) {
      #payment-methods .qr-grid { grid-template-columns: 1fr !important; }
    }

    /* ══ KITE / WING SECTION ══ */
    #kite-wing {
      background: var(--ocean, #0e3d5c);
      color: var(--sand);
      padding: 5rem 8vw;
    }
    #kite-wing .section-label { color: rgba(255,255,255,.65); }
    #kite-wing .section-title { color: #fff; }
    #kite-wing .section-body  { color: rgba(255,255,255,.75); margin: .8rem 0 2.5rem; max-width: 60ch; }

    /* discipline cards */
    .disc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .disc-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 16px;
      padding: 1.5rem 1.3rem;
      position: relative; overflow: hidden;
      transition: background .3s, transform .3s;
    }
    .disc-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #4db8ff, #00e5ff);
    }
    .disc-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
    .disc-icon { font-size: 2.2rem; margin-bottom: .7rem; }
    .disc-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; color: #fff; font-weight: 600; margin-bottom: .4rem;
    }
    .disc-desc { font-size: .83rem; color: rgba(255,255,255,.68); line-height: 1.65; }
    .disc-tag {
      display: inline-block; margin-top: .7rem;
      font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
      background: rgba(77,184,255,.2); color: #4db8ff;
      border: 1px solid rgba(77,184,255,.35);
      padding: 3px 10px; border-radius: 20px;
    }

    /* upwind route */
    .upwind-route {
      background: rgba(0,0,0,.25);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 18px;
      padding: 2rem;
      margin-bottom: 2.5rem;
    }
    .upwind-route h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: #4db8ff; margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .route-stops {
      display: flex; align-items: flex-start;
      gap: 0; overflow-x: auto;
      scrollbar-width: none; padding-bottom: .5rem;
    }
    .route-stops::-webkit-scrollbar { display: none; }
    .rs-stop { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .rs-dot {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(77,184,255,.2);
      border: 2px solid #4db8ff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; z-index: 1;
    }
    .rs-dot.home { background: #4db8ff; color: #003d5c; }
    .rs-label { font-size: .72rem; font-weight: 700; color: #fff; margin-top: .4rem; white-space: nowrap; text-align: center; }
    .rs-sub   { font-size: .62rem; color: rgba(255,255,255,.5); margin-top: 2px; white-space: nowrap; text-align: center; }
    .rs-line {
      flex: 1; min-width: 40px; max-width: 100px;
      height: 2px;
      background: linear-gradient(90deg, #4db8ff, rgba(77,184,255,.4));
      position: relative; margin-top: 18px;
    }
    .rs-line::after {
      content: '►'; position: absolute;
      right: -8px; top: -8px;
      color: #4db8ff; font-size: .75rem;
    }
    .rs-dist {
      position: absolute; top: -16px; left: 50%;
      transform: translateX(-50%);
      font-size: .58rem; color: rgba(255,255,255,.45);
      white-space: nowrap; background: transparent;
    }

    /* wind stats strip */
    .wind-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
      gap: .75rem; margin-top: 1.5rem;
    }
    .wind-stat {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px; padding: .9rem 1rem;
      text-align: center;
    }
    .wind-stat .wv { font-family: monospace; font-size: 1.2rem; color: #4db8ff; }
    .wind-stat .wl { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .5px; text-transform: uppercase; margin-top: 3px; }

    @media (max-width: 700px) {
      .disc-grid { grid-template-columns: 1fr 1fr; }
      .route-stops { gap: 0; }
    }

    /* ══ INLINE SECTION MEDIA STRIP ══ */
    .section-media-strip {
      display: grid;
      gap: 6px;
      margin: 2rem 0;
      border-radius: 16px;
      overflow: hidden;
    }
    .section-media-strip.cols-3 { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px; }
    .section-media-strip.cols-4 { grid-template-columns: 1.6fr 1fr 1fr 1fr; grid-template-rows: 240px; }
    .section-media-strip.cols-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 280px; }
    .sms-cell {
      overflow: hidden; position: relative; cursor: pointer;
      background: linear-gradient(135deg,#1a3d2b,#0e3d5c);
    }
    .sms-cell img, .sms-cell video {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s ease;
    }
    .sms-cell:hover img, .sms-cell:hover video { transform: scale(1.07); }
    .sms-cell video { pointer-events: none; }
    .sms-cap {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.72));
      color: rgba(255,255,255,.9); font-size: .72rem;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 22px 12px 10px;
      pointer-events: none;
    }
    .sms-cell .vid-play {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center; z-index: 2;
    }
    .sms-cell .vid-play span {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,.8);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; transition: transform .2s;
    }
    .sms-cell:hover .vid-play span { transform: scale(1.12); }
    .sms-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: rgba(255,255,255,.4);
    }
    .sms-ph .ph-i { font-size: 2rem; opacity: .5; }
    .sms-ph .ph-t { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; }
    .sms-see-all {
      text-align: center; margin-top: .8rem;
    }
    .sms-see-all a {
      font-size: .75rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25);
      padding-bottom: 2px; transition: color .2s, border-color .2s;
    }
    .sms-see-all a:hover { color: #fff; border-color: #fff; }
    @media (max-width: 760px) {
      .section-media-strip.cols-3,
      .section-media-strip.cols-4 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .section-media-strip.cols-2 { grid-template-columns: 1fr; }
      .sms-cell { min-height: 180px; }
    }

    /* ══ PET FRIENDLY ══ */
    #pet-friendly {
      background: var(--sand);
      padding: 4rem 8vw;
    }
    .pet-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
      margin-top: 2rem;
    }
    .pet-info { display: flex; flex-direction: column; gap: 1rem; }
    .pet-rules {
      display: flex; flex-direction: column; gap: .6rem;
      background: #fff;
      border-radius: 14px;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
    }
    .pet-rule {
      display: flex; align-items: flex-start; gap: .7rem;
      font-size: .9rem; color: var(--text-muted); line-height: 1.55;
    }
    .pet-rule .pr-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

    /* Pet counter card */
    .pet-counter-card {
      background: var(--green-dark);
      border-radius: 18px;
      padding: 2rem;
      color: var(--sand);
      display: flex; flex-direction: column; gap: 1.2rem;
    }
    .pet-counter-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: var(--warm); margin-bottom: .2rem;
    }
    .pet-counter-card p { font-size: .85rem; color: rgba(244,233,216,.72); }
    .pet-adj {
      display: flex; align-items: center; gap: 1rem;
    }
    .pet-adj button {
      width: 38px; height: 38px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.1); color: var(--sand);
      font-size: 1.3rem; cursor: pointer; flex-shrink: 0;
      transition: background .2s, border-color .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .pet-adj button:hover { background: rgba(82,183,136,.4); border-color: var(--green-light); }
    .pet-adj .pet-count {
      font-family: monospace; font-size: 2rem;
      color: var(--warm); min-width: 40px; text-align: center;
    }
    .pet-adj .pet-label { font-size: .8rem; color: rgba(244,233,216,.6); }
    .pet-total {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 10px;
      padding: .8rem 1.1rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .85rem; color: rgba(244,233,216,.75);
    }
    .pet-total .pt-amount {
      font-family: monospace; font-size: 1.1rem;
      color: var(--warm); font-weight: 700;
    }
    .pet-wa-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: #25d366; color: #fff; border: none; border-radius: 30px;
      padding: 11px; font-weight: 700; font-size: .82rem;
      letter-spacing: 1px; text-transform: uppercase;
      cursor: pointer; font-family: inherit; text-decoration: none;
      width: 100%; transition: background .2s;
    }
    .pet-wa-btn:hover { background: #1da851; }
    @media (max-width: 760px) {
      .pet-grid { grid-template-columns: 1fr; }
    }

    /* ── Logo sizing ── */
    .nav-logo img { transition: height .3s; }
    nav.scrolled .nav-logo img { height: 34px; }
    @media (max-width: 480px) { .nav-logo img { height: 36px; } }

    /* ── 3-line hotel name in nav ── */
    .nav-name {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      margin-left: .6rem;
    }
    .nav-name .nn-1 {
      font-family: 'Playfair Display', serif;
      font-size: .75rem;
      font-weight: 700;
      color: var(--warm);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .nav-name .nn-2 {
      font-family: 'Lato', sans-serif;
      font-size: .6rem;
      font-weight: 400;
      color: var(--green-light);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-name .nn-3 {
      font-family: 'Lato', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      color: rgba(244,230,210,.55);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    nav.scrolled .nav-name { display: none; }
    @media (max-width: 1100px) { .nav-name { display: none; } }

    /* ── WELLNESS (new) ── */
    #wellness { background: var(--sand); padding: 6rem 4vw; text-align: center; }
    #wellness .section-body { margin: 0 auto 3rem; }
    .wellness-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
    .wellness-card { background: var(--white); border-radius: 18px; padding: 2.4rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: left; }
    .wellness-icon { font-size: 2.6rem; margin-bottom: 1rem; }
    .wellness-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--green-dark); margin-bottom: 0.6rem; }
    .wellness-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.9rem; }
    .wellness-meta { font-size: 0.8rem; color: var(--green-mid); font-weight: 700; letter-spacing: 0.3px; }
/* ── Floating button ── */
#open-booking{position:fixed;bottom:2rem;right:2rem;z-index:999;background:#1a3d2b;color:#f4e9d8;border:none;padding:.85rem 1.8rem;border-radius:40px;font-size:.95rem;font-weight:700;cursor:pointer;box-shadow:0 6px 24px rgba(0,0,0,.3);transition:transform .2s,background .2s;font-family:'Lato',sans-serif}
#open-booking:hover{background:#2d6a4f;transform:translateY(-3px)}

/* ── Modal ── */
#bk-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:1000;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(4px)}
#bk-overlay.open{display:flex}
#bk-modal{background:#fff;border-radius:20px;width:100%;max-width:760px;max-height:90vh;overflow-y:auto;box-shadow:0 30px 80px rgba(0,0,0,.4);animation:slideUp .3s ease}
@keyframes slideUp{from{transform:translateY(30px);opacity:0}to{transform:translateY(0);opacity:1}}

/* ── Header ── */
#bk-header{background:linear-gradient(135deg,#1a3d2b,#2d6a4f);padding:1.4rem 1.8rem;border-radius:20px 20px 0 0;display:flex;align-items:center;justify-content:space-between}
#bk-logo{font-family:'Playfair Display',serif;font-size:1.3rem;color:#e8c99a}
#bk-sub{font-size:.75rem;color:rgba(244,233,216,.7);margin-top:.2rem;letter-spacing:1px}
#bk-x{background:rgba(255,255,255,.15);border:none;color:#fff;width:32px;height:32px;border-radius:50%;cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center}
#bk-x:hover{background:rgba(255,255,255,.3)}

/* ── Step dots ── */
#bk-steps{display:flex;align-items:center;justify-content:center;padding:1.2rem 2rem;gap:0;border-bottom:1px solid #eee}
.bk-step{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:#aaa;font-weight:600}
.bk-step span{width:24px;height:24px;border-radius:50%;background:#ddd;color:#999;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}
.bk-step.active{color:#1a3d2b}
.bk-step.active span{background:#52b788;color:#fff}
.bk-step.done span{background:#1a3d2b;color:#fff}
.bk-line{flex:1;height:2px;background:#eee;margin:0 .5rem;max-width:60px}

/* ── Pane / Fields ── */
.bk-pane{padding:1.8rem}
.bk-h{font-family:'Playfair Display',serif;font-size:1.5rem;color:#1a3d2b;margin-bottom:1.2rem}
.bk-hint{font-size:.82rem;color:#2d6a4f;margin-bottom:1rem;font-weight:600}
.bk-row2{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.bk-f{display:flex;flex-direction:column;gap:.3rem;margin-bottom:.8rem}
.bk-f label{font-size:.75rem;font-weight:700;color:#1a3d2b;letter-spacing:.5px;text-transform:uppercase}
.bk-f input,.bk-f textarea{border:1.5px solid #ddd;border-radius:10px;padding:.7rem .9rem;font-family:'Lato',sans-serif;font-size:.9rem;color:#1c1c1c;outline:none;transition:border-color .2s;width:100%}
.bk-f input:focus,.bk-f textarea:focus{border-color:#52b788}

/* ── Room grid ── */
#bk-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:1rem;margin:0 0 1.2rem}
.bk-card{border:2px solid #eee;border-radius:12px;overflow:hidden;background:#fff;transition:border-color .2s,transform .2s}
.bk-card:hover{border-color:#52b788;transform:translateY(-2px)}
.bk-card.has-rooms{border-color:#1a3d2b;box-shadow:0 0 0 3px rgba(26,61,43,.12)}
.bk-card.sold-out{opacity:.5}
.bk-card img{width:100%;height:130px;object-fit:cover;display:block}
.bk-cinfo{padding:.8rem}
.bk-ctag{font-size:.65rem;letter-spacing:1.5px;text-transform:uppercase;color:#52b788;font-weight:700}
.bk-cname{font-family:'Playfair Display',serif;font-size:1rem;color:#1a3d2b;margin:.2rem 0}
.bk-cmeta{font-size:.72rem;color:#777;line-height:1.5;margin-bottom:.4rem}
.bk-cavail{font-size:.72rem;font-weight:700;min-height:18px;margin-bottom:.3rem}
.bk-cavail.green{color:#27ae60}
.bk-cavail.orange{color:#e67e22}
.bk-cavail.red{color:#c0392b}

/* ── Controls: steppers ── */
.bk-controls{display:flex;gap:.8rem;padding-top:.7rem;border-top:1px solid #eee;margin-top:.4rem}
.bk-ctrl{display:flex;flex-direction:column;gap:.3rem;flex:1}
.bk-clabel{font-size:.65rem;font-weight:700;color:#1a3d2b;text-transform:uppercase;letter-spacing:.5px}
.bk-stepper{display:flex;align-items:center;border:1.5px solid #c8e6c9;border-radius:8px;overflow:hidden}
.bk-stepper button{background:#f8fdf9;border:none;width:32px;height:32px;font-size:1.1rem;cursor:pointer;color:#1a3d2b;font-weight:700;transition:background .15s;flex-shrink:0;line-height:1}
.bk-stepper button:hover:not(:disabled){background:#52b788;color:#fff}
.bk-stepper button:disabled{opacity:.3;cursor:not-allowed}
.bk-stepper span{flex:1;text-align:center;font-weight:700;font-size:.95rem;color:#1a3d2b;min-width:30px}
.bk-sub{font-size:.75rem;font-weight:700;color:#1a3d2b;background:#e8f5e9;border-radius:6px;padding:.3rem .6rem;margin-top:.5rem;display:none}

/* ── Order summary ── */
#bk-summary{background:#f8fdf9;border:1px solid #c8e6c9;border-radius:12px;padding:1rem 1.2rem;margin:0 0 1rem}
.bk-srow{display:flex;justify-content:space-between;font-size:.88rem;color:#555;padding:.25rem 0;border-bottom:1px solid rgba(0,0,0,.05)}
.bk-stotal{font-weight:700;color:#1a3d2b;font-size:1rem;border-bottom:none!important;padding-top:.5rem}

/* ── Stripe card ── */
#bk-card-el{border:1.5px solid #ddd;border-radius:10px;padding:.85rem 1rem}
#bk-card-el.StripeElement--focus{border-color:#52b788}

/* ── Buttons ── */
.bk-next{width:100%;background:#1a3d2b;color:#fff;border:none;padding:1rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.95rem;font-weight:700;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-next:hover{background:#2d6a4f}
.bk-back{background:#f5f5f5;color:#555;border:none;padding:.9rem 1.5rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.88rem;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-back:hover{background:#e5e5e5}
.bk-pay{flex:1;background:#52b788;color:#1a3d2b;border:none;padding:1rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.95rem;font-weight:700;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-pay:hover:not(:disabled){background:#3da672}
.bk-pay:disabled{background:#ccc;cursor:not-allowed}
.bk-err{color:#c0392b;font-size:.85rem;background:#fdf0f0;border:1px solid #f5c6cb;border-radius:8px;padding:.6rem .9rem;margin-top:.4rem}

@media(max-width:600px){
  #bk-modal{max-height:95vh;border-radius:16px}
  .bk-pane{padding:1.1rem}
  #bk-grid{grid-template-columns:1fr 1fr}
  .bk-card img{height:90px}
  .bk-row2{grid-template-columns:1fr}
  .bk-controls{gap:.5rem}
}


/* Gallery module (moved from homepage inline <style>, shared by /gallery.html and sub-pages) */

      .gal2-wrap{max-width:1100px;margin:0 auto;padding:80px 20px;}
      .gal2-head{text-align:center;margin-bottom:36px;}
      .gal2-head h2{font-family:'Playfair Display',serif;color:var(--green-dark);}
      .gal2-head p{color:var(--text-muted);max-width:620px;margin:12px auto 0;}
      .gal2-tab-radio{display:none;}
      .gal2-tabs{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-bottom:32px;}
      .gal2-tab-label{padding:10px 22px;border:2px solid var(--green-mid);border-radius:30px;font-family:'Lato',sans-serif;font-weight:600;letter-spacing:.03em;cursor:pointer;color:var(--green-dark);background:var(--white);transition:all .25s ease;font-size:14px;text-transform:uppercase;}
      .gal2-tab-label:hover{background:var(--green-light);color:var(--white);border-color:var(--green-light);}
      .gal2-panel{display:none;}
      .gal2-carousel{position:relative;display:flex;align-items:center;gap:8px;}
      .gal2-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:16px;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding:4px;flex:1;}
      .gal2-track::-webkit-scrollbar{height:8px;}
      .gal2-track::-webkit-scrollbar-thumb{background:var(--green-mid);border-radius:8px;}
      .gal2-slide{flex:0 0 100%;width:100%;scroll-snap-align:start;border-radius:10px;overflow:hidden;aspect-ratio:4/3;position:relative;box-shadow:0 4px 14px rgba(0,0,0,.14);}
      .gal2-slide img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .4s ease;}
      .gal2-slide:hover img{transform:scale(1.06);}
      .gal2-slide-video{flex:0 0 100%;width:100%;aspect-ratio:16/9;background:#000;display:flex;}
      .gal2-slide-video video{width:100%;height:100%;object-fit:contain;border-radius:10px;}
      .gal2-arrow{flex:0 0 auto;width:44px;height:44px;border-radius:50%;border:2px solid var(--green-mid);background:var(--white);color:var(--green-dark);font-size:22px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .2s ease;}
      .gal2-arrow:hover{background:var(--green-dark);color:var(--white);border-color:var(--green-dark);}
      @media(max-width:640px){.gal2-arrow{width:36px;height:36px;font-size:18px;}}
      #gal2-t1:checked ~ .gal2-panels #gal2-p1,
      #gal2-t2:checked ~ .gal2-panels #gal2-p2,
      #gal2-t3:checked ~ .gal2-panels #gal2-p3,
      #gal2-t4:checked ~ .gal2-panels #gal2-p4,
      #gal2-t5:checked ~ .gal2-panels #gal2-p5{display:block;}
      #gal2-t1:checked ~ .gal2-tabs label[for="gal2-t1"],
      #gal2-t2:checked ~ .gal2-tabs label[for="gal2-t2"],
      #gal2-t3:checked ~ .gal2-tabs label[for="gal2-t3"],
      #gal2-t4:checked ~ .gal2-tabs label[for="gal2-t4"],
      #gal2-t5:checked ~ .gal2-tabs label[for="gal2-t5"]{background:var(--green-dark);color:var(--white);border-color:var(--green-dark);}
      @media(max-width:600px){.gal2-tab-label{padding:8px 16px;font-size:12px;}}
    
.gal2-tabs.single-tab{display:none;}


/* ---- Merged from index.html inline <style> block #1 (moved out for LCP fix, 2026-07-18) ---- */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-dark:  #1a3d2b;
      --green-mid:   #2d6a4f;
      --green-light: #52b788;
      --sand:        #f4e9d8;
      --warm:        #e8c99a;
      --ocean:       #0077b6;
      --ocean-light: #90e0ef;
      --white:       #ffffff;
      --text-dark:   #1c1c1c;
      --text-muted:  #5a5a5a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text-dark);
      background: var(--white);
    }

    /* ══════════════════════════════════════════
       NAV — premium dark glass
    ══════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: .7rem 2.5rem;
      background: linear-gradient(90deg,
        rgba(8,22,12,.95) 0%,
        rgba(14,35,20,.92) 50%,
        rgba(8,22,12,.95) 100%);
      backdrop-filter: blur(24px) saturate(2);
      -webkit-backdrop-filter: blur(24px) saturate(2);
      border-bottom: 1px solid rgba(82,183,136,.22);
      box-shadow:
        0 1px 0 rgba(82,183,136,.08),
        0 4px 40px rgba(0,0,0,.45);
      transition: padding .35s ease, background .35s ease, box-shadow .35s;
    }
    nav::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(82,183,136,.04) 0%, transparent 100%);
      pointer-events: none;
    }
    nav.scrolled {
      padding: .5rem 2.5rem;
      background: linear-gradient(90deg,
        rgba(6,18,10,.98) 0%,
        rgba(10,26,15,.97) 50%,
        rgba(6,18,10,.98) 100%);
      box-shadow: 0 2px 48px rgba(0,0,0,.6);
    }

    /* ── LOGO ── */
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .nav-logo img {
      height: 46px; width: auto;
      object-fit: contain;
      transition: height .35s ease, filter .3s;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
    }
    nav.scrolled .nav-logo img { height: 34px; }
    .nav-logo img:hover { filter: drop-shadow(0 2px 12px rgba(82,183,136,.5)); }

    /* ── HAMBURGER ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      padding: 8px 9px;
      z-index: 300;
      transition: background .2s;
    }
    .nav-hamburger:hover { background: rgba(82,183,136,.18); border-color: rgba(82,183,136,.35); }
    .nav-hamburger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--sand);
      border-radius: 2px;
      transition: transform .3s, opacity .3s, width .3s;
    }
    .nav-hamburger.open { background: rgba(82,183,136,.15); border-color: rgba(82,183,136,.4); }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ── DESKTOP LINKS ── */
    .nav-links {
      display: flex;
      gap: 2px;
      list-style: none;
      align-items: center;
      flex: 1;
      justify-content: center;
      flex-wrap: nowrap;
      overflow: hidden;
    }
    .nav-links a {
      position: relative;
      color: rgba(244,230,210,.72);
      text-decoration: none;
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: .42rem .65rem;
      border-radius: 7px;
      transition: color .2s, background .2s;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 50%; right: 50%;
      height: 1.5px;
      background: var(--green-light);
      border-radius: 2px;
      transition: left .25s, right .25s;
    }
    .nav-links a:hover { color: #fff; background: rgba(82,183,136,.1); }
    .nav-links a:hover::after { left: 10%; right: 10%; }

    /* Book Now CTA pill */
    .nav-cta {
      background: linear-gradient(135deg, var(--green-light), #3da87a) !important;
      color: var(--green-dark) !important;
      padding: .48rem 1.1rem !important;
      border-radius: 20px !important;
      font-weight: 700 !important;
      font-size: .68rem !important;
      letter-spacing: 1px !important;
      box-shadow: 0 2px 14px rgba(82,183,136,.35) !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: linear-gradient(135deg, var(--warm), #d4a852) !important;
      color: var(--green-dark) !important;
      box-shadow: 0 4px 20px rgba(232,200,154,.4) !important;
      transform: translateY(-1px);
    }

    /* ── NAV RIGHT ── */
    .nav-right { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }

    /* ── MOBILE SLIDE-DOWN MENU ── */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0;
      background: linear-gradient(180deg, rgba(6,18,10,.99) 0%, rgba(10,26,15,.98) 100%);
      backdrop-filter: blur(24px);
      z-index: 150;
      padding: 5.5rem 1.5rem 2rem;
      flex-direction: column;
      gap: 2px;
      overflow-y: auto;
      max-height: 100vh;
      transform: translateY(-100%);
      transition: transform .38s cubic-bezier(.4,0,.2,1);
      border-bottom: 1px solid rgba(82,183,136,.2);
    }
    .nav-mobile.open { display: flex; transform: translateY(0); }
    .nav-mobile a {
      color: rgba(244,230,210,.8);
      text-decoration: none;
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: .8rem 1.1rem;
      border-radius: 10px;
      transition: color .2s, background .2s, padding-left .2s;
      display: flex; align-items: center; gap: .7rem;
    }
    .nav-mobile a:hover {
      color: var(--green-light);
      background: rgba(82,183,136,.1);
      padding-left: 1.6rem;
    }
    .nav-mobile .mob-cta {
      background: linear-gradient(135deg, var(--green-light), #3da87a) !important;
      color: var(--green-dark) !important;
      border-radius: 30px !important;
      font-weight: 700 !important;
      text-align: center;
      justify-content: center;
      margin-top: .8rem;
      padding: .9rem !important;
      box-shadow: 0 4px 18px rgba(82,183,136,.35);
    }
    .nav-mobile .mob-cta:hover {
      background: linear-gradient(135deg, var(--warm), #d4a852) !important;
      padding-left: 1.1rem !important;
    }
    /* mobile section separator */
    .mob-sep {
      height: 1px;
      background: rgba(255,255,255,.07);
      margin: .4rem 0;
    }

    /* ══ LANG SWITCHER ══ */
    .lang-switcher { position: relative; }
    .lang-btn {
      display: flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.16);
      color: var(--sand); border-radius: 22px;
      padding: 5px 10px 5px 6px;
      cursor: pointer;
      transition: background .2s, border-color .2s, box-shadow .2s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
    }
    .lang-btn:hover {
      background: rgba(82,183,136,.18);
      border-color: rgba(82,183,136,.4);
      box-shadow: 0 2px 12px rgba(82,183,136,.2);
    }
    /* Flag emoji displayed large */
    .lang-flag { font-size: 1.15rem; line-height: 1; }
    .lang-code { font-weight: 700; font-size: .65rem; letter-spacing: 1px; color: rgba(244,230,210,.8); }
    .lang-arrow {
      font-size: .5rem; opacity: .6;
      transition: transform .25s;
      margin-left: 1px;
    }
    .lang-btn.open .lang-arrow { transform: rotate(180deg); }

    .lang-dropdown {
      display: none;
      position: absolute; top: calc(100% + 10px); right: 0;
      background: rgba(8,22,12,.97);
      border: 1px solid rgba(82,183,136,.28);
      border-radius: 16px;
      overflow: hidden;
      min-width: 190px;
      box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        0 0 0 1px rgba(82,183,136,.08);
      z-index: 300;
      backdrop-filter: blur(24px);
    }
    .lang-dropdown.open { display: block; }

    /* Grid: 3 columns of flag buttons instead of a list */
    .lang-dropdown-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
      padding: 10px;
    }
    .lang-option {
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px;
      padding: .6rem .4rem;
      cursor: pointer;
      border-radius: 10px;
      background: none; border: 1.5px solid transparent;
      transition: background .15s, border-color .15s, transform .15s;
      font-family: 'Lato', sans-serif;
    }
    .lang-option:hover {
      background: rgba(82,183,136,.15);
      border-color: rgba(82,183,136,.3);
      transform: translateY(-2px);
    }
    .lang-option.active {
      background: rgba(82,183,136,.22);
      border-color: rgba(82,183,136,.5);
    }
    .lo-flag {
      font-size: 1.6rem;
      line-height: 1;
      display: block;
    }
    .lo-name {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: rgba(244,230,210,.75);
    }
    .lang-option.active .lo-name { color: var(--green-light); }

    /* ── MOBILE LANG STRIP ── */
    .mob-lang-strip {
      display: grid;
      grid-template-columns: repeat(5,1fr);
      gap: 5px;
      padding: .8rem 1rem;
      border-top: 1px solid rgba(255,255,255,.07);
      margin-top: .4rem;
    }
    .mob-lang-btn {
      display: flex; flex-direction: column;
      align-items: center; gap: 2px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 10px; padding: 6px 4px;
      cursor: pointer; font-family: inherit;
      transition: background .2s, border-color .2s;
    }
    .mob-lang-btn:hover, .mob-lang-btn.active {
      background: rgba(82,183,136,.22);
      border-color: rgba(82,183,136,.45);
    }
    .mob-lang-btn .mlb-flag { font-size: 1.3rem; line-height: 1; }
    .mob-lang-btn .mlb-code { font-size: .55rem; font-weight:700; letter-spacing:.8px; color:rgba(244,230,210,.6); }
    .mob-lang-btn.active .mlb-code { color: var(--green-light); }

    @media (max-width: 1100px) { .nav-links { gap: 0; } .nav-links a { font-size: .62rem; padding: .35rem .4rem; } }
    @media (max-width: 900px)  { .nav-links { display: none; } .nav-hamburger { display: flex; } nav { padding: .75rem 1.4rem; } }
    @media (max-width: 480px)  { nav { padding: .65rem 1rem; } .nav-logo img { height: 36px; } }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(10,30,20,0.55) 0%, rgba(10,30,20,0.25) 50%, rgba(0,60,90,0.45) 100%),
        url('img/eco-hero.jpg') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 2rem 4rem;
      position: relative;
    }

    .hero-tag {
      font-size: 0.78rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--green-light);
      background: rgba(255,255,255,0.1);
      border: 1px solid var(--green-light);
      padding: 0.4rem 1.2rem;
      border-radius: 30px;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(4px);
    }

    #hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.1;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
      margin-bottom: 0.4rem;
    }

    #hero h1 em {
      font-style: italic;
      color: var(--warm);
      display: block;
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255,255,255,0.88);
      margin: 1.2rem auto 2.5rem;
      max-width: 560px;
      line-height: 1.7;
      font-weight: 300;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

    .btn-primary {
      background: var(--green-light);
      color: var(--green-dark);
      padding: 0.85rem 2.4rem;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }
    .btn-primary:hover { background: var(--warm); transform: translateY(-2px); }

    .btn-outline {
      border: 2px solid rgba(255,255,255,0.7);
      color: var(--white);
      padding: 0.85rem 2.4rem;
      border-radius: 40px;
      font-weight: 400;
      font-size: 0.95rem;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--warm); background: rgba(255,255,255,0.08); }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .hero-scroll .arrow {
      width: 24px; height: 24px;
      border-right: 2px solid rgba(255,255,255,0.5);
      border-bottom: 2px solid rgba(255,255,255,0.5);
      transform: rotate(45deg);
      animation: bounce 1.6s infinite;
    }
    @keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

    /* ── SECTION COMMON ── */
    section { padding: 6rem 2rem; }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-body {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 680px;
    }

    /* ── ABOUT ── */
    #about {
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding: 6rem 8vw;
    }

    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      height: 520px;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: var(--green-dark);
      color: var(--sand);
      padding: 1.4rem 1.6rem;
      border-radius: 14px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }
    .about-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      color: var(--green-light);
      line-height: 1;
    }
    .about-badge .label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }

    .about-text { padding-left: 1rem; }
    .about-text .section-body { margin-top: 1rem; }

    .eco-pillars {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .pillar-icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--green-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .pillar-text strong { font-size: 0.95rem; color: var(--green-dark); display: block; }
    .pillar-text span { font-size: 0.85rem; color: var(--text-muted); }

    /* ── ROOMS ── */
    #rooms {
      background: var(--white);
      text-align: center;
      padding: 6rem 4vw;
    }
    #rooms .section-title { margin-bottom: 0.5rem; }
    #rooms .section-body { margin: 0 auto 3.5rem; }

    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .room-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0,0,0,0.10);
      transition: transform 0.3s, box-shadow 0.3s;
      background: var(--white);
      text-align: left;
    }
    .room-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }

    .room-img {
      height: 230px;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    .room-body { padding: 1.6rem; }
    .room-tag {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 0.4rem;
    }
    .room-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: var(--green-dark);
      margin-bottom: 0.5rem;
    }
    .room-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }

    .room-meta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: 0.82rem;
      color: var(--text-muted);
      border-top: 1px solid #eee;
      padding-top: 1rem;
    }
    .room-meta span { display: flex; align-items: center; gap: 0.3rem; }

    .room-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.2rem;
    }
    .price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); }
    .price small { font-size: 0.75rem; font-family: 'Lato', sans-serif; color: var(--text-muted); }

    .btn-book-OLD {
      background: var(--green-dark);
      color: var(--white);
      padding: 0.55rem 1.3rem;
      border-radius: 30px;
      font-size: 0.82rem;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.2s;
    }
    .btn-book:hover { background: var(--green-mid); }

    /* ── ACTIVITIES ── */
    #activities {
      background: var(--green-dark);
      padding: 6rem 4vw;
      text-align: center;
    }
    #activities .section-label { color: var(--green-light); }
    #activities .section-title { color: var(--sand); }
    #activities .section-body { color: rgba(244,233,216,0.75); margin: 0 auto 3.5rem; }

    .act-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .act-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background 0.3s, transform 0.3s;
      cursor: default;
    }
    .act-card:hover {
      background: rgba(82,183,136,0.15);
      transform: translateY(-6px);
    }

    .act-icon { font-size: 2.4rem; margin-bottom: 1rem; }
    .act-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--warm);
      margin-bottom: 0.6rem;
    }
    .act-card p { font-size: 0.88rem; color: rgba(244,233,216,0.72); line-height: 1.7; }

    /* ── GALLERY STRIP ── */
    .gallery-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 0.5rem;
      max-width: 100%;
      overflow: hidden;
    }

    .gallery-strip img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .gallery-strip img:hover { transform: scale(1.03); }
    .g-tall { grid-row: span 2; overflow: hidden; }
    .g-cell { overflow: hidden; }

    /* ── CONTACT ── */
    #contact {
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
      padding: 4rem 8vw;
    }

    .contact-info .section-body { margin-top: .6rem; margin-bottom: 1.2rem; }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      margin-bottom: 0.75rem;
    }
    .contact-detail .ci-icon {
      width: 32px; height: 32px;
      background: var(--green-mid);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .contact-detail strong { font-size: 0.85rem; display: block; color: var(--green-dark); }
    .contact-detail span { font-size: 0.9rem; color: var(--text-muted); }

    .contact-form {
      background: var(--white);
      border-radius: 16px;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    }
    .contact-form h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      color: var(--green-dark);
      margin-bottom: .9rem;
    }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: .65rem; }
    .form-group { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .65rem; }
    .form-group label { font-size: 0.72rem; color: var(--green-dark); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }

    .form-group input,
    .form-group select,
    .form-group textarea {
      border: 1.5px solid #ddd;
      border-radius: 10px;
      padding: 0.55rem 0.85rem;
      font-family: 'Lato', sans-serif;
      font-size: 0.88rem;
      color: var(--text-dark);
      outline: none;
      transition: border-color 0.2s;
      background: var(--white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--green-light); }
    .form-group textarea { resize: vertical; min-height: 68px; }

    .btn-send {
      width: 100%;
      margin-top: .2rem;
      background: var(--green-dark);
      color: var(--white);
      border: none;
      padding: 1rem;
      border-radius: 40px;
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-send:hover { background: var(--green-mid); transform: translateY(-2px); }

    /* ── FOOTER ── */
    footer {
      background: var(--green-dark);
      color: rgba(244,233,216,0.7);
      text-align: center;
      padding: 3rem 2rem;
    }
    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: var(--warm);
      margin-bottom: 0.5rem;
    }
    .footer-logo span { color: var(--green-light); }
    footer p { font-size: 0.88rem; margin-bottom: 1.5rem; }

    .footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(244,233,216,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--green-light); }

    .social-icons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
    .social-icons a {
      width: 40px; height: 40px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--sand);
      text-decoration: none;
      font-size: 1rem;
      transition: background 0.2s, border-color 0.2s;
    }
    .social-icons a:hover { background: var(--green-mid); border-color: var(--green-mid); }

    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.5rem 0; }
    .copyright { font-size: 0.78rem; color: rgba(244,233,216,0.4); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none !important; }
      #about, #contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6vw; }
      .about-img-wrap img { height: 320px; }
      .about-badge { bottom: -1rem; right: -0.5rem; }
      .about-text { padding-left: 0; }
      .gallery-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
      .g-tall { grid-row: span 1; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      section { padding: 4rem 1.5rem; }
      #hero h1 { font-size: 2.4rem; }
    }

    /* ════════════════════════════════
       PHOTO GALLERY — 3 sections
    ════════════════════════════════ */
    .gallery-section {
      padding: 5rem 0 0;
    }
    .gallery-section:last-of-type { padding-bottom: 5rem; }

    .gallery-section-header {
      text-align: center;
      padding: 0 8vw 2.5rem;
    }
    .gallery-section-header .section-label { margin-bottom: 0.5rem; }
    .gallery-section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem,3.2vw,2.4rem);
      color: var(--green-dark);
      margin-bottom: 0.6rem;
    }
    .gallery-section-header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 52ch;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* masonry-feel grid */
    .gal3-grid {
      display: grid;
      gap: 4px;
      width: 100%;
    }

    /* Property & beach — 3-col asymmetric */
    .gal3-grid.property {
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 340px 260px;
    }
    .gal3-grid.property .g-hero    { grid-column: 1; grid-row: 1 / 3; }
    .gal3-grid.property .g-tr      { grid-column: 2; grid-row: 1; }
    .gal3-grid.property .g-br      { grid-column: 3; grid-row: 1; }
    .gal3-grid.property .g-bl      { grid-column: 2; grid-row: 2; }
    .gal3-grid.property .g-br2     { grid-column: 3; grid-row: 2; }

    /* Rooms — 2-row, 3-col equal */
    .gal3-grid.rooms {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 300px 300px;
    }

    /* Events — mixed: 1 tall left + 2 right stacked, then 3 across bottom */
    .gal3-grid.events {
      grid-template-columns: 1.4fr 1fr 1fr;
      grid-template-rows: 300px 260px;
    }
    .gal3-grid.events .g-tall   { grid-column: 1; grid-row: 1 / 3; }
    .gal3-grid.events .g-tr     { grid-column: 2; grid-row: 1; }
    .gal3-grid.events .g-br     { grid-column: 3; grid-row: 1; }
    .gal3-grid.events .g-bl     { grid-column: 2; grid-row: 2; }
    .gal3-grid.events .g-br2    { grid-column: 3; grid-row: 2; }

    .gal3-cell {
      overflow: hidden;
      position: relative;
      background: #c8d5c4;
      cursor: pointer;
    }
    .gal3-cell img, .gal3-cell video {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .gal3-cell:hover img,
    .gal3-cell:hover video { transform: scale(1.06); }

    .gal3-cell .cell-cap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(10,25,15,0.78));
      color: #fff;
      padding: 28px 16px 14px;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gal3-cell:hover .cell-cap { opacity: 1; }

    /* placeholder tile shown when no real photo loaded yet */
    .gal3-cell.placeholder {
      background: linear-gradient(135deg, #c5d8c1, #9dbf97);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 8px;
    }
    .gal3-cell.placeholder .ph-icon { font-size: 2.2rem; opacity: .55; }
    .gal3-cell.placeholder .ph-text {
      font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase;
      color: rgba(26,61,43,0.6);
    }

    /* upload badge on placeholder */
    .upload-badge {
      position: absolute; top: 10px; right: 10px;
      background: rgba(82,183,136,0.85);
      color: #fff; font-size: 0.65rem; letter-spacing: 1px;
      text-transform: uppercase; padding: 4px 10px;
      border-radius: 20px; backdrop-filter: blur(4px);
    }

    /* lightbox */
    #gal-lb {
      display: none; position: fixed; inset: 0; z-index: 500;
      background: rgba(10,20,15,0.94); backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
    }
    #gal-lb.open { display: flex; }
    #gal-lb img, #gal-lb video {
      max-width: 92vw; max-height: 88vh;
      border-radius: 8px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      object-fit: contain;
    }
    #lb-close {
      position: absolute; top: 20px; right: 24px;
      color: #fff; font-size: 2rem; cursor: pointer;
      background: none; border: none; line-height: 1;
    }
    #lb-prev, #lb-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: #fff; font-size: 1.5rem; cursor: pointer;
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    #lb-prev:hover, #lb-next:hover { background: rgba(82,183,136,0.4); }
    #lb-prev { left: 20px; }
    #lb-next { right: 20px; }
    #lb-caption {
      position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.75); font-size: 0.82rem; letter-spacing: 1px;
      text-transform: uppercase; white-space: nowrap;
    }
    #lb-counter {
      position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 2px;
    }

    /* section divider */
    .gal-divider {
      height: 1px; background: #e0d8cc;
      margin: 0 8vw;
    }

    @media (max-width: 760px) {
      .gal3-grid.property,
      .gal3-grid.rooms,
      .gal3-grid.events {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .gal3-grid .g-hero,
      .gal3-grid .g-tall { grid-column: 1 / 3; grid-row: auto; }
      .gal3-cell { min-height: 200px; }
    }
    @media (max-width: 480px) {
      .gal3-grid.property,
      .gal3-grid.rooms,
      .gal3-grid.events { grid-template-columns: 1fr; }
      .gal3-grid .g-hero,
      .gal3-grid .g-tall { grid-column: 1; }
    }

    /* ── GALLERY NAV TABS ── */
    .gal-nav {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      justify-content: center;
      padding: 0 8vw 3rem;
    }
    .gal-tab {
      font-family: 'Lato', sans-serif;
      font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.55rem 1.2rem; border-radius: 30px; cursor: pointer;
      border: 1.5px solid var(--green-mid);
      background: transparent; color: var(--green-dark);
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .gal-tab:hover { background: var(--green-light); color: #fff; border-color: var(--green-light); }
    .gal-tab.active { background: var(--green-dark); color: var(--sand); border-color: var(--green-dark); }

    /* ── SUB-SECTION wrapper ── */
    .gal-subsection { display: none; }
    .gal-subsection.active { display: block; }

    /* ── VIDEO CELL ── */
    .gal3-cell.vid-cell { background: #0a1a0f; cursor: pointer; }
    .gal3-cell.vid-cell video {
      width:100%; height:100%; object-fit:cover; display:block;
      pointer-events:none;
    }
    .vid-play-btn {
      position: absolute; inset:0;
      display:flex; align-items:center; justify-content:center;
      z-index:2; transition: opacity 0.3s;
    }
    .vid-play-btn span {
      width: 56px; height: 56px; border-radius:50%;
      background: rgba(255,255,255,0.85);
      display:flex; align-items:center; justify-content:center;
      font-size: 1.4rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35);
      transition: transform 0.2s;
    }
    .gal3-cell.vid-cell:hover .vid-play-btn span { transform: scale(1.12); }

    /* ── DRONE / WIDE VIDEO GRID ── */
    .gal3-grid.drone {
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 380px 280px;
    }
    .gal3-grid.drone .g-hero { grid-column:1; grid-row:1/3; }
    .gal3-grid.drone .g-tr   { grid-column:2; grid-row:1; }
    .gal3-grid.drone .g-br   { grid-column:2; grid-row:2; }

    /* ── SURF VIDEO GRID ── */
    .gal3-grid.surfvid {
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: 300px 260px;
    }
    .gal3-grid.surfvid .g-wide { grid-column:1/3; grid-row:1; }
    .gal3-grid.surfvid .g-side { grid-column:3;   grid-row:1; }

    /* section count badge */
    .gal-tab .tab-count {
      display:inline-block; margin-left:5px;
      background: rgba(0,0,0,0.12); border-radius:10px;
      font-size:0.68rem; padding:1px 7px;
    }
    .gal-tab.active .tab-count { background: rgba(255,255,255,0.2); }

    /* dark bg for video sections */
    .gal-subsection.dark-bg { background: #0a1a0f; }
    .gal-subsection.dark-bg .gallery-section-header h2 { color: var(--warm); }
    .gal-subsection.dark-bg .gallery-section-header .section-label { color: var(--green-light); }
    .gal-subsection.dark-bg .gallery-section-header p { color: rgba(244,233,216,0.7); }
    .gal-subsection.dark-bg .gal-divider { background: rgba(255,255,255,0.1); }

    @media (max-width:760px){
      .gal3-grid.drone, .gal3-grid.surfvid {
        grid-template-columns:1fr;
        grid-template-rows:auto;
      }
      .gal3-grid.drone .g-hero,
      .gal3-grid.surfvid .g-wide { grid-column:1; grid-row:auto; }
      .gal3-grid.drone .g-tr,
      .gal3-grid.drone .g-br,
      .gal3-grid.surfvid .g-side { grid-column:1; grid-row:auto; }
      .gal3-cell { min-height:200px; }
    }

    /* ── SHORT VIDEO portrait grid ── */
    @media (max-width: 760px) {
      #tab-shortvids .gal3-cell { min-height: 260px; }
      #tab-shortvids > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
      }
    }
    @media (max-width: 480px) {
      #tab-shortvids > div[style*="grid-template-columns:repeat(3"] {
        grid-template-columns: 1fr !important;
      }
    }

    /* ════════════════════════════════
       SLIDESHOW GALLERY
    ════════════════════════════════ */
    .ss-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #0a1a0f;
      user-select: none;
    }

    /* Main big slide */
    .ss-stage {
      position: relative;
      width: 100%;
      height: clamp(340px, 56vw, 680px);
      overflow: hidden;
    }
    .ss-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .55s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .ss-slide.active { opacity: 1; z-index: 2; }
    .ss-slide.prev   { opacity: 0; z-index: 1; }
    .ss-slide img, .ss-slide video {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .ss-slide video { pointer-events: none; }

    /* Caption overlay */
    .ss-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0; z-index: 4;
      background: linear-gradient(transparent, rgba(5,15,8,.82));
      padding: 3rem 2rem 1.2rem;
      color: rgba(244,233,216,.9);
      font-size: .82rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      pointer-events: none;
    }

    /* Placeholder inside slide */
    .ss-slide.ss-ph {
      background: linear-gradient(135deg,#1a3d2b,#2d6a4f);
      flex-direction: column; gap: 10px;
    }
    .ss-slide.ss-ph .ph-icon { font-size: 3rem; opacity: .5; }
    .ss-slide.ss-ph .ph-text {
      font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
      color: rgba(244,233,216,.45);
    }
    .ss-slide.ss-ph .upload-badge { position: static; margin-top: 8px; }

    /* Arrow buttons */
    .ss-arrow {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 10; background: rgba(255,255,255,.14);
      border: 1.5px solid rgba(255,255,255,.28);
      color: #fff; font-size: 1.4rem;
      width: 50px; height: 50px; border-radius: 50%;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
      backdrop-filter: blur(4px);
    }
    .ss-arrow:hover { background: rgba(82,183,136,.5); transform: translateY(-50%) scale(1.08); }
    .ss-arrow.left  { left:  16px; }
    .ss-arrow.right { right: 16px; }

    /* Dot indicators */
    .ss-dots {
      display: flex; justify-content: center; gap: 7px;
      padding: 14px 0 10px;
      background: #0a1a0f;
    }
    .ss-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,.25); cursor: pointer;
      transition: background .25s, transform .25s;
      border: none; padding: 0;
    }
    .ss-dot.active { background: var(--green-light); transform: scale(1.3); }

    /* Thumbnail strip */
    .ss-thumbs {
      display: flex; gap: 4px;
      overflow-x: auto; scroll-behavior: smooth;
      background: #061009;
      padding: 6px;
      scrollbar-width: thin;
      scrollbar-color: #2d6a4f #0a1a0f;
    }
    .ss-thumbs::-webkit-scrollbar { height: 4px; }
    .ss-thumbs::-webkit-scrollbar-track { background: #0a1a0f; }
    .ss-thumbs::-webkit-scrollbar-thumb { background: #2d6a4f; border-radius: 2px; }
    .ss-thumb {
      flex-shrink: 0;
      width: 88px; height: 62px;
      overflow: hidden; cursor: pointer;
      border-radius: 4px;
      border: 2px solid transparent;
      transition: border-color .2s, opacity .2s;
      opacity: .55;
      position: relative;
      background: #1a3d2b;
    }
    .ss-thumb.active { border-color: var(--green-light); opacity: 1; }
    .ss-thumb:hover  { opacity: .85; }
    .ss-thumb img, .ss-thumb video {
      width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
    }
    .ss-thumb .th-ph {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; opacity: .5;
    }
    .ss-thumb .vid-badge {
      position: absolute; bottom: 3px; right: 4px;
      font-size: .6rem; background: rgba(0,0,0,.6);
      color: #fff; padding: 1px 5px; border-radius: 3px;
    }

    /* Auto-play progress bar */
    .ss-progress {
      height: 3px; background: rgba(255,255,255,.12);
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
    }
    .ss-progress-bar {
      height: 100%; background: var(--green-light);
      width: 0%; transition: width linear;
    }

    /* Section label inside the slideshow */
    .ss-section-badge {
      position: absolute; top: 16px; left: 16px; z-index: 6;
      background: rgba(10,25,15,.75); backdrop-filter: blur(6px);
      border: 1px solid rgba(82,183,136,.4);
      color: var(--green-light); font-size: .68rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px;
    }

    /* Counter */
    .ss-counter {
      position: absolute; top: 16px; right: 16px; z-index: 6;
      background: rgba(10,25,15,.65); backdrop-filter: blur(4px);
      color: rgba(244,233,216,.7); font-size: .72rem;
      letter-spacing: 2px; padding: 5px 10px; border-radius: 12px;
    }

    /* Fullscreen button */
    .ss-fullscreen {
      position: absolute; bottom: 14px; right: 14px; z-index: 6;
      background: rgba(10,25,15,.65); border: 1px solid rgba(255,255,255,.2);
      color: rgba(244,233,216,.8); font-size: .9rem;
      width: 34px; height: 34px; border-radius: 8px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s; backdrop-filter: blur(4px);
    }
    .ss-fullscreen:hover { background: rgba(82,183,136,.4); }

    /* Play/pause button */
    .ss-playpause {
      position: absolute; bottom: 14px; right: 56px; z-index: 6;
      background: rgba(10,25,15,.65); border: 1px solid rgba(255,255,255,.2);
      color: rgba(244,233,216,.8); font-size: .85rem;
      width: 34px; height: 34px; border-radius: 8px;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background .2s; backdrop-filter: blur(4px);
    }
    .ss-playpause:hover { background: rgba(82,183,136,.4); }

    /* Touch swipe hint */
    @media (max-width: 600px) {
      .ss-stage { height: clamp(240px, 72vw, 420px); }
      .ss-thumb  { width: 68px; height: 50px; }
      .ss-arrow  { width: 38px; height: 38px; font-size: 1.1rem; }
    }
/* ── SURFING PARADISE ── */
    #surf-paradise {
      background: var(--green-dark);
      padding: 6rem 8vw;
      color: var(--sand);
    }
    #surf-paradise .section-label { color: var(--green-light); }
    #surf-paradise .section-title { color: var(--warm); }
    #surf-paradise .section-body { color: rgba(244,233,216,0.78); margin: 1rem 0 3rem; }
    .spots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem;
      margin-bottom: 3rem;
    }
    .spot-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 1.4rem 1.2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .spot-card:hover { background: rgba(82,183,136,0.18); transform: translateY(-4px); }
    .spot-card .spot-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .spot-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--warm); margin-bottom: 0.4rem; }
    .spot-card p { font-size: 0.85rem; color: rgba(244,233,216,0.7); line-height: 1.65; }
    .spot-card .dist { font-size: 0.75rem; color: var(--green-light); margin-top: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
    .surf-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
    .surf-wingfoil-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(82,183,136,0.2); border: 1px solid var(--green-light);
      color: var(--green-light); border-radius: 30px;
      padding: 0.45rem 1.1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    }

    
/* ── CLOSER THAN YOU THINK ── */
    #proximity {
      background: var(--ocean);
      padding: 6rem 8vw;
      color: #fff;
    }
    #proximity .section-label { color: rgba(255,255,255,0.7); }
    #proximity .section-title { color: #fff; font-size: clamp(1.9rem,3.8vw,3rem); }
    #proximity .section-body { color: rgba(255,255,255,0.82); margin: 1rem 0 3rem; }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .city-card {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 14px;
      padding: 1.4rem 1.2rem;
      transition: background 0.3s, transform 0.3s;
    }
    .city-card:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
    .city-card .city-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: #fff; margin-bottom: 0.3rem; }
    .city-card .city-time { font-size: 1.6rem; font-weight: 700; color: var(--ocean-light); line-height: 1; margin-bottom: 0.3rem; }
    .city-card .city-route { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
    .city-card .city-badge { font-size: 0.7rem; background: rgba(255,255,255,0.15); color: #fff; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-top: 0.6rem; letter-spacing: 0.5px; }
    .proximity-callout {
      background: rgba(255,255,255,0.12);
      border-left: 4px solid var(--ocean-light);
      border-radius: 0 14px 14px 0;
      padding: 1.4rem 1.8rem;
      margin-bottom: 2.5rem;
      font-size: 1.05rem;
      color: rgba(255,255,255,0.92);
      line-height: 1.75;
    }
    .proximity-callout strong { color: #fff; }

    
/* ── EVENTS & SPECIAL OCCASIONS ── */
    #events {
      background: var(--sand);
      padding: 6rem 8vw;
    }
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .event-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2rem 1.6rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .event-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
    .event-icon { font-size: 2.4rem; margin-bottom: 1rem; }
    .event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.6rem; }
    .event-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
    .event-tag { display: inline-block; margin-top: 1rem; font-size: 0.72rem; background: var(--green-dark); color: var(--sand); padding: 4px 12px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; }

    
/* ── FOOD & LIFESTYLE ── */
    #food-lifestyle {
      background: var(--white);
      padding: 6rem 8vw;
    }
    .food-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }
    .food-text h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 0.8rem; }
    .food-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
    .food-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
    .food-tag { font-size: 0.78rem; background: #eaf3de; color: #1a3d2b; padding: 5px 14px; border-radius: 20px; font-weight: 700; }
    .food-vibes {
      background: linear-gradient(145deg, var(--green-dark), #2d6a4f);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      color: var(--sand);
      text-align: center;
    }
    .food-vibes .vibe-icon { font-size: 3rem; margin-bottom: 1rem; }
    .food-vibes h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--warm); margin-bottom: 0.8rem; }
    .food-vibes p { font-size: 0.92rem; color: rgba(244,233,216,0.8); line-height: 1.75; }

    
/* ── ROMANTIC RETREAT ── */
    #romantic {
      background: #1a0e0a;
      padding: 6rem 8vw;
      text-align: center;
    }
    #romantic .section-label { color: #c9967a; }
    #romantic .section-title { color: var(--warm); }
    #romantic .section-body { color: rgba(244,233,216,0.75); margin: 1rem auto 3rem; }
    .romantic-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.2rem;
      max-width: 1000px;
      margin: 0 auto 3rem;
    }
    .romantic-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 1.8rem 1.4rem;
      transition: background 0.3s;
    }
    .romantic-card:hover { background: rgba(201,150,122,0.12); }
    .romantic-card .r-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
    .romantic-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--warm); margin-bottom: 0.5rem; }
    .romantic-card p { font-size: 0.85rem; color: rgba(244,233,216,0.65); line-height: 1.65; }

    @media (max-width: 900px) {
      #surf-paradise, #proximity, #events, #food-lifestyle, #romantic { padding: 4rem 6vw; }
      .food-grid { grid-template-columns: 1fr; gap: 2rem; }
    }

    /* ══ SITE SEARCH ══ */
    #site-search { background:var(--green-dark); padding:3rem 8vw; }
    .search-bar-wrap {
      display:flex; gap:0; max-width:680px; margin:0 auto;
      border-radius:40px; overflow:hidden;
      box-shadow:0 8px 32px rgba(0,0,0,0.25);
    }
    #search-input {
      flex:1; padding:1.1rem 1.6rem;
      font-family:'Lato',sans-serif; font-size:1rem; color:var(--text-dark);
      border:none; outline:none; background:var(--white);
    }
    #search-btn {
      padding:1.1rem 2rem; background:var(--green-light); color:var(--white);
      border:none; font-weight:700; font-size:0.95rem; cursor:pointer;
      letter-spacing:1px; text-transform:uppercase; transition:background .2s;
    }
    #search-btn:hover { background:var(--warm); color:var(--green-dark); }
    #search-results {
      max-width:680px; margin:1rem auto 0;
      display:none; background:var(--white); border-radius:16px;
      box-shadow:0 12px 40px rgba(0,0,0,0.2); overflow:hidden;
    }
    .sr-item {
      padding:1rem 1.4rem; border-bottom:1px solid #f0ece4; cursor:pointer;
      transition:background .2s;
    }
    .sr-item:last-child { border-bottom:none; }
    .sr-item:hover { background:#f7f2e8; }
    .sr-item h4 { font-family:'Playfair Display',serif; font-size:1rem; color:var(--green-dark); margin-bottom:3px; }
    .sr-item p  { font-size:0.82rem; color:var(--text-muted); }
    .sr-item .sr-tag { font-size:0.68rem; background:#eaf3de; color:#1a3d2b; padding:2px 8px; border-radius:10px; display:inline-block; margin-bottom:4px; }

    /* ══ BLOG ══ */
    #blog { padding:6rem 8vw; background:var(--white); }
    .blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; margin-top:3rem; }
    .blog-card {
      border-radius:16px; overflow:hidden; border:1px solid #ede8de;
      transition:transform .3s,box-shadow .3s;
    }
    .blog-card:hover { transform:translateY(-6px); box-shadow:0 16px 48px rgba(0,0,0,0.1); }
    .blog-img { aspect-ratio:16/10; overflow:hidden; background:#c8d5c4; }
    .blog-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
    .blog-card:hover .blog-img img { transform:scale(1.05); }
    .blog-img-ph { width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:2.5rem;background:linear-gradient(135deg,#c5d8c1,#9dbf97); }
    .blog-body { padding:1.4rem 1.4rem 1.6rem; }
    .blog-cat { font-size:0.7rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-mid);font-weight:700;margin-bottom:0.5rem; }
    .blog-body h3 { font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--green-dark);margin-bottom:0.5rem;line-height:1.4; }
    .blog-body p { font-size:0.88rem;color:var(--text-muted);line-height:1.65;margin-bottom:0.8rem; }
    .blog-meta { display:flex;justify-content:space-between;align-items:center;font-size:0.75rem;color:var(--text-muted); }
    .blog-read { color:var(--green-mid);font-weight:700;text-decoration:none; }
    .blog-featured { grid-column:1/3; display:grid; grid-template-columns:1fr 1fr; }
    .blog-featured .blog-img { aspect-ratio:auto; min-height:280px; }
    .blog-cta-row { text-align:center;margin-top:2.5rem; }

    /* ══ SHOPIFY / SHOP ══ */
    #shop { padding:6rem 8vw; background:var(--sand); }
    .shop-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:3rem; }
    .shop-card {
      background:var(--white); border-radius:14px; overflow:hidden;
      border:1px solid #ede8de; transition:transform .3s,box-shadow .3s;
    }
    .shop-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,0.1); }
    .shop-img { aspect-ratio:1; overflow:hidden; background:linear-gradient(135deg,#c5d8c1,#9dbf97); display:flex;align-items:center;justify-content:center;font-size:3rem; }
    .shop-img img { width:100%;height:100%;object-fit:cover; }
    .shop-body { padding:1rem 1rem 1.2rem; }
    .shop-body h4 { font-family:'Playfair Display',serif;font-size:0.95rem;color:var(--green-dark);margin-bottom:4px; }
    .shop-body p { font-size:0.8rem;color:var(--text-muted);margin-bottom:0.8rem; }
    .shop-price { display:flex;justify-content:space-between;align-items:center; }
    .shop-price .price { font-weight:700;color:var(--green-dark);font-size:0.95rem; }
    .shop-btn { font-size:0.72rem;background:var(--green-dark);color:var(--sand);padding:5px 14px;border-radius:20px;text-decoration:none;font-weight:700;letter-spacing:0.5px; }
    .shop-btn:hover { background:var(--green-light); }
    .shopify-note { text-align:center;margin-top:1.5rem;font-size:0.85rem;color:var(--text-muted); }
    .shopify-note a { color:var(--green-mid);font-weight:700; }

    /* ══ NEWS ══ */
    #news { padding:6rem 8vw; background:var(--green-dark); color:var(--sand); }
    #news .section-title { color:var(--warm); }
    #news .section-label { color:var(--green-light); }
    .news-grid { display:grid;grid-template-columns:1.4fr 1fr;gap:1.5rem;margin-top:3rem; }
    .news-main {
      background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12);
      border-radius:16px; overflow:hidden;
    }
    .news-main-img { aspect-ratio:16/9; background:rgba(82,183,136,0.2); display:flex;align-items:center;justify-content:center;font-size:3rem; }
    .news-main-img img { width:100%;height:100%;object-fit:cover; }
    .news-main-body { padding:1.6rem; }
    .news-main-body .news-cat { font-size:0.7rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-light);margin-bottom:0.5rem; }
    .news-main-body h3 { font-family:'Playfair Display',serif;font-size:1.35rem;color:var(--warm);margin-bottom:0.6rem;line-height:1.4; }
    .news-main-body p { font-size:0.9rem;color:rgba(244,233,216,0.78);line-height:1.7; }
    .news-sidebar { display:flex;flex-direction:column;gap:1rem; }
    .news-item {
      background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1);
      border-radius:12px; padding:1.1rem 1.2rem;
      transition:background .2s;
    }
    .news-item:hover { background:rgba(255,255,255,0.1); }
    .news-item .news-cat { font-size:0.65rem;letter-spacing:2px;text-transform:uppercase;color:var(--green-light);margin-bottom:0.4rem; }
    .news-item h4 { font-family:'Playfair Display',serif;font-size:0.95rem;color:var(--warm);margin-bottom:0.3rem; }
    .news-item p { font-size:0.8rem;color:rgba(244,233,216,0.65);line-height:1.6; }
    .news-date { font-size:0.72rem;color:rgba(244,233,216,0.45);margin-top:0.5rem; }

    /* ══ GUIDE ══ */
    #guide { padding:6rem 8vw; background:var(--white); }
    .guide-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem; }
    .guide-card {
      border:1px solid #ede8de; border-radius:16px; padding:1.8rem 1.6rem;
      display:flex;gap:1.2rem;align-items:flex-start;
      transition:border-color .3s,transform .3s;
    }
    .guide-card:hover { border-color:var(--green-light);transform:translateY(-3px); }
    .guide-icon { font-size:2rem;flex-shrink:0; }
    .guide-card h3 { font-family:'Playfair Display',serif;font-size:1.05rem;color:var(--green-dark);margin-bottom:0.4rem; }
    .guide-card p { font-size:0.87rem;color:var(--text-muted);line-height:1.65; }
    .guide-card a { font-size:0.78rem;color:var(--green-mid);font-weight:700;text-decoration:none;margin-top:0.5rem;display:inline-block; }

    /* ══ TIPS ══ */
    #tips { padding:6rem 8vw; background:#f4e9d8; }
    .tips-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:3rem; }
    .tip-card {
      background:var(--white); border-radius:14px; padding:1.6rem 1.4rem;
      box-shadow:0 2px 12px rgba(0,0,0,0.06);
      transition:transform .3s;
    }
    .tip-card:hover { transform:translateY(-4px); }
    .tip-num { font-family:'Playfair Display',serif;font-size:2.5rem;color:var(--green-light);opacity:.4;line-height:1;margin-bottom:0.5rem; }
    .tip-card h4 { font-family:'Playfair Display',serif;font-size:1rem;color:var(--green-dark);margin-bottom:0.5rem; }
    .tip-card p { font-size:0.87rem;color:var(--text-muted);line-height:1.65; }

    @media(max-width:900px){
      .blog-grid { grid-template-columns:1fr; }
      .blog-featured { grid-column:auto;grid-template-columns:1fr; }
      .shop-grid { grid-template-columns:1fr 1fr; }
      .news-grid { grid-template-columns:1fr; }
      .guide-grid { grid-template-columns:1fr; }
      .tips-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:580px){
      .shop-grid { grid-template-columns:1fr; }
      .tips-grid { grid-template-columns:1fr; }
    }

    /* ══ TRANSPORTATION ══ */
    #transport { padding:6rem 8vw; background:var(--green-dark); color:var(--sand); }
    #transport .section-label { color:var(--green-light); }
    #transport .section-title { color:var(--warm); }
    #transport .section-body  { color:rgba(244,233,216,.78); margin:1rem 0 3rem; max-width:60ch; }

    .transport-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.4rem;
      margin-bottom:3rem;
    }
    .transport-card {
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:2rem 1.6rem 1.8rem;
      display:flex; flex-direction:column; gap:.5rem;
      transition:background .3s, transform .3s, border-color .3s;
      position:relative; overflow:hidden;
    }
    .transport-card::before {
      content:'';
      position:absolute; top:0; left:0; right:0; height:3px;
      background:var(--green-light);
    }
    .transport-card.vip::before { background:var(--warm); }
    .transport-card:hover {
      background:rgba(255,255,255,.12);
      border-color:rgba(82,183,136,.45);
      transform:translateY(-5px);
    }
    .transport-card.vip:hover { border-color:rgba(232,201,154,.5); }

    .tc-icon { font-size:2.4rem; margin-bottom:.4rem; }
    .tc-route {
      font-family:'Playfair Display',serif;
      font-size:1.2rem; color:var(--warm); line-height:1.3;
    }
    .tc-arrow { color:var(--green-light); font-size:.9rem; margin:0 4px; }
    .tc-time {
      display:flex; align-items:center; gap:.5rem;
      font-size:.82rem; color:rgba(244,233,216,.65); margin-top:.2rem;
    }
    .tc-time span { color:var(--green-light); font-weight:700; }
    .tc-price {
      margin-top:.8rem; padding-top:.9rem;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex; align-items:baseline; gap:.4rem;
    }
    .tc-price .amount {
      font-family:'Playfair Display',serif;
      font-size:2rem; color:var(--warm); line-height:1;
    }
    .tc-price .per { font-size:.78rem; color:rgba(244,233,216,.55); }
    .tc-tag {
      display:inline-flex; align-items:center; gap:5px;
      font-size:.68rem; letter-spacing:1.5px; text-transform:uppercase;
      background:rgba(82,183,136,.2); color:var(--green-light);
      border:1px solid rgba(82,183,136,.3);
      padding:3px 10px; border-radius:20px; margin-top:.6rem; width:fit-content;
    }
    .transport-card.vip .tc-tag {
      background:rgba(232,201,154,.15); color:var(--warm);
      border-color:rgba(232,201,154,.3);
    }
    .tc-includes {
      margin-top:.8rem; display:flex; flex-direction:column; gap:4px;
      font-size:.82rem; color:rgba(244,233,216,.68);
    }
    .tc-includes li { list-style:none; display:flex; gap:6px; align-items:flex-start; }
    .tc-includes li::before { content:'✓'; color:var(--green-light); flex-shrink:0; }

    /* Local transport options */
    .local-grid {
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1rem;
    }
    .local-card {
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.1);
      border-radius:14px; padding:1.4rem 1.2rem;
      text-align:center;
      transition:background .25s, transform .25s;
    }
    .local-card:hover { background:rgba(255,255,255,.1); transform:translateY(-3px); }
    .local-card .lc-icon { font-size:2rem; margin-bottom:.6rem; }
    .local-card h4 {
      font-family:'Playfair Display',serif;
      font-size:.95rem; color:var(--warm); margin-bottom:.4rem;
    }
    .local-card p { font-size:.8rem; color:rgba(244,233,216,.62); line-height:1.6; }
    .local-card .lc-price {
      margin-top:.7rem; font-size:.82rem; color:var(--green-light); font-weight:700;
    }

    .transport-cta {
      text-align:center; margin-top:3rem;
      padding-top:2.5rem; border-top:1px solid rgba(255,255,255,.1);
    }
    .transport-cta p { color:rgba(244,233,216,.7); margin-bottom:1.2rem; font-size:.95rem; }
    .transport-cta .cta-row { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

    /* VIP badge pulse */
    .vip-badge {
      position:absolute; top:16px; right:16px;
      background:var(--warm); color:var(--green-dark);
      font-size:.65rem; font-weight:700; letter-spacing:1.5px;
      text-transform:uppercase; padding:4px 10px; border-radius:20px;
    }

    @media(max-width:900px){
      .transport-grid { grid-template-columns:1fr; }
      .local-grid { grid-template-columns:1fr 1fr; }
    }
    @media(max-width:500px){
      .local-grid { grid-template-columns:1fr; }
    }

    /* ══ DR CIRCUIT ══ */
    #dr-circuit { padding:6rem 8vw; background:var(--white); }
    #dr-circuit .section-label { color:var(--green-mid); }
    #dr-circuit .section-title { color:var(--green-dark); }
    #dr-circuit .section-body  { color:var(--text-muted); margin:1rem 0 3rem; max-width:60ch; }

    /* route line visual */
    .circuit-map-line {
      display:flex; align-items:center; gap:0;
      overflow-x:auto; padding:.5rem 0 2rem;
      scrollbar-width:none;
      margin-bottom:3rem;
      position:relative;
    }
    .circuit-map-line::-webkit-scrollbar { display:none; }
    .cm-stop {
      display:flex; flex-direction:column; align-items:center;
      flex-shrink:0; position:relative;
    }
    .cm-dot {
      width:44px; height:44px; border-radius:50%;
      background:var(--green-dark); color:var(--sand);
      display:flex; align-items:center; justify-content:center;
      font-size:1.1rem; font-weight:700; z-index:2;
      border:3px solid var(--green-light);
      box-shadow:0 4px 12px rgba(26,61,43,.25);
      flex-shrink:0;
    }
    .cm-dot.start { background:var(--green-light); color:var(--green-dark); }
    .cm-label {
      font-size:.68rem; letter-spacing:1px; text-transform:uppercase;
      color:var(--green-dark); margin-top:.5rem; white-space:nowrap;
      font-weight:700; text-align:center;
    }
    .cm-sub { font-size:.6rem; color:var(--text-muted); margin-top:2px; white-space:nowrap; text-align:center; }
    .cm-line {
      flex:1; height:3px; min-width:40px; max-width:120px;
      background:linear-gradient(90deg,var(--green-light),var(--green-mid));
      position:relative; margin-bottom:26px;
    }
    .cm-line::after {
      content:'►'; position:absolute; right:-8px; top:-9px;
      color:var(--green-mid); font-size:.8rem;
    }
    .cm-dist {
      position:absolute; top:-18px; left:50%; transform:translateX(-50%);
      font-size:.6rem; color:var(--text-muted); white-space:nowrap; background:var(--white); padding:0 3px;
    }

    /* property cards */
    .circuit-grid {
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:1.4rem;
    }
    .circuit-card {
      border-radius:18px; overflow:hidden;
      border:1.5px solid #e8e2d8;
      display:flex; flex-direction:column;
      transition:transform .3s, box-shadow .3s, border-color .3s;
      text-decoration:none; color:inherit;
    }
    .circuit-card:hover {
      transform:translateY(-6px);
      box-shadow:0 20px 56px rgba(0,0,0,.12);
      border-color:var(--green-light);
    }
    .cc-img {
      aspect-ratio:16/10; overflow:hidden; position:relative;
      background:linear-gradient(135deg,#c5d8c1,#9dbf97);
      display:flex; align-items:center; justify-content:center;
    }
    .cc-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
    .circuit-card:hover .cc-img img { transform:scale(1.06); }
    .cc-img-ph { font-size:3rem; }
    .cc-badge {
      position:absolute; top:12px; left:12px;
      background:var(--green-dark); color:var(--sand);
      font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase;
      padding:4px 10px; border-radius:20px;
    }
    .cc-stop-badge {
      position:absolute; top:12px; right:12px;
      background:var(--green-light); color:var(--green-dark);
      font-size:.65rem; font-weight:700; letter-spacing:1px;
      padding:4px 10px; border-radius:20px;
    }
    .cc-body { padding:1.4rem 1.4rem 1.6rem; flex:1; display:flex; flex-direction:column; gap:.4rem; }
    .cc-body h3 {
      font-family:'Playfair Display',serif;
      font-size:1.05rem; color:var(--green-dark); line-height:1.35;
    }
    .cc-location {
      font-size:.76rem; color:var(--text-muted); letter-spacing:.5px;
      display:flex; align-items:center; gap:4px;
    }
    .cc-desc { font-size:.85rem; color:var(--text-muted); line-height:1.65; flex:1; margin-top:.2rem; }
    .cc-footer {
      display:flex; align-items:center; justify-content:space-between;
      margin-top:.8rem; padding-top:.8rem;
      border-top:1px solid #ede8de;
    }
    .cc-from { font-size:.75rem; color:var(--text-muted); }
    .cc-from strong { color:var(--green-dark); font-size:.9rem; }
    .cc-link {
      font-size:.72rem; font-weight:700; letter-spacing:1px;
      text-transform:uppercase; color:var(--green-mid);
      text-decoration:none; display:flex; align-items:center; gap:4px;
    }
    .cc-link:hover { color:var(--green-dark); }

    /* circuit CTA banner */
    .circuit-banner {
      margin-top:3rem; border-radius:18px; overflow:hidden;
      background:linear-gradient(135deg,var(--green-dark) 0%,#2d6a4f 100%);
      padding:2.5rem 3rem; display:flex;
      align-items:center; justify-content:space-between; gap:2rem;
      flex-wrap:wrap;
    }
    .circuit-banner h3 {
      font-family:'Playfair Display',serif; font-size:1.5rem;
      color:var(--warm); margin-bottom:.5rem;
    }
    .circuit-banner p { font-size:.9rem; color:rgba(244,233,216,.78); max-width:48ch; }
    .circuit-banner .banner-btns { display:flex; gap:.8rem; flex-wrap:wrap; flex-shrink:0; }

    @media(max-width:960px){
      .circuit-grid { grid-template-columns:1fr 1fr; }
      .circuit-banner { padding:2rem; }
    }
    @media(max-width:600px){
      .circuit-grid { grid-template-columns:1fr; }
      .circuit-banner { flex-direction:column; }
    }

    /* ══ LANGUAGE SWITCHER ══ */
    .lang-switcher {
      position:relative; margin-left:.5rem;
    }
    .lang-btn {
      display:flex; align-items:center; gap:6px;
      background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
      color:var(--sand); border-radius:30px; padding:6px 14px 6px 10px;
      font-family:'Lato',sans-serif; font-size:.8rem; cursor:pointer;
      letter-spacing:.5px; transition:background .2s;
    }
    .lang-btn:hover { background:rgba(255,255,255,.18); }
    .lang-flag { font-size:1rem; }
    .lang-code { font-weight:700; font-size:.75rem; }
    .lang-arrow { font-size:.6rem; opacity:.7; transition:transform .2s; }
    .lang-btn.open .lang-arrow { transform:rotate(180deg); }
    .lang-dropdown {
      display:none; position:absolute; top:calc(100% + 8px); right:0;
      background:#1a3d2b; border:1px solid rgba(255,255,255,.15);
      border-radius:14px; overflow:hidden; min-width:160px;
      box-shadow:0 16px 48px rgba(0,0,0,.35); z-index:200;
    }
    .lang-dropdown.open { display:block; }
    .lang-option {
      display:flex; align-items:center; gap:10px;
      padding:.7rem 1rem; cursor:pointer; font-size:.85rem;
      color:rgba(244,233,216,.8); transition:background .15s;
      border:none; background:none; width:100%; text-align:left;
      font-family:'Lato',sans-serif;
    }
    .lang-option:hover { background:rgba(255,255,255,.1); color:var(--warm); }
    .lang-option.active { background:rgba(82,183,136,.2); color:var(--green-light); }
    .lang-option .lo-flag { font-size:1.1rem; }
    .lang-option .lo-name { font-weight:600; }
    .lang-option .lo-native { font-size:.75rem; opacity:.65; }

    /* ── Room Book button — same as Book Now ── */
    .btn-book {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--green-dark); color: var(--sand);
      border: none; cursor: pointer;
      font-family: 'Lato', sans-serif; font-size: 0.82rem;
      font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.75rem 1.4rem; border-radius: 30px;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none; white-space: nowrap;
    }
    .btn-book:hover { background: var(--warm); color: var(--green-dark); transform: translateY(-2px); }

    .bk-promo{background:rgba(82,183,136,.18);border:1px solid rgba(82,183,136,.4);border-radius:10px;padding:8px 14px;margin-bottom:10px;font-size:.82rem;color:#52b788;text-align:center;font-weight:700;}

    /* ══ PAYMENT METHODS — compact ══ */
    #payment-methods {
      padding: 3rem 8vw;
      background: var(--green-dark);
      color: var(--sand);
    }
    .pay-grid-compact {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: .9rem;
      margin-bottom: 1.8rem;
    }
    .pay-pill {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 12px;
      padding: 1rem 1rem .9rem;
      display: flex; flex-direction: column; gap: .35rem;
      transition: background .25s, transform .25s;
      position: relative; overflow: hidden;
    }
    .pay-pill::before {
      content:''; position:absolute; top:0; left:0; right:0; height:2.5px;
    }
    .pay-pill.zelle::before   { background:#6D1ED4; }
    .pay-pill.revolut::before { background:#0075EB; }
    .pay-pill.paypal::before  { background:#FFC439; }
    .pay-pill.bank::before    { background:#E40000; }
    .pay-pill.stripe::before  { background:#635bff; }
    .pay-pill:hover { background:rgba(255,255,255,.12); transform:translateY(-3px); }
    .pp-head { display:flex; align-items:center; gap:.5rem; }
    .pp-icon { font-size:1.2rem; }
    .pp-name { font-size:.88rem; font-weight:700; color:var(--warm); }
    .pp-tag  { font-size:.65rem; color:rgba(244,233,216,.5); letter-spacing:.5px; }
    .pp-val  { font-size:.78rem; color:rgba(244,233,216,.8); font-family:monospace; margin-top:.15rem; }
    .pp-copy {
      display:inline-flex; align-items:center; gap:4px;
      background:rgba(255,255,255,.09); border:none;
      color:rgba(244,233,216,.7); border-radius:20px;
      padding:3px 10px; font-size:.68rem; cursor:pointer;
      transition:background .2s; font-family:inherit; margin-top:.2rem; width:fit-content;
    }
    .pp-copy:hover { background:rgba(82,183,136,.3); color:#fff; }
    .pp-copy.copied { background:rgba(82,183,136,.5); color:#fff; }
    .pp-btn {
      display:inline-flex; align-items:center; gap:4px;
      border:none; border-radius:20px; padding:4px 12px;
      font-size:.68rem; font-weight:700; cursor:pointer;
      font-family:inherit; margin-top:.2rem; text-decoration:none; width:fit-content;
    }
    .pp-btn.revolut-btn { background:#0075EB; color:#fff; }
    .pp-btn.paypal-btn  { background:#FFC439; color:#003087; }
    .pp-btn.stripe-btn  { background:#635bff; color:#fff; }

    /* Compact payment strip (used in modals) */
    .pay-strip {
      display:flex; flex-wrap:wrap; gap:6px;
      padding:10px 0 4px; border-top:1px solid rgba(255,255,255,.1);
      margin-top:10px;
    }
    .pay-strip-label { width:100%; font-size:.62rem; letter-spacing:1.5px; text-transform:uppercase; color:rgba(244,233,216,.45); margin-bottom:2px; }
    .ps-btn {
      display:inline-flex; align-items:center; gap:4px;
      border:none; border-radius:20px; padding:6px 12px;
      font-size:.72rem; font-weight:700; cursor:pointer;
      font-family:inherit; text-decoration:none; transition:opacity .2s;
      white-space:nowrap;
    }
    .ps-btn:hover { opacity:.88; }
    .ps-btn.zelle   { background:#6D1ED4; color:#fff; }
    .ps-btn.revolut { background:#0075EB; color:#fff; }
    .ps-btn.paypal  { background:#FFC439; color:#003087; }
    .ps-btn.bank    { background:#E40000; color:#fff; }
    .ps-btn.stripe  { background:#635bff; color:#fff; }

    @media (max-width: 580px) {
      #payment-methods .qr-grid { grid-template-columns: 1fr !important; }
    }

    /* ══ KITE / WING SECTION ══ */
    #kite-wing {
      background: var(--ocean, #0e3d5c);
      color: var(--sand);
      padding: 5rem 8vw;
    }
    #kite-wing .section-label { color: rgba(255,255,255,.65); }
    #kite-wing .section-title { color: #fff; }
    #kite-wing .section-body  { color: rgba(255,255,255,.75); margin: .8rem 0 2.5rem; max-width: 60ch; }

    /* discipline cards */
    .disc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin-bottom: 3rem;
    }
    .disc-card {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 16px;
      padding: 1.5rem 1.3rem;
      position: relative; overflow: hidden;
      transition: background .3s, transform .3s;
    }
    .disc-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #4db8ff, #00e5ff);
    }
    .disc-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
    .disc-icon { font-size: 2.2rem; margin-bottom: .7rem; }
    .disc-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem; color: #fff; font-weight: 600; margin-bottom: .4rem;
    }
    .disc-desc { font-size: .83rem; color: rgba(255,255,255,.68); line-height: 1.65; }
    .disc-tag {
      display: inline-block; margin-top: .7rem;
      font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase;
      background: rgba(77,184,255,.2); color: #4db8ff;
      border: 1px solid rgba(77,184,255,.35);
      padding: 3px 10px; border-radius: 20px;
    }

    /* upwind route */
    .upwind-route {
      background: rgba(0,0,0,.25);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 18px;
      padding: 2rem;
      margin-bottom: 2.5rem;
    }
    .upwind-route h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: #4db8ff; margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .route-stops {
      display: flex; align-items: flex-start;
      gap: 0; overflow-x: auto;
      scrollbar-width: none; padding-bottom: .5rem;
    }
    .route-stops::-webkit-scrollbar { display: none; }
    .rs-stop { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
    .rs-dot {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(77,184,255,.2);
      border: 2px solid #4db8ff;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; z-index: 1;
    }
    .rs-dot.home { background: #4db8ff; color: #003d5c; }
    .rs-label { font-size: .72rem; font-weight: 700; color: #fff; margin-top: .4rem; white-space: nowrap; text-align: center; }
    .rs-sub   { font-size: .62rem; color: rgba(255,255,255,.5); margin-top: 2px; white-space: nowrap; text-align: center; }
    .rs-line {
      flex: 1; min-width: 40px; max-width: 100px;
      height: 2px;
      background: linear-gradient(90deg, #4db8ff, rgba(77,184,255,.4));
      position: relative; margin-top: 18px;
    }
    .rs-line::after {
      content: '►'; position: absolute;
      right: -8px; top: -8px;
      color: #4db8ff; font-size: .75rem;
    }
    .rs-dist {
      position: absolute; top: -16px; left: 50%;
      transform: translateX(-50%);
      font-size: .58rem; color: rgba(255,255,255,.45);
      white-space: nowrap; background: transparent;
    }

    /* wind stats strip */
    .wind-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
      gap: .75rem; margin-top: 1.5rem;
    }
    .wind-stat {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px; padding: .9rem 1rem;
      text-align: center;
    }
    .wind-stat .wv { font-family: monospace; font-size: 1.2rem; color: #4db8ff; }
    .wind-stat .wl { font-size: .68rem; color: rgba(255,255,255,.55); letter-spacing: .5px; text-transform: uppercase; margin-top: 3px; }

    @media (max-width: 700px) {
      .disc-grid { grid-template-columns: 1fr 1fr; }
      .route-stops { gap: 0; }
    }

    /* ══ INLINE SECTION MEDIA STRIP ══ */
    .section-media-strip {
      display: grid;
      gap: 6px;
      margin: 2rem 0;
      border-radius: 16px;
      overflow: hidden;
    }
    .section-media-strip.cols-3 { grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px; }
    .section-media-strip.cols-4 { grid-template-columns: 1.6fr 1fr 1fr 1fr; grid-template-rows: 240px; }
    .section-media-strip.cols-2 { grid-template-columns: 1fr 1fr; grid-template-rows: 280px; }
    .sms-cell {
      overflow: hidden; position: relative; cursor: pointer;
      background: linear-gradient(135deg,#1a3d2b,#0e3d5c);
    }
    .sms-cell img, .sms-cell video {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .5s ease;
    }
    .sms-cell:hover img, .sms-cell:hover video { transform: scale(1.07); }
    .sms-cell video { pointer-events: none; }
    .sms-cap {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.72));
      color: rgba(255,255,255,.9); font-size: .72rem;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 22px 12px 10px;
      pointer-events: none;
    }
    .sms-cell .vid-play {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center; z-index: 2;
    }
    .sms-cell .vid-play span {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,.8);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; transition: transform .2s;
    }
    .sms-cell:hover .vid-play span { transform: scale(1.12); }
    .sms-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 8px; color: rgba(255,255,255,.4);
    }
    .sms-ph .ph-i { font-size: 2rem; opacity: .5; }
    .sms-ph .ph-t { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; }
    .sms-see-all {
      text-align: center; margin-top: .8rem;
    }
    .sms-see-all a {
      font-size: .75rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25);
      padding-bottom: 2px; transition: color .2s, border-color .2s;
    }
    .sms-see-all a:hover { color: #fff; border-color: #fff; }
    @media (max-width: 760px) {
      .section-media-strip.cols-3,
      .section-media-strip.cols-4 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .section-media-strip.cols-2 { grid-template-columns: 1fr; }
      .sms-cell { min-height: 180px; }
    }

    /* ══ PET FRIENDLY ══ */
    #pet-friendly {
      background: var(--sand);
      padding: 4rem 8vw;
    }
    .pet-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: start;
      margin-top: 2rem;
    }
    .pet-info { display: flex; flex-direction: column; gap: 1rem; }
    .pet-rules {
      display: flex; flex-direction: column; gap: .6rem;
      background: #fff;
      border-radius: 14px;
      padding: 1.4rem 1.6rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
    }
    .pet-rule {
      display: flex; align-items: flex-start; gap: .7rem;
      font-size: .9rem; color: var(--text-muted); line-height: 1.55;
    }
    .pet-rule .pr-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

    /* Pet counter card */
    .pet-counter-card {
      background: var(--green-dark);
      border-radius: 18px;
      padding: 2rem;
      color: var(--sand);
      display: flex; flex-direction: column; gap: 1.2rem;
    }
    .pet-counter-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem; color: var(--warm); margin-bottom: .2rem;
    }
    .pet-counter-card p { font-size: .85rem; color: rgba(244,233,216,.72); }
    .pet-adj {
      display: flex; align-items: center; gap: 1rem;
    }
    .pet-adj button {
      width: 38px; height: 38px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.1); color: var(--sand);
      font-size: 1.3rem; cursor: pointer; flex-shrink: 0;
      transition: background .2s, border-color .2s;
      display: flex; align-items: center; justify-content: center;
    }
    .pet-adj button:hover { background: rgba(82,183,136,.4); border-color: var(--green-light); }
    .pet-adj .pet-count {
      font-family: monospace; font-size: 2rem;
      color: var(--warm); min-width: 40px; text-align: center;
    }
    .pet-adj .pet-label { font-size: .8rem; color: rgba(244,233,216,.6); }
    .pet-total {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 10px;
      padding: .8rem 1.1rem;
      display: flex; justify-content: space-between; align-items: center;
      font-size: .85rem; color: rgba(244,233,216,.75);
    }
    .pet-total .pt-amount {
      font-family: monospace; font-size: 1.1rem;
      color: var(--warm); font-weight: 700;
    }
    .pet-wa-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: #25d366; color: #fff; border: none; border-radius: 30px;
      padding: 11px; font-weight: 700; font-size: .82rem;
      letter-spacing: 1px; text-transform: uppercase;
      cursor: pointer; font-family: inherit; text-decoration: none;
      width: 100%; transition: background .2s;
    }
    .pet-wa-btn:hover { background: #1da851; }
    @media (max-width: 760px) {
      .pet-grid { grid-template-columns: 1fr; }
    }

    /* ── Logo sizing ── */
    .nav-logo img { transition: height .3s; }
    nav.scrolled .nav-logo img { height: 34px; }
    @media (max-width: 480px) { .nav-logo img { height: 36px; } }

    /* ── 3-line hotel name in nav ── */
    .nav-name {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      margin-left: .6rem;
    }
    .nav-name .nn-1 {
      font-family: 'Playfair Display', serif;
      font-size: .75rem;
      font-weight: 700;
      color: var(--warm);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }
    .nav-name .nn-2 {
      font-family: 'Lato', sans-serif;
      font-size: .6rem;
      font-weight: 400;
      color: var(--green-light);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-name .nn-3 {
      font-family: 'Lato', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      color: rgba(244,230,210,.55);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    nav.scrolled .nav-name { display: none; }
    @media (max-width: 1100px) { .nav-name { display: none; } }

    /* ── WELLNESS (new) ── */
    #wellness { background: var(--sand); padding: 6rem 4vw; text-align: center; }
    #wellness .section-body { margin: 0 auto 3rem; }
    .wellness-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
    .wellness-card { background: var(--white); border-radius: 18px; padding: 2.4rem 2rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: left; }
    .wellness-icon { font-size: 2.6rem; margin-bottom: 1rem; }
    .wellness-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--green-dark); margin-bottom: 0.6rem; }
    .wellness-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.9rem; }
    .wellness-meta { font-size: 0.8rem; color: var(--green-mid); font-weight: 700; letter-spacing: 0.3px; }
  

/* ---- Merged from index.html inline <style> block #2 ---- */

/* ── Floating button ── */
#open-booking{position:fixed;bottom:2rem;right:2rem;z-index:999;background:#1a3d2b;color:#f4e9d8;border:none;padding:.85rem 1.8rem;border-radius:40px;font-size:.95rem;font-weight:700;cursor:pointer;box-shadow:0 6px 24px rgba(0,0,0,.3);transition:transform .2s,background .2s;font-family:'Lato',sans-serif}
#open-booking:hover{background:#2d6a4f;transform:translateY(-3px)}

/* ── Modal ── */
#bk-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:1000;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(4px)}
#bk-overlay.open{display:flex}
#bk-modal{background:#fff;border-radius:20px;width:100%;max-width:760px;max-height:90vh;overflow-y:auto;box-shadow:0 30px 80px rgba(0,0,0,.4);animation:slideUp .3s ease}
@keyframes slideUp{from{transform:translateY(30px);opacity:0}to{transform:translateY(0);opacity:1}}

/* ── Header ── */
#bk-header{background:linear-gradient(135deg,#1a3d2b,#2d6a4f);padding:1.4rem 1.8rem;border-radius:20px 20px 0 0;display:flex;align-items:center;justify-content:space-between}
#bk-logo{font-family:'Playfair Display',serif;font-size:1.3rem;color:#e8c99a}
#bk-sub{font-size:.75rem;color:rgba(244,233,216,.7);margin-top:.2rem;letter-spacing:1px}
#bk-x{background:rgba(255,255,255,.15);border:none;color:#fff;width:32px;height:32px;border-radius:50%;cursor:pointer;font-size:1rem;display:flex;align-items:center;justify-content:center}
#bk-x:hover{background:rgba(255,255,255,.3)}

/* ── Step dots ── */
#bk-steps{display:flex;align-items:center;justify-content:center;padding:1.2rem 2rem;gap:0;border-bottom:1px solid #eee}
.bk-step{display:flex;align-items:center;gap:.4rem;font-size:.8rem;color:#aaa;font-weight:600}
.bk-step span{width:24px;height:24px;border-radius:50%;background:#ddd;color:#999;display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700}
.bk-step.active{color:#1a3d2b}
.bk-step.active span{background:#52b788;color:#fff}
.bk-step.done span{background:#1a3d2b;color:#fff}
.bk-line{flex:1;height:2px;background:#eee;margin:0 .5rem;max-width:60px}

/* ── Pane / Fields ── */
.bk-pane{padding:1.8rem}
.bk-h{font-family:'Playfair Display',serif;font-size:1.5rem;color:#1a3d2b;margin-bottom:1.2rem}
.bk-hint{font-size:.82rem;color:#2d6a4f;margin-bottom:1rem;font-weight:600}
.bk-row2{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.bk-f{display:flex;flex-direction:column;gap:.3rem;margin-bottom:.8rem}
.bk-f label{font-size:.75rem;font-weight:700;color:#1a3d2b;letter-spacing:.5px;text-transform:uppercase}
.bk-f input,.bk-f textarea{border:1.5px solid #ddd;border-radius:10px;padding:.7rem .9rem;font-family:'Lato',sans-serif;font-size:.9rem;color:#1c1c1c;outline:none;transition:border-color .2s;width:100%}
.bk-f input:focus,.bk-f textarea:focus{border-color:#52b788}

/* ── Room grid ── */
#bk-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:1rem;margin:0 0 1.2rem}
.bk-card{border:2px solid #eee;border-radius:12px;overflow:hidden;background:#fff;transition:border-color .2s,transform .2s}
.bk-card:hover{border-color:#52b788;transform:translateY(-2px)}
.bk-card.has-rooms{border-color:#1a3d2b;box-shadow:0 0 0 3px rgba(26,61,43,.12)}
.bk-card.sold-out{opacity:.5}
.bk-card img{width:100%;height:130px;object-fit:cover;display:block}
.bk-cinfo{padding:.8rem}
.bk-ctag{font-size:.65rem;letter-spacing:1.5px;text-transform:uppercase;color:#52b788;font-weight:700}
.bk-cname{font-family:'Playfair Display',serif;font-size:1rem;color:#1a3d2b;margin:.2rem 0}
.bk-cmeta{font-size:.72rem;color:#777;line-height:1.5;margin-bottom:.4rem}
.bk-cavail{font-size:.72rem;font-weight:700;min-height:18px;margin-bottom:.3rem}
.bk-cavail.green{color:#27ae60}
.bk-cavail.orange{color:#e67e22}
.bk-cavail.red{color:#c0392b}

/* ── Controls: steppers ── */
.bk-controls{display:flex;gap:.8rem;padding-top:.7rem;border-top:1px solid #eee;margin-top:.4rem}
.bk-ctrl{display:flex;flex-direction:column;gap:.3rem;flex:1}
.bk-clabel{font-size:.65rem;font-weight:700;color:#1a3d2b;text-transform:uppercase;letter-spacing:.5px}
.bk-stepper{display:flex;align-items:center;border:1.5px solid #c8e6c9;border-radius:8px;overflow:hidden}
.bk-stepper button{background:#f8fdf9;border:none;width:32px;height:32px;font-size:1.1rem;cursor:pointer;color:#1a3d2b;font-weight:700;transition:background .15s;flex-shrink:0;line-height:1}
.bk-stepper button:hover:not(:disabled){background:#52b788;color:#fff}
.bk-stepper button:disabled{opacity:.3;cursor:not-allowed}
.bk-stepper span{flex:1;text-align:center;font-weight:700;font-size:.95rem;color:#1a3d2b;min-width:30px}
.bk-sub{font-size:.75rem;font-weight:700;color:#1a3d2b;background:#e8f5e9;border-radius:6px;padding:.3rem .6rem;margin-top:.5rem;display:none}

/* ── Order summary ── */
#bk-summary{background:#f8fdf9;border:1px solid #c8e6c9;border-radius:12px;padding:1rem 1.2rem;margin:0 0 1rem}
.bk-srow{display:flex;justify-content:space-between;font-size:.88rem;color:#555;padding:.25rem 0;border-bottom:1px solid rgba(0,0,0,.05)}
.bk-stotal{font-weight:700;color:#1a3d2b;font-size:1rem;border-bottom:none!important;padding-top:.5rem}

/* ── Stripe card ── */
#bk-card-el{border:1.5px solid #ddd;border-radius:10px;padding:.85rem 1rem}
#bk-card-el.StripeElement--focus{border-color:#52b788}

/* ── Buttons ── */
.bk-next{width:100%;background:#1a3d2b;color:#fff;border:none;padding:1rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.95rem;font-weight:700;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-next:hover{background:#2d6a4f}
.bk-back{background:#f5f5f5;color:#555;border:none;padding:.9rem 1.5rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.88rem;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-back:hover{background:#e5e5e5}
.bk-pay{flex:1;background:#52b788;color:#1a3d2b;border:none;padding:1rem;border-radius:40px;font-family:'Lato',sans-serif;font-size:.95rem;font-weight:700;cursor:pointer;margin-top:.8rem;transition:background .2s}
.bk-pay:hover:not(:disabled){background:#3da672}
.bk-pay:disabled{background:#ccc;cursor:not-allowed}
.bk-err{color:#c0392b;font-size:.85rem;background:#fdf0f0;border:1px solid #f5c6cb;border-radius:8px;padding:.6rem .9rem;margin-top:.4rem}

@media(max-width:600px){
  #bk-modal{max-height:95vh;border-radius:16px}
  .bk-pane{padding:1.1rem}
  #bk-grid{grid-template-columns:1fr 1fr}
  .bk-card img{height:90px}
  .bk-row2{grid-template-columns:1fr}
  .bk-controls{gap:.5rem}
}

