    /* ====================================================
       PAGE LOADER
    ==================================================== */
    body.loading { overflow: hidden; }

    #loader {
      position: fixed;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #080f07;
      z-index: 9999;
      transition: opacity 1.3s ease;
      font-family: 'Cormorant Garamond', Georgia, serif;
    }
    #loader.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .loader-logo {
      width: clamp(140px, 20vw, 220px);
      margin-bottom: clamp(16px, 3vh, 40px);
      animation: loaderFadeDown 1s ease both;
      display: block;
    }

    /* .loader-bottle-scene {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: loaderFadeUp 1s ease 0.2s both;
    }
    #loader-bottle-svg {
      height: clamp(180px, 38vh, 340px);
      width: auto;
      filter: drop-shadow(0 24px 48px rgba(190, 140, 10, 0.18));
    }
    #loader-glow {
      position: absolute;
      bottom: -18px;
      width: 220px;
      height: 90px;
      background: radial-gradient(ellipse, rgba(200,145,15,0.22) 0%, transparent 70%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.6s;
    } */

    .loader-olive-scene {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: loaderFadeUp 1s ease 0.2s both;
    }
    #loader-olive-svg {
      height: clamp(160px, 32vh, 280px);
      width: auto;
      filter: drop-shadow(0 12px 32px rgba(80, 140, 40, 0.22));
    }

    .loader-footer {
      margin-top: clamp(16px, 3vh, 48px);
      text-align: center;
      animation: loaderFadeUp 1s ease 0.4s both;
    }
    #loader-pct {
      font-size: 1.7rem;
      font-weight: 300;
      color: #c8a040;
      letter-spacing: 0.4em;
      min-width: 4.5ch;
      display: inline-block;
    }
    .loader-label {
      margin-top: 9px;
      font-size: 0.60rem;
      font-style: normal;
      font-weight: 300;
      color: #e8c575;
      letter-spacing: 0.48em;
      text-transform: uppercase;
    }

    @keyframes loaderFadeDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes loaderFadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ====================================================
       RESET & CSS VARIABLES
    ==================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; scrollbar-gutter: stable; }

    :root {
      --green-dark:    #4F5D39;
      --green-mid:     #6B7A52;
      --green-light:   #9CAF88;
      --gold:          #E8682A;
      --gold-light:    #F5A070;
      --terracotta:    #E8682A;
      --cream:         #FFFDF7;
      --cream-dark:    #F0E6D4;
      --text-dark:     #3A2F28;
      --text-mid:      #6B5C50;
      --text-muted:    #9A8B82;
      --white:         #FFFFFF;
      --shadow-sm:     0 2px 12px rgba(58,47,40,0.08);
      --shadow:        0 4px 24px rgba(58,47,40,0.12);
      --shadow-lg:     0 12px 48px rgba(58,47,40,0.18);
      --shadow-xl:     0 24px 64px rgba(58,47,40,0.24);
      --radius:        12px;
      --radius-lg:     20px;
      --radius-xl:     28px;
      --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
      line-height: 1.6;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; }

    /* ====================================================
       TYPOGRAPHY
    ==================================================== */
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

    .label {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.85rem;
    }

    .label--light { color: var(--gold-light); }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--green-dark);
      margin-bottom: 1.25rem;
      font-weight: 700;
    }

    .section-title--light { color: var(--white); }

    .section-body {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.8;
      max-width: 600px;
      text-align: justify;
    }

    /* ====================================================
       LAYOUT UTILITIES
    ==================================================== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-pad { padding: 6rem 0; }

    /* ====================================================
       BUTTONS
    ==================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.9rem 2.1rem;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
    }

    .btn-gold {
      background: var(--gold);
      color: #1a1a1a;
    }
    .btn-gold:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(201,168,76,0.45);
    }

    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.7);
    }
    .btn-outline-white:hover {
      background: var(--white);
      color: var(--green-dark);
      border-color: var(--white);
    }

    .btn-green {
      background: var(--green-dark);
      color: var(--white);
    }
    .btn-green:hover {
      background: var(--green-mid);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(27,67,50,0.4);
    }

    .btn-green-outline {
      background: transparent;
      color: var(--green-dark);
      border: 2px solid var(--green-dark);
    }
    .btn-green-outline:hover {
      background: var(--green-dark);
      color: var(--white);
    }

    /* ====================================================
       SCROLL ANIMATIONS
    ==================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    .reveal-fade {
      opacity: 0;
      transition: opacity 0.9s ease;
    }
    .reveal-fade.in { opacity: 1; }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-left.in { opacity: 1; transform: translateX(0); }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal-right.in { opacity: 1; transform: translateX(0); }

    .delay-1 { transition-delay: 0.1s !important; }
    .delay-2 { transition-delay: 0.2s !important; }
    .delay-3 { transition-delay: 0.3s !important; }
    .delay-4 { transition-delay: 0.4s !important; }

    /* ====================================================
       SCROLL PROGRESS BAR
    ==================================================== */
    #scroll-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), var(--terracotta));
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ====================================================
       NAVBAR
    ==================================================== */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.6rem 0;
      transition: var(--transition);
    }

    #nav.solid {
      background: rgba(20, 50, 35, 0.97);
      backdrop-filter: blur(12px);
      padding: 0.9rem 0;
      box-shadow: var(--shadow);
    }

    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo img {
      height: 62px;
      width: auto;
      object-fit: contain;
      transition: height 0.3s ease;
    }

    #nav.solid .nav-logo img { height: 46px; }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      list-style: none;
    }

    .nav-menu a {
      color: rgba(255,255,255,0.88);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: var(--transition);
      position: relative;
      padding-bottom: 2px;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.28s ease;
    }

    .nav-menu a:hover { color: var(--gold); }
    .nav-menu a:hover::after { width: 100%; }

    .nav-book {
      background: var(--gold) !important;
      color: #1a1a1a !important;
      padding: 0.6rem 1.5rem !important;
      border-radius: 50px;
      font-weight: 700 !important;
    }
    .nav-book::after { display: none !important; }
    .nav-book:hover { background: var(--gold-light) !important; }

    /* Hamburger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 9px 10px;
      z-index: 1100;
      background: rgba(8, 24, 15, 0.72);
      border: 1px solid rgba(201,168,76,0.55);
      border-radius: 9px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: var(--transition);
    }
    .burger:hover {
      background: rgba(8, 24, 15, 0.92);
      border-color: rgba(201,168,76,0.85);
    }
    .burger span {
      display: block;
      width: 22px; height: 2px;
      background: var(--gold-light);
      border-radius: 3px;
      transition: var(--transition);
    }
    .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile overlay */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
    }
    .nav-overlay.show { display: block; }

    /* ── Online Services dropdown ── */
    .nav-has-drop { position: relative; }

    .nav-drop-btn {
      background: var(--gold);
      border: 1px solid var(--gold);
      border-radius: 50px;
      cursor: pointer;
      color: #1a1a1a;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 0.42rem 1.05rem;
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.42em;
      transition: background 0.28s ease, border-color 0.28s ease,
                  color 0.28s ease, box-shadow 0.28s ease;
      font-family: inherit;
    }

    /* No underline bar — the pill shape owns the hover highlight */
    .nav-drop-btn::after { display: none; }

    .nav-has-drop:hover .nav-drop-btn,
    .nav-drop-btn[aria-expanded="true"] {
      background: var(--gold-light);
      border-color: var(--gold-light);
      color: #1a1a1a;
      box-shadow: 0 0 22px rgba(201,168,76,0.28);
    }

    .nav-caret {
      display: inline-block;
      width: 0; height: 0;
      border-left: 3.5px solid transparent;
      border-right: 3.5px solid transparent;
      border-top: 4.5px solid currentColor;
      transition: transform 0.26s ease;
      margin-top: 1px;
      flex-shrink: 0;
    }

    .nav-drop-btn[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0.65rem);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      background: rgba(11, 31, 19, 0.98);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(201,168,76,0.28);
      border-top: 2px solid var(--gold);
      border-radius: 10px;
      list-style: none;
      padding: 0.4rem 0;
      min-width: 192px;
      box-shadow: 0 14px 42px rgba(0,0,0,0.44),
                  inset 0 0 0 1px rgba(201,168,76,0.05);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
      z-index: 200;
    }

    /* Hairline glow bridge between pill and panel */
    .nav-dropdown::before {
      content: '';
      position: absolute;
      top: -5px; left: 50%;
      transform: translateX(-50%);
      width: 55%; height: 5px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.18), transparent);
      border-radius: 0 0 3px 3px;
    }

    .nav-has-drop:hover .nav-dropdown,
    .nav-has-drop.drop-open .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown li { list-style: none; }

    .nav-dropdown li + li {
      border-top: 1px solid rgba(201,168,76,0.1);
    }

    .nav-dropdown a {
      display: block;
      padding: 0.72rem 1.35rem;
      color: rgba(255,255,255,0.72);
      font-size: 0.84rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: color 0.22s ease, background 0.22s ease, padding-left 0.22s ease;
      white-space: nowrap;
    }

    .nav-dropdown a:hover {
      color: var(--gold-light);
      background: rgba(201,168,76,0.09);
      padding-left: 1.6rem;
    }

    .nav-dropdown a::after { display: none; }

    /* ====================================================
       HERO
    ==================================================== */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(0,0,0,0.25) 0%,
        rgba(20,50,35,0.5) 45%,
        rgba(0,0,0,0.72) 100%
      );
      z-index: 1;
    }

    .hero-body {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      padding: 0 1.5rem;
      max-width: 900px;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: slideUp 0.9s ease 0.35s forwards;
    }

    .hero-h1 {
      font-size: clamp(3rem, 7.5vw, 6rem);
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: slideUp 0.9s ease 0.55s forwards;
    }

    .hero-h1 em { color: var(--gold-light); font-style: italic; }

    .hero-lead {
      font-size: clamp(1rem, 2vw, 1.18rem);
      font-weight: 300;
      line-height: 1.7;
      opacity: 0;
      animation: slideUp 0.9s ease 0.75s forwards;
      margin-bottom: 2.5rem;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: slideUp 0.9s ease 0.95s forwards;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255,255,255,0.6);
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: bobble 2.4s ease-in-out infinite;
    }
    .hero-scroll-hint i { font-size: 1rem; }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(35px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes bobble {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ====================================================
       FEATURES STRIP
    ==================================================== */
    #strip {
      background: var(--green-dark);
      padding: 3.5rem 0;
    }

    .strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .strip-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: var(--white);
    }

    .strip-icon {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: rgba(201,168,76,0.15);
      border: 1.5px solid rgba(201,168,76,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 1rem;
      transition: var(--transition);
    }

    .strip-item:hover .strip-icon {
      background: var(--gold);
      color: var(--green-dark);
      border-color: var(--gold);
    }

    .strip-item h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 0.4rem;
    }

    .strip-item p {
      font-size: 0.82rem;
      opacity: 0.7;
      line-height: 1.55;
    }

    /* ====================================================
       ABOUT
    ==================================================== */
    #about { padding: 7rem 0; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-visual { position: relative; }

    .about-main-img {
      width: 100%;
      height: 540px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    .about-floater {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 48%;
      height: 210px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 5px solid var(--cream);
      box-shadow: var(--shadow-lg);
    }

    .about-tag {
      position: absolute;
      top: 2.5rem;
      left: -1.75rem;
      background: var(--gold);
      color: #f5f2f2;
      padding: 1.2rem 1.3rem;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow);
      line-height: 1;
    }

    .about-tag strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
    }

    .about-tag span {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .about-copy .section-body { margin-bottom: 1.25rem; }

    .about-ticks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem 1.25rem;
      margin-top: 2rem;
    }

    .tick {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.88rem;
      color: var(--text-mid);
    }

    .tick i { color: var(--green-mid); font-size: 0.85rem; flex-shrink: 0; }

    /* ====================================================
       ACCOMMODATION
    ==================================================== */
    #accommodation {
      padding: 7rem 0;
      background: linear-gradient(135deg, var(--green-dark) 0%, #244d39 100%);
      position: relative;
      overflow: hidden;
    }

    #accommodation::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -15%;
      width: 650px; height: 650px;
      background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .accom-head {
      text-align: center;
      margin-bottom: 4rem;
    }

    .accom-head .section-body { color: rgba(255,255,255,0.72); margin: 0 auto; }

    .rooms {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .room {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: var(--transition);
    }

    .room:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.12);
      border-color: rgba(201,168,76,0.45);
      box-shadow: 0 24px 48px rgba(0,0,0,0.35);
    }

    .room-img {
      width: 100%; height: 230px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .room:hover .room-img { transform: scale(1.04); }

    .room-body {
      padding: 1.75rem;
    }

    .room-body h3 {
      color: var(--gold-light);
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
    }

    .room-body p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }

    .tag {
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold-light);
      font-size: 0.72rem;
      padding: 0.3rem 0.85rem;
      border-radius: 20px;
      font-weight: 600;
    }

    /* ====================================================
       DINING
    ==================================================== */
    #dining { padding: 7rem 0; }

    .dining-head {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .dining-head .section-body { margin: 0 auto; }

    .tab-bar {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 3.5rem;
    }

    .tab {
      padding: 0.65rem 2rem;
      border-radius: 50px;
      border: 2px solid var(--green-dark);
      background: transparent;
      color: var(--green-dark);
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Inter', sans-serif;
    }

    .tab.on, .tab:hover {
      background: var(--green-dark);
      color: var(--white);
    }

    .panel { display: none; }
    .panel.on {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4.5rem;
      align-items: center;
    }

    .dining-img {
      width: 100%; height: 440px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }

    .dining-copy .section-body { margin-bottom: 2rem; }

    .perks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .perks li {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    .perks li i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0;
      width: 16px;
    }

    /* ====================================================
       GALLERY — ACCORDION FILMSTRIP
    ==================================================== */
    #gallery {
      padding: 7rem 0 0;
      background: var(--green-dark);
      overflow: hidden;
    }

    .gallery-head { text-align: center; margin-bottom: 3rem; }
    .gallery-head .section-body { margin: 0 auto; }
    .gallery-body  { color: rgba(255,255,255,0.58) !important; }

    /* ── Filmstrip ── */
    .filmstrip {
      display: flex;
      width: 100%;
      height: 520px;
      gap: 4px;
      overflow: hidden;
      margin-top: 3.5rem;
    }

    .fs-panel {
      flex: 1;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: flex 0.62s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fs-panel img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.62s cubic-bezier(0.4, 0, 0.2, 1),
                  filter     0.50s ease;
    }

    /* Accordion only fires on real pointer devices (mouse/trackpad) */
    @media (hover: hover) and (pointer: fine) {
      .filmstrip:hover .fs-panel       { flex: 0.32; }
      .filmstrip:hover .fs-panel:hover { flex: 5; }
      .filmstrip:hover .fs-panel img        { filter: brightness(0.32) saturate(0.6); }
      .filmstrip:hover .fs-panel:hover img  { filter: brightness(1) saturate(1); transform: scale(1.05); }
    }

    /* ====================================================
       OLIVE OIL
    ==================================================== */
    #olive { padding: 7rem 0; }

    .olive-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .olive-img {
      width: 100%; height: 520px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    .olive-copy .section-body { margin-bottom: 2.5rem; }

    .olive-list {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      margin-bottom: 2.5rem;
    }

    .olive-row {
      display: flex;
      gap: 1.1rem;
      align-items: flex-start;
    }

    .olive-ico {
      width: 46px; height: 46px;
      background: rgba(27,67,50,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--green-dark);
      font-size: 1rem;
      transition: var(--transition);
    }

    .olive-row:hover .olive-ico {
      background: var(--green-dark);
      color: var(--white);
    }

    .olive-txt h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.3rem;
    }

    .olive-txt p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.55;
    }

    /* ====================================================
       PULL QUOTE
    ==================================================== */
    #quote {
      padding: 5.5rem 0;
      background: var(--green-dark);
      text-align: center;
    }

    .quote-wrap { max-width: 760px; margin: 0 auto; }

    .quote-icon {
      font-size: 3rem;
      color: var(--gold);
      opacity: 0.45;
      margin-bottom: 1.5rem;
    }

    blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.45rem, 3vw, 2.1rem);
      font-style: italic;
      font-weight: 300;
      color: var(--white);
      line-height: 1.65;
      margin-bottom: 2rem;
    }

    cite {
      font-style: normal;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    /* ---- TripAdvisor ratings ---- */
    .ta-ratings {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ta-grid {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .ta-card {
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(201, 168, 76, 0.2);
      border-radius: 14px;
      padding: 1.25rem 1.4rem;
      flex: 1 1 180px;
      max-width: 215px;
      text-align: center;
      transition: border-color 0.35s;
    }

    .ta-card:hover { border-color: rgba(201, 168, 76, 0.5); }

    .ta-ratings.in .ta-card { animation: cardRise 0.5s ease both; }
    .ta-ratings.in .ta-card:nth-child(1) { animation-delay: 0.1s;  }
    .ta-ratings.in .ta-card:nth-child(2) { animation-delay: 0.22s; }
    .ta-ratings.in .ta-card:nth-child(3) { animation-delay: 0.34s; }
    .ta-ratings.in .ta-card:nth-child(4) { animation-delay: 0.46s; }

    @keyframes cardRise {
      from { transform: translateY(14px); opacity: 0.3; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    .ta-stars {
      display: flex;
      justify-content: center;
      gap: 0.22rem;
      margin-bottom: 0.8rem;
    }

    .ta-stars i { color: var(--gold); font-size: 0.9rem; opacity: 0; }

    @keyframes starPop {
      0%   { opacity: 0; transform: scale(0.2) rotate(-15deg); }
      65%  { opacity: 1; transform: scale(1.3) rotate(4deg); }
      100% { opacity: 1; transform: scale(1)   rotate(0deg); }
    }

    /* Wave of stars: card 1 → card 2 → card 3 → card 4, each star 0.06s apart */
    .ta-ratings.in .ta-card .ta-stars i { animation: starPop 0.38s ease forwards; }

    .ta-ratings.in .ta-card:nth-child(1) .ta-stars i:nth-child(1) { animation-delay: 0.60s; }
    .ta-ratings.in .ta-card:nth-child(1) .ta-stars i:nth-child(2) { animation-delay: 0.66s; }
    .ta-ratings.in .ta-card:nth-child(1) .ta-stars i:nth-child(3) { animation-delay: 0.72s; }
    .ta-ratings.in .ta-card:nth-child(1) .ta-stars i:nth-child(4) { animation-delay: 0.78s; }
    .ta-ratings.in .ta-card:nth-child(1) .ta-stars i:nth-child(5) { animation-delay: 0.84s; }

    .ta-ratings.in .ta-card:nth-child(2) .ta-stars i:nth-child(1) { animation-delay: 0.90s; }
    .ta-ratings.in .ta-card:nth-child(2) .ta-stars i:nth-child(2) { animation-delay: 0.96s; }
    .ta-ratings.in .ta-card:nth-child(2) .ta-stars i:nth-child(3) { animation-delay: 1.02s; }
    .ta-ratings.in .ta-card:nth-child(2) .ta-stars i:nth-child(4) { animation-delay: 1.08s; }
    .ta-ratings.in .ta-card:nth-child(2) .ta-stars i:nth-child(5) { animation-delay: 1.14s; }

    .ta-ratings.in .ta-card:nth-child(3) .ta-stars i:nth-child(1) { animation-delay: 1.20s; }
    .ta-ratings.in .ta-card:nth-child(3) .ta-stars i:nth-child(2) { animation-delay: 1.26s; }
    .ta-ratings.in .ta-card:nth-child(3) .ta-stars i:nth-child(3) { animation-delay: 1.32s; }
    .ta-ratings.in .ta-card:nth-child(3) .ta-stars i:nth-child(4) { animation-delay: 1.38s; }
    .ta-ratings.in .ta-card:nth-child(3) .ta-stars i:nth-child(5) { animation-delay: 1.44s; }

    .ta-ratings.in .ta-card:nth-child(4) .ta-stars i:nth-child(1) { animation-delay: 1.50s; }
    .ta-ratings.in .ta-card:nth-child(4) .ta-stars i:nth-child(2) { animation-delay: 1.56s; }
    .ta-ratings.in .ta-card:nth-child(4) .ta-stars i:nth-child(3) { animation-delay: 1.62s; }
    .ta-ratings.in .ta-card:nth-child(4) .ta-stars i:nth-child(4) { animation-delay: 1.68s; }
    .ta-ratings.in .ta-card:nth-child(4) .ta-stars i:nth-child(5) { animation-delay: 1.74s; }

    .ta-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.45;
      margin-bottom: 0.65rem;
    }

    .ta-author {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold-light);
      opacity: 0.75;
    }

    .ta-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1.35rem;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: background 0.3s, border-color 0.3s, transform 0.25s;
    }

    .ta-badge .fa-tripadvisor { font-size: 1.1rem; color: #34E0A1; }
    .ta-badge .ta-arrow       { font-size: 0.68rem; opacity: 0.6; }

    .ta-badge:hover {
      background: rgba(255, 255, 255, 0.13);
      border-color: rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
    }

    @media (max-width: 580px) {
      .ta-card { flex: 1 1 140px; max-width: 160px; padding: 1rem; }
      .ta-text  { font-size: 0.82rem; }
    }

    /* ====================================================
       CONTACT
    ==================================================== */
    #contact {
      padding: 7rem 0;
      background: var(--cream-dark);
    }

    .contact-head { text-align: center; margin-bottom: 4rem; }
    .contact-head .section-body { margin: 0 auto; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 4rem;
    }

    .contact-info h3 {
      font-size: 1.5rem;
      color: var(--green-dark);
      margin-bottom: 2rem;
    }

    .contact-rows {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;
    }

    .c-row {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .c-ico {
      width: 44px; height: 44px;
      background: var(--green-dark);
      color: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 0.95rem;
    }

    .c-text h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .c-text p, .c-text a {
      font-size: 0.92rem;
      color: var(--text-dark);
      text-decoration: none;
      line-height: 1.55;
    }

    .c-text a:hover { color: var(--green-mid); }

    .tip-box {
      margin-top: 2rem;
      padding: 1.4rem;
      background: var(--green-dark);
      border-radius: var(--radius);
      color: rgba(255,255,255,0.82);
      font-size: 0.875rem;
      line-height: 1.65;
    }

    .tip-box i { color: var(--gold); margin-right: 0.45rem; }

    /* FORM */
    .contact-form-wrap {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 2.75rem;
      box-shadow: var(--shadow);
    }

    .contact-form-wrap h3 {
      font-size: 1.5rem;
      color: var(--green-dark);
      margin-bottom: 1.75rem;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .fg { margin-bottom: 1.15rem; }

    .fg label {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 0.4rem;
      letter-spacing: 0.04em;
    }

    .fg input,
    .fg select,
    .fg textarea {
      width: 100%;
      padding: 0.8rem 1.05rem;
      border: 2px solid var(--cream-dark);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--cream);
      outline: none;
      transition: border-color 0.22s;
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus { border-color: var(--green-mid); background: var(--white); }

    .fg textarea { resize: vertical; min-height: 120px; }

    /* ====================================================
       FOOTER
    ==================================================== */
    footer {
      background: #0D2318;
      color: rgba(255,255,255,0.68);
      padding: 5rem 0 2rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
    }

    .footer-brand img {
      height: 56px;
      margin-bottom: 1.4rem;
    }

    .footer-brand p {
      font-size: 0.86rem;
      line-height: 1.75;
      margin-bottom: 1.75rem;
    }

    .socials { display: flex; gap: 0.7rem; }

    .soc {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      text-decoration: none;
      font-size: 0.88rem;
      transition: var(--transition);
    }

    .soc:hover { background: var(--gold); color: #1a1a1a; }

    .footer-col h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 1.4rem;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

    .footer-col ul li a {
      color: rgba(255,255,255,0.58);
      text-decoration: none;
      font-size: 0.875rem;
      transition: var(--transition);
    }

    .footer-col ul li a:hover { color: var(--gold-light); padding-left: 5px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.75rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      text-align: center;
    }

    .footer-bottom p { font-size: 0.8rem; opacity: 0.45; }

    /* ====================================================
       LIGHTBOX
    ==================================================== */
    #lb {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.93);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    #lb.show { display: flex; }

    #lb img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: var(--shadow-xl);
    }

    #lb-close {
      position: absolute;
      top: 1.5rem; right: 1.75rem;
      font-size: 2rem;
      color: var(--white);
      background: none;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      line-height: 1;
    }

    #lb-close:hover { color: var(--gold); transform: rotate(90deg); }

    #lb-prev, #lb-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      color: var(--white);
      font-size: 1.6rem;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      z-index: 1;
    }
    #lb-prev { left: 1.75rem; }
    #lb-next { right: 1.75rem; }
    #lb-prev:hover, #lb-next:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
    }

    #lb-caption {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.82);
      font-size: 0.875rem;
      letter-spacing: 0.04em;
      text-align: center;
      white-space: nowrap;
      pointer-events: none;
    }
    #lb-caption:empty { display: none; }

    /* ====================================================
       ESTATE HOUSE / ACCOMMODATION REDESIGN
    ==================================================== */
    .estate-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .estate-img-stack { position: relative; }

    .estate-main-img {
      width: 100%; height: 480px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    .estate-thumb {
      position: absolute;
      bottom: -2rem; left: -2rem;
      width: 44%; height: 195px;
      object-fit: cover;
      border-radius: var(--radius);
      border: 4px solid rgba(255,255,255,0.12);
      box-shadow: var(--shadow-lg);
    }

    .estate-text .section-body { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
    .estate-text em { font-style: italic; color: var(--gold-light); }

    .estate-detail {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.5;
      margin-bottom: 0.8rem;
    }
    .estate-detail i { color: var(--gold); margin-top: 2px; flex-shrink: 0; width: 16px; }
    .estate-detail em { font-style: italic; color: var(--gold-light); }

    .estate-amenities {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.1rem;
      padding-top: 3.5rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .amenity {
      text-align: center;
      padding: 1.75rem 1rem;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .amenity:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-4px);
    }

    .amenity-ico {
      width: 54px; height: 54px;
      background: rgba(201,168,76,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 1.2rem;
      margin: 0 auto 1rem;
      transition: var(--transition);
    }
    .amenity:hover .amenity-ico { background: var(--gold); color: var(--green-dark); }

    .amenity h4 {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--gold-light);
      margin-bottom: 0.4rem;
    }
    .amenity p { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

    /* ====================================================
       FLORA & FAUNA
    ==================================================== */
    #nature,
    #adventures {
      padding: 7rem 0;
      background: var(--green-dark);
      position: relative;
      overflow: hidden;
    }

    #adventures { background: #3a4530; }

    #nature::before {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .nature-head {
      text-align: center;
      margin-bottom: 4rem;
    }
    .nature-head .section-body { color: rgba(255,255,255,0.72); margin: 0 auto; }

    .nature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .nature-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-lg);
      padding: 2.25rem;
      transition: var(--transition);
    }
    .nature-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(201,168,76,0.35);
    }

    .nature-card-head {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .nature-card-ico {
      width: 52px; height: 52px;
      background: rgba(201,168,76,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .nature-card-head h3 {
      color: var(--gold-light);
      font-size: 1.35rem;
    }

    .nature-card-head p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      margin-top: 0.2rem;
    }

    .nature-card > p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      margin-bottom: 1.5rem;
    }

    .nature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .nature-tag {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.75);
      font-size: 0.76rem;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      font-weight: 500;
    }

    .nature-tag.highlight {
      background: rgba(201,168,76,0.15);
      border-color: rgba(201,168,76,0.35);
      color: var(--gold-light);
    }

    .trails-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .trail {
      display: flex;
      align-items: flex-start;
      gap: 0.85rem;
      font-size: 0.875rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.45;
    }

    .trail-dot {
      width: 12px; height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .trail-dot.yellow  { background: #F5C518; }
    .trail-dot.orange  { background: #E8832A; }
    .trail-dot.red     { background: #E05252; }
    .trail-dot.blue    { background: #5DA0E0; }

    .trail strong { color: var(--gold-light); }

    .adventures-partner-note {
      margin-top: 0.75rem;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      font-style: italic;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .adv-grid--divider { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 5rem; margin-top: 2rem; }
    .adv-grid--flip .adv-copy  { order: 2; }
    .adv-grid--flip .adv-visual { order: 1; }

    .adv-copy .section-title--light { margin-bottom: 0.5rem; }
    .adv-copy .section-body         { margin-bottom: 1rem; color: rgba(255,255,255,0.72); }
    .adv-copy .btn                  { margin-top: 0.5rem; }

    .adv-tagline {
      font-size: 0.95rem;
      color: var(--gold-light);
      margin-bottom: 1rem;
      font-style: italic;
    }

    .adv-img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    @media (max-width: 900px) {
      .adv-grid         { grid-template-columns: 1fr; gap: 3rem; }
      .adv-grid--flip .adv-copy,
      .adv-grid--flip .adv-visual { order: unset; }
      .adv-img          { height: 320px; }
    }

    @media (max-width: 768px) {
      .nature-grid { grid-template-columns: 1fr; }
    }

    /* Olive — cultivars & awards */
    .cultivars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.6rem;
      margin: 1.5rem 0;
    }
    .cultivar {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.4;
    }
    .cultivar i { color: var(--green-mid); font-size: 0.8rem; flex-shrink: 0; }

    .awards-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin: 1.25rem 0 2rem;
    }
    .award {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.95rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.3;
    }
    .award.gold   { background: rgba(201,168,76,0.12); border: 1.5px solid var(--gold);  color: #a07820; }
    .award.bronze { background: rgba(180,100,50,0.1);  border: 1.5px solid #c4843f;      color: #9a5e2a; }
    .award i { font-size: 0.9rem; }

    @media (max-width: 1024px) {
      .estate-amenities { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .estate-split   { grid-template-columns: 1fr; gap: 2.5rem; }
      .estate-thumb   { display: none; }
      .estate-amenities { grid-template-columns: repeat(3, 1fr); }
      .cultivars      { grid-template-columns: 1fr; }
    }
    @media (max-width: 580px) {
      .estate-amenities { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    }

    /* ====================================================
       SCROLL TO TOP
    ==================================================== */
    #back-top {
      position: fixed;
      bottom: 5.5rem;
      right: 1.75rem;
      z-index: 690;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--green-dark);
      border: 2px solid var(--gold);
      color: var(--gold);
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s, color 0.25s;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }
    #back-top.show {
      opacity: 1;
      transform: translateY(0);
    }
    #back-top:hover {
      background: var(--gold);
      color: var(--green-dark);
    }

    /* ====================================================
       BOOKING MODAL
    ==================================================== */
    #bm-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.72);
      backdrop-filter: blur(4px);
      z-index: 8000;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }
    #bm-overlay.show { display: flex; }

    #bm-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      width: 100%;
      max-width: 520px;
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      animation: bmSlideIn 0.32s cubic-bezier(0.34,1.3,0.64,1);
    }

    @keyframes bmSlideIn {
      from { opacity: 0; transform: translateY(30px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0)   scale(1); }
    }

    #bm-head {
      background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
      padding: 2rem 2.25rem 1.75rem;
      position: relative;
      color: var(--white);
    }

    #bm-head .label { color: var(--gold-light); margin-bottom: 0.4rem; }

    #bm-logo { height: 36px; width: auto; display: block; margin-bottom: 0.5rem; filter: brightness(0) invert(1); }

    #bm-head h3 {
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 700;
    }

    #bm-close {
      position: absolute;
      top: 1.1rem; right: 1.25rem;
      background: rgba(255,255,255,0.15);
      border: none;
      color: var(--white);
      width: 34px; height: 34px;
      border-radius: 50%;
      font-size: 1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: var(--transition);
    }
    #bm-close:hover { background: rgba(255,255,255,0.28); transform: rotate(90deg); }

    #bm-body { padding: 2rem 2.25rem 2.25rem; }

    .bm-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .bm-fg label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.4rem;
    }

    .bm-fg input, .bm-fg select {
      width: 100%;
      padding: 0.8rem 1rem;
      border: 2px solid var(--cream-dark);
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--cream);
      outline: none;
      transition: border-color 0.22s;
    }
    .bm-fg input:focus, .bm-fg select:focus {
      border-color: var(--green-mid);
      background: var(--white);
    }

    #bm-btn {
      width: 100%;
      margin-top: 0.5rem;
      padding: 1rem;
      border-radius: 50px;
      background: var(--gold);
      color: #1a1a1a;
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      gap: 0.6rem;
      transition: var(--transition);
    }
    #bm-btn:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,0.4);
    }

    #bm-nodates {
      display: block;
      text-align: center;
      margin-top: 0.9rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    #bm-nodates:hover { color: var(--green-mid); }

    /* ====================================================
       HERO BOOKING BAR
    ==================================================== */
    #booking-bar {
      position: absolute;
      bottom: 6rem;
      left: 2rem;
      right: 2rem;
      margin: 0 auto;
      z-index: 3;
      max-width: 940px;
      animation: slideUp 0.9s ease 1.15s both;
    }

    .bar-inner {
      display: flex;
      align-items: stretch;
      background: rgba(5, 16, 9, 0.82);
      backdrop-filter: blur(26px);
      -webkit-backdrop-filter: blur(26px);
      border: 1px solid rgba(201,168,76,0.42);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
    }

    /* Brand block */
    .bar-brand {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem 1.4rem 1rem 1.6rem;
      flex-shrink: 0;
    }
    .bar-brand-ico { font-size: 1.3rem; color: var(--gold); }
    .bar-brand-lbl strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.25;
      white-space: nowrap;
    }
    .bar-brand-lbl span {
      font-size: 0.62rem;
      font-weight: 600;
      color: rgba(201,168,76,0.78);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Vertical separators */
    .bar-sep-v {
      width: 1px;
      background: rgba(255,255,255,0.12);
      flex-shrink: 0;
      margin: 0.65rem 0;
    }

    /* Field blocks */
    .bar-field {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0.85rem 1.25rem;
      flex: 1;
      min-width: 0;
      cursor: pointer;
      transition: background 0.2s;
    }
    .bar-field:hover,
    .bar-field:focus-within { background: rgba(255,255,255,0.055); }

    .bar-field-label {
      display: block;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.32rem;
      pointer-events: none;
    }

    .bar-field input[type="date"],
    .bar-field select {
      background: transparent;
      border: none;
      outline: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--white);
      width: 100%;
      cursor: pointer;
      padding: 0;
    }
    .bar-field input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(1) opacity(0.45);
      cursor: pointer;
      width: 13px;
      height: 13px;
      margin-left: 3px;
    }
    .bar-field select {
      -webkit-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(232,201,122,0.7)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0 center;
      padding-right: 16px;
    }
    .bar-field select option { background: #1B4332; color: var(--white); }

    /* Nights pill */
    .bar-nights {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 0.7rem;
      flex-shrink: 0;
      gap: 0.18rem;
      pointer-events: none;
    }
    .bar-nights i { font-size: 0.68rem; color: var(--gold); opacity: 0.6; }
    .bar-nights span {
      font-size: 0.68rem;
      font-weight: 700;
      color: rgba(255,255,255,0.48);
      white-space: nowrap;
      min-width: 46px;
      text-align: center;
    }

    /* CTA button */
    #bar-btn {
      margin: 0.65rem;
      padding: 0 1.65rem;
      border-radius: 12px;
      background: var(--gold);
      color: #1a1a1a;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      white-space: nowrap;
      transition: var(--transition);
      flex-shrink: 0;
      letter-spacing: 0.02em;
    }
    #bar-btn:hover {
      background: var(--gold-light);
      box-shadow: 0 4px 18px rgba(201,168,76,0.44);
    }

    /* Tablet: hide brand + guests */
    @media (max-width: 860px) {
      #booking-bar { bottom: 5.5rem; left: 1.5rem; right: 1.5rem; }
      #hero { padding-bottom: 5rem; }
      .bar-brand, .bar-sep--brand, .bar-field--guests, .bar-sep--guests { display: none; }
      .bar-field { padding: 0.9rem 1.1rem; }
    }

    /* Mobile: two-column grid with button spanning full width */
    @media (max-width: 580px) {
      #booking-bar { bottom: 5rem; left: 1rem; right: 1rem; }
      #hero { padding-bottom: 8rem; }
      .bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 14px;
      }
      .bar-brand, .bar-sep-v, .bar-nights, .bar-field--guests { display: none; }
      .bar-field--ci {
        border-right: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .bar-field--co { border-bottom: 1px solid rgba(255,255,255,0.1); }
      #bar-btn {
        grid-column: 1 / -1;
        margin: 0.7rem;
        padding: 0.85rem;
        border-radius: 10px;
        font-size: 0.9rem;
      }
    }

    /* ====================================================
       RESPONSIVE
    ==================================================== */
    @media (max-width: 1024px) {
      .strip-grid  { grid-template-columns: repeat(2, 1fr); }
      .rooms       { grid-template-columns: 1fr 1fr; }
      .footer-top  { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 900px) {
      .about-grid,
      .olive-grid   { grid-template-columns: 1fr; gap: 3rem; }
      .about-floater { display: none; }
      .about-tag    { left: 0; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      /* Nav mobile */
      .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0;
        width: 285px; height: 100vh;
        background: var(--green-dark);
        padding: 6.5rem 2.5rem 3rem;
        z-index: 999;
        transform: translateX(110%);
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
      }
      .nav-menu.show { transform: translateX(0); }
      .nav-menu a { font-size: 1rem; }
      .burger { display: flex; }

      /* Online Services — mobile */
      .nav-has-drop { width: 100%; }
      .nav-drop-btn {
        font-size: 0.95rem;
        width: 100%;
        justify-content: space-between;
        border-radius: 8px;
        padding: 0.6rem 1rem;
      }
      .nav-dropdown {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(201,168,76,0.05);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(201,168,76,0.2);
        border-top: 2px solid rgba(201,168,76,0.55);
        border-radius: 8px;
        box-shadow: none;
        min-width: unset;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.32s ease, padding 0.32s ease;
        margin-top: 0.6rem;
      }
      .nav-dropdown::before { display: none; }
      .nav-has-drop.drop-open .nav-dropdown { max-height: 160px; padding: 0.35rem 0; }
      .nav-dropdown li + li { border-top-color: rgba(201,168,76,0.12); }
      .nav-dropdown a { font-size: 0.95rem; padding: 0.62rem 1rem; }
      .nav-dropdown a:hover { padding-left: 1rem; }

      .panel.on    { grid-template-columns: 1fr; gap: 2.5rem; }
      .rooms       { grid-template-columns: 1fr; }

      /* Filmstrip — tablet: shorter, still full accordion */
      .filmstrip { height: 400px; }

      .form-row-2  { grid-template-columns: 1fr; }
      .footer-top  { grid-template-columns: 1fr 1fr; }
      .hero-actions { flex-direction: column; align-items: center; }
    }

    @media (max-width: 540px) {
      .section-body { text-align: left; }
      .strip-grid  { grid-template-columns: 1fr 1fr; }
      /* Filmstrip — mobile: horizontal snap-scroll strip */
      .filmstrip {
        height: 260px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 3px;
        scrollbar-width: none;       /* Firefox */
        -ms-overflow-style: none;    /* IE/Edge */
      }
      .filmstrip::-webkit-scrollbar { display: none; } /* Chrome/Safari */
      .fs-panel {
        flex: 0 0 72vw;
        scroll-snap-align: start;
      }
      .footer-top  { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 0.75rem; margin-bottom: 2.5rem; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-col h4 { font-size: 0.65rem; margin-bottom: 0.85rem; }
      .footer-col ul { gap: 0.5rem; }
      .footer-col ul li a { font-size: 0.78rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .about-ticks { grid-template-columns: 1fr; }
      .contact-grid { gap: 2.5rem; }
    }

/* ====================================================
   SHOP PAGE
==================================================== */
    /* ── Shop page overrides ── */
    body { background: var(--cream); }

    /* Hero */
    #shop-hero {
      background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 60%, #1C1410 100%);
      padding: 9rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #shop-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('images/galenia-olive-oil-bottle.png') center/contain no-repeat;
      opacity: 0.06;
      pointer-events: none;
    }
    #shop-hero .label { color: var(--gold-light); }
    #shop-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: #fff;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    #shop-hero p {
      color: rgba(255,255,255,0.7);
      font-size: 1.05rem;
      max-width: 560px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }
    .shop-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .shop-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
    .shop-breadcrumb a:hover { color: var(--gold-light); }
    .shop-breadcrumb i { font-size: 0.6rem; }

    /* Cart badge (floating) */
    #shop-cart-badge {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--green-dark);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      box-shadow: 0 8px 28px rgba(27,67,50,0.45);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      z-index: 800;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
    }
    #shop-cart-badge.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    #shop-cart-badge:hover { background: var(--green-mid); transform: translateY(-2px); }
    #cart-badge-count {
      background: var(--gold);
      color: #1a1a1a;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      font-size: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    /* Main shop area */
    #shop-main { padding: 4rem 0 6rem; }

    /* Step tabs */
    .shop-steps {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 3rem;
      border-bottom: 2px solid var(--cream-dark);
    }
    .shop-step {
      padding: 0.75rem 1.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      cursor: default;
      transition: color 0.25s;
    }
    .shop-step.active {
      color: var(--green-dark);
      border-bottom-color: var(--green-dark);
    }
    .shop-step span.step-num {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid currentColor;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
    }
    .shop-step.active span.step-num {
      background: var(--green-dark);
      border-color: var(--green-dark);
      color: #fff;
    }

    /* Product grid */
    #product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.1rem;
    }
    .product-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.07);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
      display: flex;
      flex-direction: row;
    }
    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(27,67,50,0.13);
      border-color: rgba(27,67,50,0.18);
    }
    .product-card-img {
      width: 130px;
      min-width: 130px;
      align-self: stretch;
      object-fit: cover;
      display: block;
    }
    .product-card-img-placeholder {
      width: 130px;
      min-width: 130px;
      background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.22);
      font-size: 2.2rem;
    }
    .product-card-body {
      padding: 0.9rem 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }
    .product-card-volume {
      font-size: 0.7rem;
      color: var(--gold);
      letter-spacing: 0.09em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }
    .product-card-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--text-dark);
      margin-bottom: 0.3rem;
      line-height: 1.3;
    }
    .product-card-desc {
      font-size: 0.8rem;
      color: var(--text-mid);
      line-height: 1.55;
      flex: 1;
      margin-bottom: 0.75rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .product-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      margin-top: auto;
    }
    .product-price {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      white-space: nowrap;
    }
    .btn-add {
      background: var(--green-dark);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 0.38rem 0.85rem;
      font-size: 0.76rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      transition: var(--transition);
      white-space: nowrap;
    }
    .btn-add:hover { background: var(--green-mid); transform: translateY(-1px); }
    .btn-add.added { background: #4a7c59; }
    .btn-add:disabled { opacity: 0.5; cursor: not-allowed; background: var(--text-muted); }
    .qty-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
    .out-of-stock-badge {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-style: italic;
    }
    @media (max-width: 500px) {
      .product-card { flex-direction: column; }
      .product-card-img,
      .product-card-img-placeholder { width: 100%; min-width: unset; height: 160px; }
    }

    /* Cart table */
    #cart-section { max-width: 680px; margin: 0 auto; }
    .cart-back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: var(--green-dark);
      font-weight: 600;
      cursor: pointer;
      border: none;
      background: none;
      padding: 0;
      margin-bottom: 2rem;
      font-family: 'Inter', sans-serif;
    }
    .cart-back:hover { color: var(--green-mid); }
    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 0;
      border-bottom: 1px solid var(--cream-dark);
      gap: 1rem;
    }
    .cart-item-name { font-weight: 600; font-size: 0.95rem; flex: 1; }
    .cart-item-price { color: var(--gold); font-weight: 700; font-size: 0.95rem; min-width: 70px; text-align: right; }
    .qty-ctrl {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .qty-btn {
      background: none;
      border: 1px solid var(--cream-dark);
      width: 30px;
      height: 30px;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
      color: var(--text-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      font-family: 'Inter', sans-serif;
    }
    .qty-btn:hover { border-color: var(--green-mid); color: var(--green-dark); }
    .qty-val { min-width: 28px; text-align: center; font-weight: 600; }
    .cart-totals {
      background: var(--cream-dark);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-top: 2rem;
    }
    .cart-totals-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      color: var(--text-mid);
    }
    .cart-totals-row.total {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-dark);
      border-top: 1px solid rgba(0,0,0,0.1);
      padding-top: 0.75rem;
      margin-top: 0.5rem;
    }
    .cart-totals-row.total .amount { color: var(--gold); }
    .cart-actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
    .cart-actions .btn { flex: 1; justify-content: center; min-width: 180px; }

    /* Checkout form */
    #checkout-section { max-width: 640px; margin: 0 auto; }
    .checkout-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--green-dark);
      margin: 2rem 0 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--cream-dark);
    }
    .checkout-section-title:first-child { margin-top: 0; }
    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    @media (max-width: 520px) { .form-grid-2 { grid-template-columns: 1fr; } }

    /* Order summary box */
    .order-summary {
      background: #fff;
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius);
      padding: 1.5rem;
      margin-bottom: 2rem;
    }
    .order-summary h4 {
      font-family: 'Playfair Display', serif;
      margin-bottom: 1rem;
      font-size: 1rem;
      color: var(--green-dark);
    }
    .os-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      color: var(--text-mid);
      margin-bottom: 0.4rem;
    }
    .os-row.total {
      border-top: 1px solid var(--cream-dark);
      padding-top: 0.6rem;
      margin-top: 0.6rem;
      font-weight: 700;
      color: var(--text-dark);
      font-size: 0.95rem;
    }
    .os-row.total .amount { color: var(--gold); }

    /* Success state */
    #order-success {
      text-align: center;
      padding: 4rem 2rem;
      display: none;
    }
    #order-success > i {
      font-size: 3rem;
      color: var(--green-mid);
      display: block;
      margin-bottom: 1rem;
    }
    #order-success h2 {
      font-size: 1.8rem;
      color: var(--green-dark);
      margin-bottom: 0.5rem;
    }
    #order-success .ref {
      display: inline-block;
      background: var(--cream-dark);
      border-radius: 6px;
      padding: 0.5rem 1rem;
      font-family: monospace;
      font-size: 1.1rem;
      letter-spacing: 0.1em;
      margin: 1rem 0;
    }

    /* Loading skeleton */
    .skeleton {
      background: linear-gradient(90deg, var(--cream-dark) 25%, #e8e0d4 50%, var(--cream-dark) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      border-radius: 4px;
    }
    @keyframes shimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .skeleton-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .skeleton-img  { height: 220px; }
    .skeleton-body { padding: 1.5rem; }
    .skeleton-line { height: 14px; margin-bottom: 10px; }
    .skeleton-line.short { width: 60%; }

    /* Product description toggle */
    .product-details {
      margin-bottom: 0.6rem;
      border-top: 1px solid var(--cream-dark);
      margin-top: 0.4rem;
    }
    .product-details summary {
      cursor: pointer;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--green-dark);
      padding: 0.35rem 0;
      list-style: none;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      user-select: none;
      opacity: 0.75;
    }
    .product-details summary:hover { opacity: 1; }
    .product-details summary::-webkit-details-marker { display: none; }
    .product-details summary::after {
      content: '\203A';
      font-size: 0.9rem;
      transition: transform 0.2s;
      margin-left: auto;
    }
    .product-details[open] summary::after { transform: rotate(90deg); }
    .product-details-body {
      font-size: 0.78rem;
      color: var(--text-mid);
      line-height: 1.6;
      padding-bottom: 0.5rem;
    }
    .product-details-body p  { margin: 0 0 0.4rem; }
    .product-details-body ul { margin: 0 0 0.4rem 1.1rem; }
    .product-details-body h2,
    .product-details-body h3 { font-size: 0.82rem; margin: 0.4rem 0 0.2rem; color: var(--text-dark); }

    /* Empty state */
    .shop-empty {
      text-align: center;
      padding: 5rem 2rem;
      color: var(--text-muted);
    }
    .shop-empty i { font-size: 2.5rem; display: block; margin-bottom: 1rem; opacity: 0.4; }

/* ====================================================
   RESERVE PAGE
==================================================== */
    /* Reserve-page–specific styles only — base variables/fonts come from styles.css */
    :root {
      --success: #2E7D52;
      --cream-mid: #E0D0BC;
    }

    a { text-decoration: none; }
    button { cursor: pointer; font-family: inherit; }

    /* ── HERO ── */
    .res-hero {
      background: var(--green-dark);
      padding: 9rem 0 4rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .res-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: #fff;
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .res-hero .label { color: var(--gold-light); }
    
    /* ── PROGRESS STEPPER ── */
    .res-stepper {
      background: var(--green-dark);
      padding: 0 clamp(1rem, 5vw, 3rem);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .res-stepper__inner {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      align-items: center;
    }

    .res-step {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 0;
      flex: 1;
      position: relative;
      opacity: 0.38;
      transition: var(--transition);
    }
    .res-step.active, .res-step.done { opacity: 1; }

    .res-step__num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      flex-shrink: 0;
      transition: var(--transition);
    }
    .res-step.active .res-step__num {
      border-color: var(--gold);
      background: var(--gold);
      color: #fff;
    }
    .res-step.done .res-step__num {
      border-color: var(--success);
      background: var(--success);
      color: #fff;
    }

    .res-step__label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: rgba(255,255,255,0.5);
      white-space: nowrap;
    }
    .res-step.active .res-step__label { color: var(--white); }
    .res-step.done .res-step__label { color: rgba(255,255,255,0.7); }

    .res-step__connector {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.12);
      margin: 0 0.5rem;
    }

    /* ── MAIN LAYOUT ── */
    .res-main {
      max-width: 900px;
      margin: 0 auto;
      padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 2rem) 6rem;
    }

    /* ── STEP PANELS ── */
    .res-panel {
      display: none;
      animation: panelIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    .res-panel.active { display: block; }

    @keyframes panelIn {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .res-panel__heading { margin-bottom: 2rem; }
    .res-panel__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      font-weight: 400;
      color: var(--green-dark);
      line-height: 1.15;
      margin-bottom: 0.5rem;
    }
    .res-panel__sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── FORM ELEMENTS — match main site exactly ── */
    .fg { margin-bottom: 0; }

    .fg select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    .fg input:disabled, .fg select:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    textarea { resize: vertical; min-height: 100px; }

    .form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .span-2 { grid-column: span 2; }

    @media (max-width: 600px) {
      .form-grid-3 { grid-template-columns: 1fr; }
      .span-2 { grid-column: span 1; }
    }

    /* ── GUEST COUNT STEPPER ── */
    .guest-stepper {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--cream-dark);
      border-radius: 6px;
      overflow: hidden;
      background: var(--cream);
      height: 44px;
    }
    .guest-stepper__btn {
      width: 44px;
      height: 100%;
      border: none;
      background: none;
      font-size: 1.3rem;
      color: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .guest-stepper__btn:hover { background: var(--cream-dark); color: var(--gold); }
    .guest-stepper__btn:disabled { opacity: 0.3; cursor: not-allowed; }
    .guest-stepper__value {
      flex: 1;
      text-align: center;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-dark);
      border-left: 1px solid var(--cream-dark);
      border-right: 1px solid var(--cream-dark);
    }

    /* ── SECTION CARDS ── */
    .section-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1.25rem;
    }

    .section-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 2px solid transparent;
      cursor: pointer;
      transition: var(--transition);
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .section-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
    .section-card.selected {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(201,168,76,0.2), var(--shadow-lg);
    }
    .section-card.unavailable {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .section-card.unavailable:hover { transform: none; }

    .section-card__img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .section-card__img-placeholder {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);

      display: flex;
      align-items: center;
      justify-content: center;
    }
    .section-card__img-placeholder svg {
      width: 48px;
      height: 48px;
      opacity: 0.25;
    }

    .section-card__body {
      padding: 1.1rem 1.25rem 1.25rem;
    }

    .section-card__tags {
      display: flex;
      gap: 0.4rem;
      margin-bottom: 0.6rem;
      flex-wrap: wrap;
    }

    /* Scoped .tag overrides for reserve page section cards — avoids conflict with accommodation .tag */
    .section-card .tag {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.22rem 0.6rem;
      border-radius: 20px;
    }
    .section-card .tag--outdoor { background: rgba(46, 125, 82, 0.12); color: #2E7D52; }
    .section-card .tag--indoor  { background: rgba(45,106,79,0.12); color: var(--green-mid); }
    .section-card .tag--full    { background: rgba(201,168,76,0.15); color: var(--gold); }
    .section-card .tag--avail   { background: rgba(46, 125, 82, 0.10); color: #2E7D52; }

    .section-card__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--green-dark);
      margin-bottom: 0.4rem;
    }

    .section-card__desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .section-card__select-indicator {
      position: absolute;
      top: 0.85rem;
      right: 0.85rem;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.6);
      transition: var(--transition);
    }
    .section-card.selected .section-card__select-indicator {
      opacity: 1;
      transform: scale(1);
    }
    .section-card__select-indicator svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
    }

    .section-card__skip-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-style: italic;
      margin-top: 1.25rem;
    }

    /* ── DIETARY CHECKBOXES ── */
    .check-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 0.6rem;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.6rem 0.85rem;
      border: 1.5px solid var(--cream-dark);
      border-radius: 6px;
      cursor: pointer;
      transition: var(--transition);
      background: var(--cream);
      user-select: none;
    }
    .check-item:hover { border-color: var(--green-light); background: var(--white); }
    .check-item input[type="checkbox"] { display: none; }
    .check-item__box {
      width: 18px;
      height: 18px;
      border: 1.5px solid var(--cream-dark);
      border-radius: 4px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    .check-item input:checked + .check-item__box {
      background: var(--gold);
      border-color: var(--gold);
    }
    .check-item input:checked + .check-item__box::after {
      content: '';
      width: 5px;
      height: 9px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      transform: rotate(45deg) translateY(-1px);
      display: block;
    }
    .check-item.checked { border-color: var(--gold); background: rgba(201,168,76,0.08); }
    .check-item__label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }

    /* ── BUTTONS — extend main site .btn base ── */
    .btn--primary {
      background: var(--gold);
      color: var(--white);
    }
    .btn--primary:hover {
      background: var(--gold-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(201,168,76,0.35);
    }
    .btn--primary:disabled {
      background: var(--cream-dark);
      color: var(--text-muted);
      transform: none;
      box-shadow: none;
      cursor: not-allowed;
      pointer-events: none;
    }

    .btn--ghost {
      background: transparent;
      color: var(--green-dark);
      border: 1.5px solid var(--cream-dark);
    }
    .btn--ghost:hover {
      background: var(--green-dark);
      color: var(--white);
      border-color: var(--green-dark);
    }

    .btn--lg { padding: 1rem 2.5rem; font-size: 0.95rem; }

    .btn-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .btn-row--end { justify-content: flex-end; }

    .btn__spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
    }
    .btn.loading .btn__spinner { display: block; }
    .btn.loading .btn__text { display: none; }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── BOOKING SUMMARY SIDEBAR ── */
    .res-summary-bar {
      background: var(--green-dark);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin-bottom: 2rem;
      display: none;
    }
    .res-summary-bar.visible { display: block; }

    .summary-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.88rem;
    }
    .summary-row:last-child { border-bottom: none; padding-bottom: 0; }
    .summary-row__icon { color: var(--gold-light); width: 16px; flex-shrink: 0; }
    .summary-row__label { color: rgba(255,255,255,0.4); font-size: 0.75rem; flex: 1; }
    .summary-row__val { color: var(--white); font-weight: 500; }

    /* ── ERROR / NOTICE STATES ── */
    .field-error {
      font-size: 0.8rem;
      color: var(--gold);
      font-weight: 500;
    }

    .notice {
      padding: 1rem 1.25rem;
      border-radius: 6px;
      font-size: 0.88rem;
      margin-bottom: 1.25rem;
      display: none;
    }
    .notice.visible { display: block; }
    .notice--warn {
      background: rgba(201,168,76,0.10);
      border: 1px solid rgba(201,168,76,0.25);
      color: var(--gold);
    }
    .notice--info {
      background: rgba(45,106,79,0.08);
      border: 1px solid rgba(45,106,79,0.15);
      color: var(--green-mid);
    }

    /* ── STEP 4 : CONFIRMATION ── */
    .confirm-card {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .confirm-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(46, 125, 82, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }
    .confirm-icon svg {
      width: 40px;
      height: 40px;
      stroke: var(--success);
    }

    .confirm-ref {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 300;
      letter-spacing: 0.18em;
      color: var(--green-dark);
      margin: 0.5rem 0 0.25rem;
    }

    .confirm-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 400;
      color: var(--green-dark);
      margin-bottom: 0.5rem;
    }

    .confirm-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }

    .confirm-details {
      background: var(--white);
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: left;
      margin-bottom: 2rem;
    }

    .confirm-row {
      display: flex;
      gap: 0.75rem;
      padding: 0.65rem 0;
      border-bottom: 1px solid var(--cream-dark);
      font-size: 0.9rem;
    }
    .confirm-row:last-child { border-bottom: none; }
    .confirm-row__icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
    .confirm-row__label { color: var(--text-muted); width: 110px; flex-shrink: 0; }
    .confirm-row__val { color: var(--text-dark); font-weight: 500; }

    .confirm-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .waitlist-card {
      background: rgba(201,168,76,0.08);
      border: 1.5px solid rgba(201,168,76,0.25);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    .waitlist-card__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .waitlist-card__sub { font-size: 0.88rem; color: var(--text-mid); }

    /* ── LOAD SHEDDING NOTICE ── */
    .loadshed-notice {
      display: none;
      background: rgba(201,168,76,0.10);
      border: 1px solid rgba(201,168,76,0.22);
      border-radius: var(--radius);
      padding: 0.85rem 1.1rem;
      font-size: 0.85rem;
      color: var(--green-mid);
      margin-top: 1rem;
      gap: 0.6rem;
      align-items: flex-start;
    }
    .loadshed-notice.visible { display: flex; }
    .loadshed-notice svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

    /* ── LOADING SKELETON (reserve) ── */
    .section-skel { height: 280px; border-radius: var(--radius-lg); }

    /* ── PRIVACY NOTE ── */
    .privacy-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      margin-top: 1rem;
      line-height: 1.5;
    }
    .privacy-note a { color: var(--green-light); text-decoration: underline; }
    .section-card__skip-note a { color: var(--gold); }

    /* ── DIVIDER ── */
    .section-divider {
      height: 1px;
      background: var(--cream-mid);
      margin: 2rem 0;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 480px) {
      .res-step__label { display: none; }
      .res-hero { padding: 7rem 0 2.5rem; }
    }

/* ── inner-page nav always solid ── */
.page-nav-solid #nav {
  background: rgba(20, 50, 35, 0.97) !important;
  backdrop-filter: blur(12px);
  padding: 0.9rem 0 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.page-nav-solid #nav .nav-logo img { height: 46px; }

/* ── cc-footer-btn ── */
.cc-footer-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.cc-footer-btn:hover { opacity: 0.75; }

/* ====================================================
   RUSTIC MEDITERRANEAN FARM — THEME OVERRIDES
   Previous theme backup: styles.css.backup
==================================================== */

/* ── Reserve page :root — rustic overrides ── */
:root {
  --success:   #4F7A4A;
  --cream-mid: #E8D8C4;
}

/* ── Loader ── */
#loader { background: #2C3820; }

/* ── Navbar ── */
#nav.solid {
  background: rgba(47, 57, 32, 0.97);
  box-shadow: 0 4px 24px rgba(58,47,40,0.28);
}

/* ── Burger ── */
.burger {
  background: rgba(44, 56, 32, 0.75);
  border-color: rgba(232,104,42,0.55);
}
.burger:hover {
  background: rgba(44, 56, 32, 0.92);
  border-color: rgba(232,104,42,0.85);
}

/* ── Nav pill button — white text on terracotta for accessibility ── */
.nav-drop-btn { color: #FFFFFF; }
.nav-has-drop:hover .nav-drop-btn,
.nav-drop-btn[aria-expanded="true"] {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #3A2F28;
}

/* ── Nav dropdown ── */
.nav-dropdown {
  background: rgba(44, 56, 30, 0.98);
  border-color: rgba(232,104,42,0.28);
  border-top-color: var(--gold);
  box-shadow: 0 16px 48px rgba(58,47,40,0.35), inset 0 0 0 1px rgba(232,104,42,0.06);
}

/* ── Hero ── */
.hero-gradient {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.22) 0%,
    rgba(47,57,32,0.48) 45%,
    rgba(0,0,0,0.68) 100%
  );
}

/* ── Hero booking bar ── */
.bar-inner {
  background: rgba(40, 50, 25, 0.88);
  border-color: rgba(232,104,42,0.42);
  box-shadow: 0 20px 60px rgba(58,47,40,0.38), inset 0 1px 0 rgba(255,255,255,0.07);
}
.bar-field select option { background: #4F5D39; }

/* ── Features strip ── */
#strip { background: #4F5D39; }
.strip-item:hover .strip-icon { background: var(--gold); color: #fff; }

/* ── Accommodation ── */
#accommodation {
  background: linear-gradient(135deg, #4F5D39 0%, #3D4A2A 100%);
}
#accommodation::before {
  background: radial-gradient(circle, rgba(232,104,42,0.09) 0%, transparent 70%);
}

/* ── Dining — tab bar ── */
.tab {
  border-color: var(--green-dark);
  color: var(--green-dark);
}
.tab.on, .tab:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ── Gallery ── */
#gallery { background: var(--green-dark); }

/* ── Pull quote ── */
#quote { background: #4A5835; }
.ta-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,104,42,0.2);
}
.ta-card:hover { border-color: rgba(232,104,42,0.45); }

/* ── Contact section ── */
#contact { background: var(--cream-dark); }
.contact-info h3 { color: var(--green-dark); }
.tip-box {
  background: var(--green-dark);
  border: none;
  color: rgba(255,255,255,0.88);
}

/* ── Contact form card — warm white ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(232,104,42,0.15);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--green-dark); }

/* ── Form inputs — warm rustic parchment ── */
.fg label { color: var(--text-mid); }
.fg input,
.fg select,
.fg textarea {
  background: #FAF5EC;
  border-color: rgba(232,104,42,0.22);
  color: var(--text-dark);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

/* ── Buttons ── */
.btn-gold,
.nav-book { color: #FFFFFF !important; }
.btn-gold:hover { background: var(--gold-light); color: #3A2F28 !important; }

.btn-green-outline {
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-green-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ── Footer ── */
footer { background: #2C3820; }
.footer-bottom { border-top-color: rgba(255,255,255,0.1); }

/* ── Scroll to top ── */
#back-top {
  background: var(--green-dark);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(58,47,40,0.22);
}
#back-top:hover { background: var(--gold); color: #fff; }

/* ── Booking modal ── */
#bm-card {
  background: var(--white);
  box-shadow: 0 24px 64px rgba(58,47,40,0.28);
}
#bm-head {
  background: linear-gradient(135deg, #4F5D39 0%, #6B7A52 100%);
  border-bottom: none;
}
#bm-close { background: rgba(255,255,255,0.15); }
#bm-close:hover { background: rgba(255,255,255,0.28); }
.bm-fg input,
.bm-fg select {
  background: #FAF5EC;
  border-color: rgba(232,104,42,0.22);
  color: var(--text-dark);
}
.bm-fg input:focus,
.bm-fg select:focus {
  border-color: var(--gold);
  background: var(--white);
}
#bm-btn { color: #FFFFFF; }
#bm-btn:hover { background: var(--gold-light); color: #3A2F28; }

/* ── Inner-page nav solid ── */
.page-nav-solid #nav {
  background: rgba(47, 57, 32, 0.97) !important;
  box-shadow: 0 4px 24px rgba(58,47,40,0.22) !important;
}

/* ── Shop hero ── */
#shop-hero {
  background: linear-gradient(160deg, #4F5D39 0%, #3D4A2A 60%, #2C3820 100%);
}

/* ── Product cards ── */
.product-card {
  background: var(--white);
  border-color: rgba(232,104,42,0.12);
  box-shadow: 0 2px 8px rgba(58,47,40,0.08);
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(58,47,40,0.18);
  border-color: rgba(232,104,42,0.32);
}
.product-card-name { color: var(--text-dark); }
.product-card-img-placeholder {
  background: linear-gradient(160deg, #4F5D39 0%, #6B7A52 100%);
}

/* ── Cart ── */
.cart-item { border-bottom-color: rgba(232,104,42,0.15); }
.cart-totals {
  background: var(--cream-dark);
  border: 1px solid rgba(232,104,42,0.12);
}
.cart-totals-row { color: var(--text-mid); }
.qty-btn {
  border-color: rgba(232,104,42,0.22);
  color: var(--text-dark);
  background: transparent;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-back { color: var(--green-dark); }
.cart-back:hover { color: var(--gold); }

/* ── Checkout & order summary ── */
.checkout-section-title { color: var(--green-dark); }
.order-summary {
  background: var(--white);
  border-color: rgba(232,104,42,0.15);
}
.order-summary h4 { color: var(--green-dark); }
.os-row { color: var(--text-mid); }

/* ── Awards (olive page) ── */
.award.gold {
  background: rgba(232,104,42,0.1);
  border-color: var(--gold);
  color: #7A4A2A;
}
.award.bronze {
  background: rgba(160,106,74,0.1);
  border-color: var(--terracotta);
  color: #7A4A2A;
}

/* ── Reserve page ── */
.res-hero { background: linear-gradient(160deg, #4F5D39 0%, #3D4A2A 60%, #2C3820 100%); }
.res-stepper {
  background: #4F5D39;
  border-bottom-color: rgba(255,255,255,0.1);
}
.res-panel__title { color: var(--green-dark); }
.res-panel__sub   { color: var(--text-muted); }

.section-card {
  background: var(--white);
  border-color: rgba(232,104,42,0.12);
  box-shadow: var(--shadow-sm);
}
.section-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,104,42,0.32);
}
.section-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(232,104,42,0.15), var(--shadow-lg);
}
.section-card__img-placeholder {
  background: linear-gradient(135deg, #6B7A52 0%, #4F5D39 100%);
}
.section-card__name { color: var(--green-dark); }
.section-card__desc { color: var(--text-muted); }

.section-card .tag--avail {
  background: rgba(79,93,57,0.1);
  color: var(--green-dark);
}

.guest-stepper {
  background: var(--cream);
  border-color: rgba(232,104,42,0.22);
}
.guest-stepper__value {
  border-left-color: rgba(232,104,42,0.18);
  border-right-color: rgba(232,104,42,0.18);
  color: var(--text-dark);
}

.check-item {
  background: var(--cream);
  border-color: rgba(232,104,42,0.2);
}
.check-item:hover {
  background: var(--white);
  border-color: var(--gold);
}
.check-item.checked {
  background: rgba(232,104,42,0.08);
  border-color: var(--gold);
}
.check-item__label { color: var(--text-mid); }

.confirm-details {
  background: var(--white);
  border-color: rgba(232,104,42,0.15);
}
.confirm-title { color: var(--green-dark); }
.confirm-row__label { color: var(--text-muted); }
.confirm-row__val   { color: var(--text-dark); }
.confirm-row { border-bottom-color: var(--cream-dark); }

.res-summary-bar { background: #4F5D39; border: none; }
.summary-row { border-bottom-color: rgba(255,255,255,0.1); }

.waitlist-card {
  background: rgba(232,104,42,0.07);
  border-color: rgba(232,104,42,0.22);
}
.waitlist-card__title { color: var(--gold); }

.notice--warn {
  background: rgba(232,104,42,0.08);
  border-color: rgba(232,104,42,0.22);
  color: var(--gold);
}
.notice--info {
  background: rgba(79,93,57,0.08);
  border-color: rgba(79,93,57,0.18);
  color: var(--green-dark);
}

/* ── Skeleton shimmer — warm parchment ── */
.skeleton {
  background: linear-gradient(90deg, #F0E8D8 25%, #FAF5EC 50%, #F0E8D8 75%);
  background-size: 200% 100%;
}
.skeleton-card { background: var(--white); }

/* ====================================================
   PROMOTION WIDGET (promo-banners.php)
   Fixed bottom-left, expands upward, minimisable
==================================================== */

/* ── Widget container ── */
#promo-stack {
  position: fixed;
  bottom: 0;
  left: 1.75rem;
  z-index: 850;
  width: 340px;
  max-width: calc(100vw - 3.5rem);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.18), 0 -1px 0 rgba(255,255,255,0.04);
  display: none;
  flex-direction: column; /* cards on top, bar on bottom */
  animation: pgalIn 0.4s cubic-bezier(0.34,1.15,0.64,1) both;
}
#promo-stack.pgal-ready { display: flex; }

@keyframes pgalIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ── Cards area — sits above the bar, expands upward ── */
.pgal-cards-area {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
  background: var(--cream, #FFFDF7);
}
#promo-stack.pgal-expanded .pgal-cards-area {
  max-height: 62vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
}
#promo-stack.pgal-expanded .pgal-cards-area::-webkit-scrollbar { width: 4px; }
#promo-stack.pgal-expanded .pgal-cards-area::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12); border-radius: 4px;
}

/* ── Control bar — always visible at bottom ── */
.pgal-bar {
  background: linear-gradient(135deg, #2C3820 0%, #4A5835 100%);
  padding: 0.72rem 0.85rem 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
  transition: background 0.22s;
}
.pgal-bar:hover { background: linear-gradient(135deg, #364824 0%, #566640 100%); }

.pgal-bar-ico {
  color: #E8C060;
  font-size: 0.9rem;
  flex-shrink: 0;
  pointer-events: none;
}
.pgal-bar-label {
  color: #E8C060;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  flex: 1;
  pointer-events: none;
  white-space: nowrap;
}
.pgal-count {
  background: linear-gradient(135deg, #C8960A, #E8B820);
  color: #1A1000;
  font-size: 0.62rem;
  font-weight: 800;
  min-width: 19px; height: 19px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
  pointer-events: none; flex-shrink: 0;
}
.pgal-toggle-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.72);
  width: 27px; height: 27px;
  border-radius: 6px; font-size: 0.72rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, color 0.2s;
  pointer-events: none; /* bar click handles it */
}
.pgal-bar:hover .pgal-toggle-btn { background: rgba(255,255,255,0.18); color: #E8C060; }

/* ── Cards ── */
.pgal-card {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  animation: pgalCardIn 0.32s ease both;
}
.pgal-card:last-child { border-bottom: none; }

.pgal-exit {
  animation: pgalCardOut 0.26s ease forwards !important;
  overflow: hidden;
}

@keyframes pgalCardIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pgalCardOut {
  from { opacity: 1; max-height: 500px; }
  to   { opacity: 0; max-height: 0; }
}

/* ── Card colour-theme header ── */
.pgal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.8rem 0.65rem 1rem;
}
.pgal-header-left { display: flex; align-items: center; gap: 0.45rem; }
.pgal-header-ico {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.pgal-header-lbl { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.pgal-urgency {
  font-size: 0.63rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: 20px;
  background: rgba(255,255,255,0.22); white-space: nowrap;
}
.pgal-close {
  background: rgba(255,255,255,0.18); border: none; color: inherit;
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.68rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, transform 0.2s;
}
.pgal-close:hover { background: rgba(255,255,255,0.36); transform: rotate(90deg); }

/* ── Card image ── */
.pgal-image { width: 100%; overflow: hidden; max-height: 160px; }
.pgal-image img { width: 100%; height: 160px; object-fit: cover; display: block; }

/* ── Card body ── */
.pgal-body-wrap { padding: 0.95rem 1.1rem 1.1rem; }
.pgal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; line-height: 1.25; margin-bottom: 0.5rem;
}
.pgal-body { font-size: 0.82rem; line-height: 1.65; margin-bottom: 0.55rem; }
.pgal-expand {
  background: none; border: none; font-size: 0.73rem; font-weight: 600;
  cursor: pointer; padding: 0; margin-bottom: 0.65rem;
  display: flex; align-items: center; gap: 0.28rem;
  font-family: 'Inter', sans-serif; transition: opacity 0.2s;
}
.pgal-expand:hover { opacity: 0.7; }

/* ── Promo code ── */
.pgal-code-wrap { border-radius: 10px; padding: 0.65rem 0.8rem 0.55rem; margin: 0.5rem 0 0.7rem; }
.pgal-code-label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.35rem; opacity: 0.7;
}
.pgal-code-pill {
  display: inline-flex; align-items: center;
  border-radius: 8px; overflow: hidden; border: 1.5px solid currentColor; max-width: 100%;
}
.pgal-code-val {
  font-family: 'Courier New', monospace;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.28rem 0.7rem;
}
.pgal-copy {
  border: none; border-left: 1.5px solid currentColor; font-size: 0.8rem; cursor: pointer;
  padding: 0.28rem 0.55rem; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s; font-family: inherit;
}
.pgal-copy:hover { opacity: 0.72; }
.pgal-copy.pgal-copied { opacity: 1; }
.pgal-code-expiry { display: block; font-size: 0.66rem; margin-top: 0.28rem; opacity: 0.62; }

/* ── Expiry + CTA ── */
.pgal-expires { display: block; font-size: 0.7rem; opacity: 0.62; margin-bottom: 0.7rem; }
.pgal-expires i { margin-right: 0.28rem; }
.pgal-cta {
  display: inline-flex; align-items: center; gap: 0.42rem;
  padding: 0.52rem 1.15rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; text-decoration: none;
  font-family: 'Inter', sans-serif; letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pgal-cta:hover { transform: translateY(-2px); }
.pgal-cta i { font-size: 0.68rem; }

/* ============================
   COLOUR THEMES
   ============================ */
.pgal-gold .pgal-header       { background: linear-gradient(135deg,#B07B08,#D9A50C,#E8BC18); color:#1A1200; }
.pgal-gold .pgal-body-wrap    { background: #FFFBEE; color: var(--text-dark); }
.pgal-gold .pgal-title        { color: #5A3D00; }
.pgal-gold .pgal-body         { color: var(--text-mid); }
.pgal-gold .pgal-expand       { color: #8A6200; }
.pgal-gold .pgal-code-wrap    { background:rgba(184,130,10,.1); border:1px solid rgba(184,130,10,.28); color:#7A5500; }
.pgal-gold .pgal-code-pill    { border-color:rgba(184,130,10,.55); }
.pgal-gold .pgal-copy         { background:rgba(184,130,10,.08); color:#7A5500; }
.pgal-gold .pgal-expires      { color:#7A6000; }
.pgal-gold .pgal-cta          { background:linear-gradient(135deg,#B07B08,#D9A50C); color:#fff; box-shadow:0 4px 14px rgba(180,130,10,.38); }
.pgal-gold .pgal-cta:hover    { box-shadow:0 8px 20px rgba(180,130,10,.52); }

.pgal-green .pgal-header      { background: linear-gradient(135deg,#3D4A2A,#5D7042); color:rgba(255,255,255,.95); }
.pgal-green .pgal-body-wrap   { background: #F3F8EE; color: var(--text-dark); }
.pgal-green .pgal-title       { color: var(--green-dark); }
.pgal-green .pgal-body        { color: var(--text-mid); }
.pgal-green .pgal-expand      { color: var(--green-dark); }
.pgal-green .pgal-code-wrap   { background:rgba(79,93,57,.1); border:1px solid rgba(79,93,57,.28); color:var(--green-dark); }
.pgal-green .pgal-code-pill   { border-color:rgba(79,93,57,.5); }
.pgal-green .pgal-copy        { background:rgba(79,93,57,.08); color:var(--green-dark); }
.pgal-green .pgal-expires     { color:var(--green-dark); }
.pgal-green .pgal-cta         { background:var(--green-dark); color:#fff; box-shadow:0 4px 14px rgba(79,93,57,.4); }
.pgal-green .pgal-cta:hover   { box-shadow:0 8px 20px rgba(79,93,57,.55); }

.pgal-terracotta .pgal-header     { background: linear-gradient(135deg,#A84828,#D06840); color:rgba(255,255,255,.97); }
.pgal-terracotta .pgal-body-wrap  { background: #FFF5EF; color: var(--text-dark); }
.pgal-terracotta .pgal-title      { color: #7A2E12; }
.pgal-terracotta .pgal-body       { color: var(--text-mid); }
.pgal-terracotta .pgal-expand     { color: #A84828; }
.pgal-terracotta .pgal-code-wrap  { background:rgba(168,72,40,.09); border:1px solid rgba(168,72,40,.25); color:#8A3A1A; }
.pgal-terracotta .pgal-code-pill  { border-color:rgba(168,72,40,.5); }
.pgal-terracotta .pgal-copy       { background:rgba(168,72,40,.08); color:#8A3A1A; }
.pgal-terracotta .pgal-expires    { color:#8A3A1A; }
.pgal-terracotta .pgal-cta        { background:linear-gradient(135deg,#A84828,#D06840); color:#fff; box-shadow:0 4px 14px rgba(168,72,40,.38); }
.pgal-terracotta .pgal-cta:hover  { box-shadow:0 8px 20px rgba(168,72,40,.52); }

.pgal-midnight .pgal-header     { background: linear-gradient(135deg,#0D1520,#1E2D40); color:rgba(255,255,255,.92); }
.pgal-midnight .pgal-body-wrap  { background: #1A2535; color:rgba(255,255,255,.85); }
.pgal-midnight .pgal-title      { color: #E8C87A; }
.pgal-midnight .pgal-body       { color: rgba(255,255,255,.72); }
.pgal-midnight .pgal-expand     { color: #C8A840; }
.pgal-midnight .pgal-code-wrap  { background:rgba(200,168,64,.12); border:1px solid rgba(200,168,64,.28); color:#E8C87A; }
.pgal-midnight .pgal-code-pill  { border-color:rgba(200,168,64,.6); }
.pgal-midnight .pgal-copy       { background:rgba(200,168,64,.1); color:#E8C87A; }
.pgal-midnight .pgal-expires    { color:rgba(200,168,64,.72); }
.pgal-midnight .pgal-cta        { background:linear-gradient(135deg,#B07B08,#D9A50C); color:#1A1200; box-shadow:0 4px 14px rgba(180,130,10,.35); }
.pgal-midnight .pgal-cta:hover  { box-shadow:0 8px 20px rgba(180,130,10,.5); }

/* ── Mobile: full width at bottom ── */
@media (max-width: 600px) {
  #promo-stack { left: 0; right: 0; width: 100%; max-width: 100%; border-radius: 14px 14px 0 0; }
  #promo-stack.pgal-expanded .pgal-cards-area { max-height: 55vh; }
}

