/*    /* ════════════════════════════════════════════════════════
       DESIGN TOKENS
    ════════════════════════════════════════════════════════ */
    :root {
      --cream:        #f5f0eb;    /* warm page background */
      --parchment:    #ede6dc;    /* section alternates */
      --sand:         #c9b49a;    /* mid-tone beige */
      --sand-light:   #e8ddd0;    /* card bg / tints */
      --mocha:        #2b1f18;    /* dark text / headers */
      --mocha-mid:    #5c4033;    /* secondary text */
      --mocha-light:  #8a6e5e;    /* muted text */
      --accent:       #c9b49a;    /* buttons, borders */
      --accent-dark:  #9a876d;    /* button hover */
      --white:        #ffffff;
      --border:       rgba(201,180,154,0.35);

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --section-py:   110px;
      --radius:       16px;
      --radius-lg:    28px;
      --radius-pill:  999px;
      --shadow:       0 8px 48px rgba(43,31,24,0.10);
      --shadow-sm:    0 2px 20px rgba(43,31,24,0.07);
      --tr:           0.3s cubic-bezier(0.4,0,0.2,1);
    }

    /* ════════════════════════════════════════════════════════
       RESET & BASE
    ════════════════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--mocha);
      font-size: 15px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a   { color: inherit; text-decoration: none; }
    ul  { list-style: none; }
    button, input, select, textarea { font-family: inherit; font-size: inherit; }

    .section    { padding: var(--section-py) 0; }
    .container  { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

    /* Eyebrow label above headings */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--mocha-light);
      margin-bottom: 16px;
    }
    .eyebrow::before, .eyebrow::after {
      content: '';
      display: inline-block;
      width: 20px; height: 1px;
      background: var(--sand);
    }

    /* Display headings */
    .display {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.5px;
      color: var(--mocha);
    }

    /* Primary button */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 34px;
      border-radius: var(--radius-pill);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      border: none;
      cursor: pointer;
      transition: all var(--tr);
    }

    .btn-dark {
      background: var(--mocha);
      color: var(--cream);
      box-shadow: 0 4px 20px rgba(43,31,24,0.2);
    }
    .btn-dark:hover {
      background: var(--mocha-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(43,31,24,0.25);
    }

    .btn-outline {
      background: transparent;
      color: var(--mocha);
      border: 1.5px solid var(--sand);
    }
    .btn-outline:hover {
      background: var(--mocha);
      color: var(--cream);
      border-color: var(--mocha);
    }

    /* Scroll-reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* Decorative sparkle (✦) used inline */
    .spark { color: var(--sand); font-style: normal; }

    /* ════════════════════════════════════════════════════════
       NAVBAR
       Transparent on hero, switches to parchment on scroll.
       Mobile: slides in from right as full-screen overlay.
    ════════════════════════════════════════════════════════ */
    #nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 900;
      padding: 22px 0;
      background: transparent;
      transition: background var(--tr), padding var(--tr), box-shadow var(--tr);
    }
    #nav.scrolled {
      background: rgba(245,240,235,0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 var(--border);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
    }

    /* Brand / Logo */
    .nav-brand {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .nav-brand-name {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--mocha);
    }
    .nav-brand-tag {
      font-size: 0.6rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--mocha-light);
      margin-top: 1px;
    }

    /* If user adds logo image: */
    .nav-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
    }

    /* Desktop links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      margin-left: auto;
    }
    .nav-links a {
      font-size: 0.83rem;
      font-weight: 500;
      color: var(--mocha-mid);
      letter-spacing: 0.3px;
      position: relative;
      transition: color var(--tr);
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--sand);
      transition: width var(--tr);
    }
    .nav-links a:hover { color: var(--mocha); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--mocha) !important;
      color: var(--cream) !important;
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-size: 0.82rem !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--mocha-mid) !important; }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: auto;
      padding: 4px;
    }
    .ham span {
      display: block;
      width: 24px; height: 1.5px;
      background: var(--mocha);
      border-radius: 2px;
      transition: transform var(--tr), opacity var(--tr);
    }
    .ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity: 0; }
    .ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile overlay menu */
    .mob-menu {
      position: fixed;
      inset: 0;
      background: var(--cream);
      z-index: 800;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mob-menu.open { opacity: 1; pointer-events: all; }
    .mob-menu a {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--mocha);
      transition: color var(--tr);
    }
    .mob-menu a:hover { color: var(--mocha-light); }

    /* ════════════════════════════════════════════════════════
       HERO
       Full viewport. Cream bg with sandy geometric shapes.
       Two-column: left text, right arched image frame.
    ════════════════════════════════════════════════════════ */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    /* Large decorative circle top-right */
    #home::before {
      content: '';
      position: absolute;
      top: -160px; right: -160px;
      width: 620px; height: 620px;
      border-radius: 50%;
      background: var(--parchment);
      pointer-events: none;
    }

    /* Small circle bottom-left */
    #home::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: var(--sand-light);
      opacity: 0.5;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      animation: hIn 0.9s ease both;
    }

    @keyframes hIn {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* LUMINA AESTHETICS wordmark in hero */
    .hero-brand {
      font-family: var(--font-display);
      font-size: 0.72rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--mocha-light);
      margin-bottom: 20px;
      display: block;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 400;
      line-height: 1.06;
      letter-spacing: -1px;
      color: var(--mocha);
      margin-bottom: 10px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--mocha-mid);
    }

    /* Tagline pill */
    .tagline-pill {
      display: inline-block;
      background: var(--mocha);
      color: var(--cream);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 7px 20px;
      border-radius: var(--radius-pill);
      margin-bottom: 24px;
    }

    .hero-desc {
      font-size: 1rem;
      color: var(--mocha-light);
      font-weight: 300;
      max-width: 440px;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

    /* Right visual column */
    .hero-visual {
      position: relative;
      animation: hIn 0.9s 0.18s ease both;
    }

    /* Arched image frame (matches brochure arch motif) */
    .arch-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(160deg, var(--sand-light) 0%, var(--sand) 100%);
      position: relative;
      box-shadow: var(--shadow);
    }

    .arch-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .arch-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }
    /* Placeholder text when no image 
    .arch-placeholder {
      width: 100%; height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: rgba(43,31,24,0.35);
      font-size: 0.85rem;
      text-align: center;
      padding: 24px;
    }*/

    /* Floating badge */
    .hero-float {
      position: absolute;
      bottom: 36px; left: -36px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 18px 22px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 14px;
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-9px); }
    }

    .float-num {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--mocha);
      line-height: 1;
    }
    .float-label { font-size: 0.72rem; color: var(--mocha-light); margin-top: 2px; }

    /* ════════════════════════════════════════════════════════
       WHY CHOOSE US — trust strip
    ════════════════════════════════════════════════════════ */
    #why {
      background: var(--mocha);
      padding: 64px 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 32px 36px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .why-item:last-child { border-right: none; }

    .why-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .why-title {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--cream);
      margin-bottom: 5px;
    }

    .why-desc {
      font-size: 0.8rem;
      color: rgba(245,240,235,0.55);
      font-weight: 300;
      line-height: 1.65;
    }

    /* ════════════════════════════════════════════════════════
       ABOUT SECTION
    ════════════════════════════════════════════════════════ */
    #about { background: var(--parchment); }

    #about .container {
      display: flex;
      justify-content: center;
    }

    .about-grid {
      display: block;
      max-width: 700px;
      grid-template-columns: 1fr 1.1fr;
      gap: 88px;
      align-items: center;
    }

    /* Stacked image frames (mimics brochure layered photos) */
    .about-imgs {
      position: relative;
    }

    .about-img-main {
      width: 85%;
      aspect-ratio: 3/4;
      border-radius: 180px 180px var(--radius-lg) var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(160deg, #ddd0c0 0%, #c5ad95 100%);
      box-shadow: var(--shadow);
      margin-left: auto;
    }

    .about-img-main img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .about-img-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(43,31,24,0.3);
      font-size: 0.82rem;
      text-align: center;
      padding: 20px;
    }

    /* Small accent card bottom-left */
    .about-accent-card {
      position: absolute;
      bottom: -20px; left: 0;
      background: var(--mocha);
      color: var(--cream);
      border-radius: var(--radius);
      padding: 22px 26px;
      box-shadow: var(--shadow);
      width: 180px;
      animation: float 5s 1s ease-in-out infinite;
    }

    .aac-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 4px;
    }

    .aac-label { font-size: 0.72rem; color: rgba(245,240,235,0.65); }

    .about-title { font-size: clamp(2.4rem, 4vw, 3.5rem); margin-bottom: 20px; }

    .about-body {
      font-size: 0.96rem;
      color: var(--mocha-light);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 16px;
    }

    /* Feature checkmarks */
    .about-checks {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
      margin-bottom: 32px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: var(--mocha-mid);
    }

    .check-dot {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--mocha);
      color: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem;
      flex-shrink: 0;
    }

    /* ════════════════════════════════════════════════════════
       TREATMENTS SECTION
       4 cards in a 2×2 grid. Warm card backgrounds, arch
       icon motif at top of each card matching brochure style.
    ════════════════════════════════════════════════════════ */
    #treatments { background: var(--cream); }

    .treat-header { text-align: center; margin-bottom: 64px; }
    .treat-title  { font-size: clamp(2.4rem, 4vw, 3.5rem); }

    .treat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .t-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: transform var(--tr), box-shadow var(--tr);
      display: flex;
      flex-direction: column;
    }
    .t-card:hover {
      transform: translateY(-7px);
      box-shadow: var(--shadow);
    }

    /* Arched image strip at top */
    .t-card-img {
      width: 100%;
      height: 200px;
      background: linear-gradient(145deg, var(--sand-light), var(--sand));
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    /* Arch shape cut into bottom of image strip */
    .t-card-img::after {
      content: '';
      position: absolute;
      bottom: -30px; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 60px;
      border-radius: 50px 50px 0 0;
      background: var(--white);
    }

    .t-card-img-inner {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
    }

    .t-card-body { padding: 36px 32px 32px; flex: 1; display: flex; flex-direction: column; }

    .t-card-name {
      font-family: var(--font-display);
      font-size: 1.65rem;
      font-weight: 500;
      color: var(--mocha);
      margin-bottom: 14px;
      line-height: 1.2;
    }

    .t-card-desc {
      font-size: 0.88rem;
      color: var(--mocha-light);
      font-weight: 300;
      line-height: 1.8;
      margin-bottom: 22px;
      flex: 1;
    }

    .t-card-features {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 28px;
    }

    .t-feat {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      color: var(--mocha-mid);
    }

    .t-feat-line {
      width: 18px; height: 1px;
      background: var(--sand);
      flex-shrink: 0;
    }

    .t-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .t-time {
      font-size: 0.75rem;
      color: var(--mocha-light);
    }

    .t-book {
      background: var(--mocha);
      color: var(--cream);
      border: none;
      padding: 9px 22px;
      border-radius: var(--radius-pill);
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: background var(--tr);
      letter-spacing: 0.3px;
    }
    .t-book:hover { background: var(--mocha-mid); }

    /* ════════════════════════════════════════════════════════
       GALLERY
    ════════════════════════════════════════════════════════ */
      #gallery {
      display: none;
        }

    #gallery { background: var(--parchment); }

    .gallery-header { text-align: center; margin-bottom: 60px; }
    .gallery-title  { font-size: clamp(2.4rem, 4vw, 3.5rem); }

    .gallery-grid {
      columns: 3;
      column-gap: 20px;
    }

    .g-item {
      break-inside: avoid;
      margin-bottom: 20px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .g-tile {
      width: 100%;
      background: linear-gradient(145deg, var(--sand-light), var(--sand));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-style: italic;
      color: rgba(43,31,24,0.4);
      font-size: 0.9rem;
      transition: transform var(--tr);
      text-align: center;
      padding: 16px;
    }

    .g-item::after {
      content: '+';
      position: absolute;
      inset: 0;
      background: rgba(43,31,24,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--cream);
      opacity: 0;
      transition: opacity var(--tr);
    }
    .g-item:hover::after { opacity: 1; }
    .g-item:hover .g-tile { transform: scale(1.04); }

    /* Lightbox */
    .lb {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(43,31,24,0.88);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }
    .lb.open { display: flex; }
    .lb-box {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      max-width: 820px;
      width: 90%;
      animation: lbPop 0.28s ease;
    }
    @keyframes lbPop {
      from { transform: scale(0.88); opacity: 0; }
      to   { transform: scale(1);   opacity: 1; }
    }
    .lb-img {
      width: 100%;
      min-height: 380px;
      background: linear-gradient(145deg, var(--sand-light), var(--sand));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display);
      font-style: italic;
      color: var(--mocha-light);
      font-size: 1rem;
    }
    .lb-footer {
      padding: 20px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .lb-caption { font-size: 0.85rem; color: var(--mocha-mid); font-style: italic; }
    .lb-close {
      background: var(--mocha);
      color: var(--cream);
      border: none;
      padding: 8px 22px;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      cursor: pointer;
      transition: background var(--tr);
    }
    .lb-close:hover { background: var(--mocha-mid); }

    /* ════════════════════════════════════════════════════════
       TESTIMONIALS
    ════════════════════════════════════════════════════════ */
    #testimonials { background: var(--cream); }

    .testi-head { text-align: center; margin-bottom: 56px; }
    .testi-title { font-size: clamp(2.4rem, 4vw, 3.5rem); }

    .testi-viewport { overflow: hidden; }
    .testi-track    { display: flex; transition: transform 0.65s cubic-bezier(0.4,0,0.2,1); }
    .testi-slide    { min-width: 100%; display: flex; justify-content: center; }

    .testi-inner {
      max-width: 700px;
      background: var(--parchment);
      border-radius: var(--radius-lg);
      padding: 52px 56px;
      border: 1px solid var(--border);
      text-align: center;
      box-shadow: var(--shadow-sm);
    }

    .testi-stars { color: var(--sand); font-size: 1rem; letter-spacing: 4px; margin-bottom: 24px; }

    .testi-quote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--mocha);
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .testi-name { font-weight: 600; font-size: 0.85rem; color: var(--mocha); margin-bottom: 2px; }
    .testi-sub  { font-size: 0.75rem; color: var(--mocha-light); }

    .testi-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 36px;
    }
    .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--sand-light);
      border: 1px solid var(--sand);
      cursor: pointer;
      transition: background var(--tr), transform var(--tr);
    }
    .dot.on {
      background: var(--mocha);
      border-color: var(--mocha);
      transform: scale(1.4);
    }

    /* ════════════════════════════════════════════════════════
       BOOK AN APPOINTMENT
    ════════════════════════════════════════════════════════ */
    #book { background: var(--parchment); }

    .book-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 80px;
      align-items: start;
    }

    .book-title { font-size: clamp(2.4rem, 4vw, 3.5rem); margin-bottom: 18px; }

    .book-desc {
      font-size: 0.95rem;
      color: var(--mocha-light);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 36px;
    }

    .book-info { display: flex; flex-direction: column; gap: 18px; }

    .bi {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      font-size: 0.88rem;
      color: var(--mocha-mid);
    }

    .bi-icon {
      width: 40px; height: 40px;
      background: var(--mocha);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .bi-title { font-weight: 600; font-size: 0.78rem; color: var(--mocha); margin-bottom: 2px; }
    .bi-val   { font-weight: 300; color: var(--mocha-light); line-height: 1.5; }

    /* Form card */
    .book-form {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
    }

    .form-title {
      font-family: var(--font-display);
      font-size: 1.65rem;
      font-weight: 500;
      color: var(--mocha);
      margin-bottom: 28px;
    }

    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .f-col { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }

    .f-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--mocha);
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .f-input, .f-select, .f-textarea {
      width: 100%;
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 11px 16px;
      color: var(--mocha);
      font-size: 0.88rem;
      outline: none;
      transition: border-color var(--tr), box-shadow var(--tr);
    }
    .f-input::placeholder, .f-textarea::placeholder { color: var(--mocha-light); font-weight: 300; }
    .f-input:focus, .f-select:focus, .f-textarea:focus {
      border-color: var(--sand);
      box-shadow: 0 0 0 3px rgba(201,180,154,0.2);
    }
    .f-input.err, .f-select.err { border-color: #b84040; }
    .f-err { font-size: 0.7rem; color: #b84040; display: none; }
    .f-err.show { display: block; }
    .f-textarea { resize: vertical; min-height: 100px; }

    .f-submit {
      width: 100%;
      padding: 14px;
      margin-top: 6px;
      justify-content: center;
      letter-spacing: 0.5px;
    }

    .f-success { display: none; text-align: center; padding: 32px 20px; }
    .f-success.show { display: block; }
    .fs-icon { font-size: 2.8rem; margin-bottom: 14px; }
    .fs-title {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--mocha);
      margin-bottom: 8px;
    }
    .fs-sub { font-size: 0.85rem; color: var(--mocha-light); }

    /* ════════════════════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════════════════════ */
    #contact { background: var(--mocha); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .contact-title {
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      color: var(--cream);
      margin-bottom: 16px;
    }

    .contact-sub {
      font-size: 0.92rem;
      color: rgba(245,240,235,0.55);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 44px;
    }

    .c-items { display: flex; flex-direction: column; gap: 26px; }

    .c-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }

    .c-icon {
      width: 46px; height: 46px;
      border: 1px solid rgba(245,240,235,0.15);
      background: rgba(245,240,235,0.06);
      border-radius: var(--radius);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .c-label {
      font-size: 0.67rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--sand);
      margin-bottom: 4px;
    }

    .c-val {
      font-size: 0.9rem;
      color: rgba(245,240,235,0.8);
      font-weight: 300;
      line-height: 1.55;
    }

    .c-val a { color: inherit; text-decoration: underline; text-underline-offset: 3px; opacity: 0.7; transition: opacity var(--tr); }
    .c-val a:hover { opacity: 1; }

    /* Map placeholder */
    .map-box {
  width: 100%;
  height: 350px; /* or whatever fits your design */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #eee; /* fallback */
}
    /* Insta CTA strip */
    .insta-strip {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(245,240,235,0.1);
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .insta-handle {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-style: italic;
      color: var(--cream);
    }

    .insta-pill {
      background: var(--cream);
      color: var(--mocha);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 8px 20px;
      border-radius: var(--radius-pill);
    }

    /* ════════════════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════════════════ */
    footer {
      background: #1c1310;
      color: rgba(245,240,235,0.4);
      padding: 36px 0;
      font-size: 0.8rem;
    }

    .foot-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .foot-brand {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(245,240,235,0.7);
    }

    .foot-links { display: flex; gap: 22px; }
    .foot-links a { transition: color var(--tr); }
    .foot-links a:hover { color: var(--sand); }

    /* ════════════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .hero-grid, .about-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
      .hero-visual  { display: none; }
      .why-grid     { grid-template-columns: 1fr; }
      .why-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
      .treat-grid   { grid-template-columns: 1fr; }
      .gallery-grid { columns: 2; }
    }

    @media (max-width: 768px) {
      :root { --section-py: 72px; }
      .nav-links { display: none; }
      .ham       { display: flex; }
      .gallery-grid { columns: 1; }
      .testi-inner  { padding: 36px 26px; }
      .book-form    { padding: 32px 22px; }
      .f-row        { grid-template-columns: 1fr; }
      .insta-strip  { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 520px) {
      .hero-btns    { flex-direction: column; }
      .foot-inner   { flex-direction: column; text-align: center; }
    }

    