:root {
    --lemon-yellow:  #F4D03F;
    --lemon-deep:    #E8A91C;
    --lemon-soft:    #FBE89A;
    --ink-black:     #1A1A1A;
    --ink-soft:      #3D3D3D;
    --paper-white:   #FEFCF7;
    --peel-pale:     #FFF8DC;
    --pith-gray:     #6B6B6B;
    --zest-line:     #E8E2D0;
    --leaf-green:    #2D4A2B;
    --font-display: 'Cormorant Garamond', serif;
    --font-script:  'Allura', cursive;
    --font-bold:    'Archivo Black', sans-serif;
    --font-sans:    'Inter', system-ui, sans-serif;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 88px; }
  body { margin: 0; background: var(--paper-white); color: var(--ink-black); font-family: var(--font-sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; }

  /* Type system */
  .eyebrow { font: 500 0.72rem/1 var(--font-sans); letter-spacing: 0.28em; text-transform: uppercase; color: var(--lemon-deep); }
  .eyebrow-dark { color: var(--ink-soft); }
  h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--ink-black); letter-spacing: -0.005em; margin: 0; }
  h1 { font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.0; font-weight: 300; }
  h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.05; font-weight: 400; }
  h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.2; font-weight: 500; }
  h4 { font-size: 1.1rem; font-weight: 600; }
  .script { font-family: var(--font-script); font-weight: 400; color: var(--lemon-deep); font-size: 1.6em; line-height: 0.9; vertical-align: -0.05em; }
  p { margin: 0 0 1em; color: var(--ink-soft); }
  .body-lg { font-size: 1.125rem; line-height: 1.7; }
  .caption { font-size: 0.875rem; color: var(--pith-gray); }

  .container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 640px) { .container { padding: 0 20px; } }

  /* === Buttons === */
  .btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; font: 500 0.92rem/1 var(--font-sans); letter-spacing: 0.04em; cursor: pointer; transition: all 280ms ease; border: 1.5px solid transparent; text-decoration: none; padding: 16px 32px; }
  .btn-primary { background: var(--ink-black); color: var(--paper-white); border-color: var(--ink-black); }
  .btn-primary:hover { background: var(--lemon-deep); border-color: var(--lemon-deep); color: var(--ink-black); }
  .btn-yellow { background: var(--lemon-yellow); color: var(--ink-black); border-color: var(--lemon-yellow); }
  .btn-yellow:hover { background: var(--lemon-deep); border-color: var(--lemon-deep); }
  .btn-ghost { border: 1.5px solid var(--ink-black); color: var(--ink-black); background: transparent; }
  .btn-ghost:hover { background: var(--ink-black); color: var(--paper-white); }
  .btn-link { color: var(--ink-black); padding: 6px 0; font: 500 0.92rem var(--font-sans); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; display: inline-flex; gap: 10px; align-items: center; border-bottom: 1px solid var(--zest-line); }
  .btn-link:hover { border-bottom-color: var(--lemon-deep); color: var(--lemon-deep); }
  .btn-link svg { transition: transform 250ms ease; }
  .btn-link:hover svg { transform: translateX(4px); }

  /* === Header === */
  .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(254,252,247,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--zest-line); transition: all 300ms ease; }
  .header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; max-width: 1440px; margin: 0 auto; gap: 24px; }
  .logo-block { display: inline-flex; align-items: center; gap: 14px; }
  .logo-link { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo-link img { height: 56px; width: auto; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
  .logo-text .nm { font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; color: var(--ink-black); letter-spacing: 0.01em; }

  /* Hotels-tag dropdown trigger (the hanging luggage tag) */
  .hotel-tag-trigger { position: relative; margin-left: 4px; padding: 14px 20px 10px; background: var(--paper-white); border: 1px solid var(--zest-line); border-radius: 999px 999px 6px 6px; cursor: pointer; transition: transform 350ms cubic-bezier(.34,1.56,.64,1); transform-origin: top center; box-shadow: 0 4px 10px -4px rgba(0,0,0,0.08); display: inline-flex; flex-direction: column; align-items: center; gap: 4px; line-height: 1; min-width: 140px; }
  .hotel-tag-trigger::before { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; border: 1.4px solid var(--lemon-deep); background: var(--paper-white); }
  .hotel-tag-trigger::after { content: ""; position: absolute; top: -16px; left: 50%; width: 1px; height: 16px; background: var(--lemon-deep); opacity: 0.5; }
  .hotel-tag-trigger:hover { transform: rotate(-2deg); }
  .hotel-tag-trigger.open { transform: rotate(0deg) translateY(2px); border-color: var(--lemon-deep); }
  .hotel-tag-trigger .ht-eyb { font: 600 0.58rem/1 var(--font-sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--lemon-deep); margin-top: 8px; }
  .hotel-tag-trigger .ht-lbl { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--ink-black); display: inline-flex; align-items: center; gap: 6px; }
  .hotel-tag-trigger .ht-lbl svg { transition: transform 250ms ease; }
  .hotel-tag-trigger.open .ht-lbl svg { transform: rotate(180deg); }

  /* The dropdown panel — anchored to header bottom, fixed width */
  .hotel-dd { position: absolute; top: calc(100% + 14px); left: 24px; width: 720px; max-width: calc(100vw - 48px); background: var(--paper-white); border: 1px solid var(--zest-line); border-radius: 24px; box-shadow: 0 24px 60px -20px rgba(26,26,26,0.25); padding: 32px; z-index: 110; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 250ms ease, transform 250ms ease, visibility 250ms; }
  .hotel-dd.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .hotel-dd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hotel-dd-card { display: flex; align-items: center; gap: 16px; padding: 14px; border-radius: 999px; text-decoration: none; color: inherit; transition: background 220ms ease; cursor: pointer; }
  .hotel-dd-card:hover { background: var(--peel-pale); }
  .hotel-dd-card .circle-thumb { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
  .hotel-dd-card .circle-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .hotel-dd-card .meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .hotel-dd-card .meta .stamp { font: 600 0.62rem/1 var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--lemon-deep); }
  .hotel-dd-card .meta .nm { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--ink-black); line-height: 1.1; }
  .hotel-dd-card .meta .loc { font-size: 0.78rem; color: var(--pith-gray); }
  .hotel-dd-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--zest-line); gap: 16px; flex-wrap: wrap; }
  .hotel-dd-foot .note { font-size: 0.85rem; color: var(--pith-gray); }
  @media (max-width: 900px) { .hotel-dd { width: min(560px, calc(100vw - 40px)); } .hotel-dd-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .logo-text { display: none; } .hotel-tag-trigger { display: none; } .hotel-dd-grid { grid-template-columns: 1fr; } }
  .nav-list { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
  .nav-link { color: var(--ink-soft); font: 500 0.85rem/1 var(--font-sans); text-decoration: none; cursor: pointer; padding: 10px 0; position: relative; }
  .nav-link::after { content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 5px; background: var(--lemon-yellow); border-radius: 999px 999px 0 0; transform: translateX(-50%); transition: width 220ms ease; }
  .nav-link:hover { color: var(--ink-black); }
  .nav-link:hover::after { width: 28px; }
  @media (max-width: 1100px) { .nav-list { display: none; } }
  .menu-btn { display: none; background: transparent; border: none; cursor: pointer; padding: 8px; }
  @media (max-width: 1100px) { .menu-btn { display: block; } }

  /* === SHAPE LANGUAGE === */
  /* The Circle: just a circle, used everywhere */
  .circle { border-radius: 50%; overflow: hidden; }
  .circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
  .circle:hover img { transform: scale(1.04) rotate(2deg); }

  /* The Arch: rectangle with one fully-rounded short edge (top) */
  .arch { border-radius: 999px 999px 12px 12px; overflow: hidden; }
  .arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
  .arch:hover img { transform: scale(1.04); }

  /* === HERO === */
  .hero { position: relative; min-height: 100vh; padding: 120px 0 60px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
  .hero-citrus { position: absolute; right: -180px; top: 60px; width: 720px; height: 720px; opacity: 0.18; pointer-events: none; z-index: 0; animation: slowSpin 80s linear infinite; }
  @keyframes slowSpin { to { transform: rotate(360deg); } }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; max-width: 1320px; margin: 0 auto; padding: 0 40px; width: 100%; }
  .hero-text .eyebrow { display: block; margin-bottom: 24px; }
  .hero-text h1 { margin-bottom: 28px; max-width: 14ch; }
  .hero-text h1 .script { display: block; margin-top: -8px; font-size: 1.4em; color: var(--lemon-deep); }
  .hero-text .lead { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.4; color: var(--ink-soft); font-weight: 300; max-width: 38ch; margin-bottom: 40px; }
  .hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 56px; }
  .hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
  .hero-stats > div { display: flex; flex-direction: column; gap: 6px; }
  .hero-stats .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; line-height: 1; color: var(--ink-black); }
  .hero-stats .lbl { font: 500 0.72rem/1.3 var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--pith-gray); }
  .hero-disc { position: relative; aspect-ratio: 1; max-width: 520px; margin: 0 auto; }
  .hero-disc .ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--lemon-yellow); }
  .hero-disc .disc { position: absolute; inset: 18px; border-radius: 50%; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(26,26,26,0.25); }
  .hero-disc .disc img { width: 100%; height: 100%; object-fit: cover; }
  .hero-disc .badge { position: absolute; top: 24px; right: -8px; width: 130px; height: 130px; }
  .hero-disc .badge svg { width: 100%; height: 100%; animation: slowSpin 30s linear infinite; }
  .hero-disc .badge-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 2px; color: var(--ink-black); }
  .hero-disc .badge-inner .since { font: 600 0.6rem/1 var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; }
  .hero-disc .badge-inner .yr { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; line-height: 1; }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } .hero { padding: 100px 0 60px; } .hero-disc { max-width: 380px; } }

  /* === BOOKING TRAY === */
  .booking { padding: 60px 0 80px; }
  .booking-tray { background: var(--ink-black); color: var(--paper-white); border-radius: 999px 999px 24px 24px; padding: 56px 56px 40px; position: relative; max-width: 1240px; margin: 0 auto; box-shadow: 0 40px 80px -30px rgba(26,26,26,0.4); }
  .booking-tray::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--lemon-yellow); border-radius: 999px; }
  .booking-tray .head { text-align: center; margin-bottom: 32px; }
  .booking-tray .head .eyebrow { color: var(--lemon-yellow); }
  .booking-tray .head h3 { color: var(--paper-white); font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-top: 8px; }
  .booking-tray .head h3 .script { color: var(--lemon-yellow); }
  .b-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr auto; gap: 24px; align-items: end; }
  .b-field { display: flex; flex-direction: column; gap: 6px; }
  .b-field label { font: 500 0.68rem/1 var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(254,252,247,0.55); }
  .b-field input, .b-field select { border: none; border-bottom: 1px solid rgba(254,252,247,0.25); background: transparent; padding: 10px 0; font: 400 1rem var(--font-sans); color: var(--paper-white); outline: none; }
  .b-field input:focus, .b-field select:focus { border-bottom-color: var(--lemon-yellow); }
  .b-field select { background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23F4D03F' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 4px center; padding-right: 22px; appearance: none; }
  .b-field option { color: var(--ink-black); }
  .b-row button { background: var(--lemon-yellow); color: var(--ink-black); border: none; border-radius: 999px; padding: 16px 32px; font: 600 0.92rem var(--font-sans); cursor: pointer; transition: background 200ms; }
  .b-row button:hover { background: var(--paper-white); }
  .booking-tray .meta { display: flex; gap: 28px; justify-content: center; margin-top: 28px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(254,252,247,0.1); }
  .booking-tray .meta span { font-size: 0.82rem; color: rgba(254,252,247,0.7); display: inline-flex; align-items: center; gap: 8px; }
  .booking-tray .meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lemon-yellow); }
  @media (max-width: 1024px) { .b-row { grid-template-columns: 1fr 1fr; } .booking-tray { padding: 48px 36px 36px; border-radius: 60px 60px 24px 24px; } }
  @media (max-width: 600px) { .b-row { grid-template-columns: 1fr; } .booking-tray { padding: 40px 28px 28px; } .b-row button { width: 100%; justify-content: center; } }

  section { padding: 100px 0; position: relative; }
  .section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 64px; max-width: 800px; }
  .section-head.center { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
  .section-head .lead { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; color: var(--ink-soft); font-weight: 300; max-width: 56ch; margin-top: 8px; }

  /* === ABOUT — split with full disc === */
  .about { background: var(--peel-pale); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-disc-wrap { position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto; }
  .about-disc { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; }
  .about-disc img { width: 100%; height: 100%; object-fit: cover; }
  .about-disc-wrap::before, .about-disc-wrap::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid var(--lemon-deep); pointer-events: none; }
  .about-disc-wrap::before { inset: -20px; opacity: 0.5; }
  .about-disc-wrap::after { inset: -40px; opacity: 0.25; }
  .about-text h2 { margin: 14px 0 24px; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--zest-line); }
  .about-stats > div { display: flex; flex-direction: column; gap: 6px; }
  .about-stats .num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--ink-black); line-height: 1; }
  .about-stats .lbl { font: 500 0.7rem/1.3 var(--font-sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--pith-gray); }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } .about-disc-wrap { max-width: 360px; } }

  /* === HOTELS — postcards (circle + arch) === */
  .hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
  .hotel-card { display: flex; flex-direction: column; align-items: center; text-align: center; cursor: pointer; gap: 22px; transition: transform 350ms ease; text-decoration: none; }
  .hotel-card:hover { transform: translateY(-6px); }
  .hotel-card .arch { width: 100%; aspect-ratio: 3/4; }
  .hotel-card .stamp { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: var(--lemon-yellow); border-radius: 999px; font: 600 0.72rem var(--font-sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-black); margin-top: -36px; z-index: 2; position: relative; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
  .hotel-card .stamp::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ink-black); }
  .hotel-card h3 { font-size: 1.5rem; font-weight: 500; }
  .hotel-card .loc { font: 400 0.92rem/1.5 var(--font-sans); color: var(--pith-gray); }
  .hotel-card .price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-black); margin-top: 4px; font-style: italic; }
  @media (max-width: 900px) { .hotels-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .hotels-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

  /* === ROOMS — keychain medallions === */
  .rooms { background: var(--ink-black); color: var(--paper-white); position: relative; overflow: hidden; }
  .rooms::before { content: ""; position: absolute; left: -200px; bottom: -200px; width: 500px; height: 500px; background: radial-gradient(circle at center, var(--lemon-yellow) 0%, transparent 70%); opacity: 0.12; pointer-events: none; }
  .rooms .section-head h2, .rooms .section-head .lead { color: var(--paper-white); }
  .rooms .section-head .lead { color: rgba(254,252,247,0.7); }
  .rooms .eyebrow { color: var(--lemon-yellow); }
  .rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .room-card { display: flex; flex-direction: column; align-items: center; gap: 0; text-decoration: none; color: inherit; cursor: pointer; }
  .room-medallion { width: 64px; height: 64px; border-radius: 50%; background: var(--lemon-yellow); display: flex; align-items: center; justify-content: center; color: var(--ink-black); font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; position: relative; z-index: 2; box-shadow: 0 0 0 6px var(--ink-black), 0 0 0 7px rgba(244,208,63,0.3); }
  .room-medallion::after { content: ""; position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); width: 1px; height: 22px; background: var(--lemon-yellow); }
  .room-card .arch { width: 100%; aspect-ratio: 3/4; margin-top: 0; }
  .room-card .arch img { transition: transform 700ms ease; }
  .room-card:hover .arch img { transform: scale(1.04); }
  .room-card .body { padding-top: 22px; text-align: center; width: 100%; }
  .room-card h3 { color: var(--paper-white); font-size: 1.3rem; font-weight: 500; margin-bottom: 4px; }
  .room-card .from { font-family: var(--font-display); font-style: italic; color: var(--lemon-yellow); font-size: 1rem; margin-bottom: 6px; }
  .room-card .desc { font-size: 0.85rem; color: rgba(254,252,247,0.65); line-height: 1.55; }
  @media (max-width: 1000px) { .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 24px; } }
  @media (max-width: 540px) { .rooms-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } }

  /* === DINING — round plate with garnish === */
  .dining { background: var(--paper-white); }
  .dining-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .plate-wrap { position: relative; aspect-ratio: 1; max-width: 540px; margin: 0 auto; }
  .plate-rim { position: absolute; inset: 0; border-radius: 50%; border: 12px solid var(--paper-white); background: var(--peel-pale); box-shadow: 0 0 0 1px var(--zest-line), 0 30px 60px -20px rgba(26,26,26,0.2); }
  .plate-img { position: absolute; inset: 28px; border-radius: 50%; overflow: hidden; }
  .plate-img img { width: 100%; height: 100%; object-fit: cover; }
  .garnish { position: absolute; width: 90px; height: 90px; opacity: 0.85; }
  .garnish.g1 { top: -28px; right: 40px; transform: rotate(-20deg); }
  .garnish.g2 { bottom: -10px; left: 20px; transform: rotate(120deg); }
  .garnish.g3 { top: 50%; right: -36px; transform: translateY(-50%) rotate(-90deg); width: 70px; height: 70px; }
  .dining-text h2 { margin-bottom: 24px; }
  .dining-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
  .dining-list li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding-bottom: 18px; border-bottom: 1px solid var(--zest-line); }
  .dining-list li:last-child { border-bottom: none; }
  .dining-list .ic { width: 56px; height: 56px; border-radius: 50%; background: var(--lemon-soft); display: flex; align-items: center; justify-content: center; color: var(--ink-black); }
  .dining-list h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin: 0 0 4px; color: var(--ink-black); }
  .dining-list p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
  @media (max-width: 900px) { .dining-grid { grid-template-columns: 1fr; gap: 48px; } .plate-wrap { max-width: 360px; } }

  /* === EXPERIENCES — luggage tags === */
  .exp { background: var(--peel-pale); }
  .exp-string { position: absolute; top: 92px; left: 0; right: 0; height: 1px; background: var(--lemon-deep); opacity: 0.4; z-index: 0; }
  .exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
  .tag { background: var(--paper-white); border: 1px solid var(--zest-line); padding: 36px 22px 26px; display: flex; flex-direction: column; gap: 14px; cursor: pointer; transition: transform 350ms ease; text-decoration: none; color: inherit; position: relative; box-shadow: 0 6px 16px -8px rgba(0,0,0,0.08); border-radius: 999px 999px 4px 4px; }
  .tag:hover { transform: translateY(4px) rotate(-1deg); }
  .tag:nth-child(2):hover { transform: translateY(4px) rotate(1deg); }
  .tag:nth-child(3):hover { transform: translateY(4px) rotate(-1deg); }
  .tag::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--peel-pale); border: 1.5px solid var(--lemon-deep); z-index: 2; }
  .tag::after { content: ""; position: absolute; top: -36px; left: 50%; width: 1px; height: 36px; background: var(--lemon-deep); opacity: 0.5; }
  .tag .arch { width: 100%; aspect-ratio: 4/5; margin-top: 14px; }
  .tag h3 { font-size: 1.2rem; font-weight: 500; }
  .tag .meta { font: 500 0.7rem/1.3 var(--font-sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--lemon-deep); }
  .tag p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
  @media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .exp-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; } .exp-string { display: none; } }

  /* === WEDDING — interlocking rings === */
  .wed { background: var(--paper-white); }
  .wed-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  .rings-wrap { position: relative; aspect-ratio: 1.4/1; max-width: 540px; margin: 0 auto; }
  .ring-l, .ring-r { position: absolute; top: 50%; transform: translateY(-50%); width: 56%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(26,26,26,0.25); }
  .ring-l { left: 0; z-index: 2; }
  .ring-r { right: 0; z-index: 1; }
  .ring-l img, .ring-r img { width: 100%; height: 100%; object-fit: cover; }
  .rings-wrap::before { content: ""; position: absolute; inset: 0; border: 1px solid var(--lemon-deep); border-radius: 50%; opacity: 0.2; left: 22%; right: 22%; }
  .wed h2 { margin-bottom: 22px; }
  .wed .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
  @media (max-width: 900px) { .wed-grid { grid-template-columns: 1fr; gap: 48px; } }

  /* === MEETINGS — full bleed arch with overlay === */
  .meet { padding: 0; }
  .meet-arch { position: relative; height: 600px; overflow: hidden; border-radius: 999px 999px 0 0; max-width: 1320px; margin: 100px auto 0; }
  .meet-arch img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
  .meet-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center; padding: 0 40px 80px; color: var(--paper-white); }
  .meet-content .eyebrow { color: var(--lemon-yellow); }
  .meet-content h2 { color: var(--paper-white); margin: 14px 0 18px; max-width: 18ch; }
  .meet-content p { color: rgba(254,252,247,0.85); max-width: 50ch; margin-bottom: 28px; font-size: 1.08rem; line-height: 1.6; }
  .meet-stats { display: flex; gap: 56px; padding-top: 28px; border-top: 1px solid rgba(254,252,247,0.25); width: 100%; max-width: 720px; justify-content: center; margin-top: 20px; }
  .meet-stats > div { display: flex; flex-direction: column; gap: 4px; align-items: center; }
  .meet-stats .num { font-family: var(--font-display); font-size: 2rem; color: var(--paper-white); font-weight: 400; }
  .meet-stats .lbl { font: 500 0.7rem var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: rgba(254,252,247,0.7); }
  @media (max-width: 600px) { .meet-arch { height: 480px; border-radius: 60px 60px 0 0; } .meet-stats { gap: 28px; } }

  /* === GALLERY — film strip === */
  .gallery { padding: 100px 0 140px; }
  .film-track { display: flex; gap: 20px; padding: 24px 0; overflow-x: auto; scroll-snap-type: x mandatory; transform: rotate(-1.5deg); margin: 0 -32px; padding-left: 64px; padding-right: 64px; position: relative; }
  .film-track::before, .film-track::after { content: ""; position: absolute; left: 0; right: 0; height: 12px; background: repeating-linear-gradient(90deg, var(--ink-black) 0 8px, transparent 8px 24px); pointer-events: none; }
  .film-track::before { top: 4px; }
  .film-track::after { bottom: 4px; }
  .film-track::-webkit-scrollbar { height: 0; display: none; }
  .film-frame { flex: 0 0 220px; aspect-ratio: 1; border-radius: 50%; overflow: hidden; scroll-snap-align: center; transition: transform 400ms ease; cursor: pointer; }
  .film-frame:hover { transform: scale(1.05) rotate(2deg); }
  .film-frame img { width: 100%; height: 100%; object-fit: cover; }

  /* === EDITORIAL QUOTE === */
  .pull-quote { background: var(--lemon-yellow); padding: 100px 0; text-align: center; position: relative; }
  .pull-quote .container { max-width: 880px; }
  .pull-quote h2 { font-family: var(--font-script); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; line-height: 1.05; color: var(--ink-black); margin-bottom: 20px; }
  .pull-quote .src { font: 500 0.78rem/1 var(--font-sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }

  /* === NEWSLETTER — wax seal === */
  .news { background: var(--peel-pale); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
  .news .seal { width: 120px; height: 120px; border-radius: 50%; background: var(--lemon-yellow); display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; box-shadow: 0 0 0 8px var(--peel-pale), 0 0 0 9px var(--lemon-deep); position: relative; }
  .news .seal::before, .news .seal::after { content: ""; position: absolute; left: 50%; top: 50%; width: 60px; height: 1px; background: var(--ink-black); opacity: 0.3; }
  .news .seal::before { transform: translate(-50%, -50%) rotate(60deg); }
  .news .seal::after { transform: translate(-50%, -50%) rotate(-60deg); }
  .news .seal-icon { width: 44px; height: 44px; color: var(--ink-black); position: relative; z-index: 2; }
  .news h2 { max-width: 22ch; margin: 0 auto 16px; }
  .news .lead { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--ink-soft); font-weight: 300; max-width: 48ch; margin: 0 auto 36px; }
  .news-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
  .news-form input { flex: 1; padding: 16px 22px; border: 1px solid var(--zest-line); background: var(--paper-white); border-radius: 999px; font: 400 0.95rem var(--font-sans); color: var(--ink-black); outline: none; }
  .news-form input:focus { border-color: var(--ink-black); }
  .news-form button { background: var(--ink-black); color: var(--paper-white); border: none; padding: 16px 28px; border-radius: 999px; font: 500 0.92rem var(--font-sans); cursor: pointer; }
  .news-form button:hover { background: var(--lemon-deep); color: var(--ink-black); }

  /* === FOOTER === */
  footer.site-footer { background: var(--ink-black); color: var(--paper-white); padding: 100px 0 0; position: relative; overflow: hidden; }
  .footer-citrus { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; opacity: 0.05; pointer-events: none; }
  .footer-grid { display: grid; grid-template-columns: 36fr 22fr 22fr 20fr; gap: 56px; padding-bottom: 64px; align-items: start; position: relative; z-index: 1; }
  .footer-brand img { height: 84px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
  .footer-brand p { color: rgba(254,252,247,0.7); font-size: 0.95rem; line-height: 1.7; max-width: 36ch; }
  .footer-brand .socials { display: flex; gap: 12px; margin-top: 24px; }
  .footer-brand .socials a { width: 40px; height: 40px; border: 1px solid rgba(254,252,247,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 220ms; }
  .footer-brand .socials a:hover { background: var(--lemon-yellow); color: var(--ink-black); border-color: var(--lemon-yellow); }
  .footer-col .col-title { font: 600 0.72rem/1 var(--font-sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--lemon-yellow); margin-bottom: 22px; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: rgba(254,252,247,0.8); text-decoration: none; font-size: 0.92rem; }
  .footer-col a:hover { color: var(--lemon-yellow); }
  .footer-contact .phone { font-family: var(--font-display); font-size: 1.5rem; color: var(--paper-white); margin-bottom: 8px; display: block; text-decoration: none; font-weight: 500; }
  .footer-contact .email { color: rgba(254,252,247,0.8); display: block; margin-bottom: 18px; text-decoration: none; font-size: 0.92rem; }
  .footer-contact .addr { color: rgba(254,252,247,0.6); font-size: 0.86rem; line-height: 1.7; max-width: 28ch; }
  .footer-bottom { border-top: 1px solid rgba(254,252,247,0.12); padding: 24px 0 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: rgba(254,252,247,0.6); position: relative; z-index: 1; }
  .footer-bottom .legal a { color: rgba(254,252,247,0.6); margin: 0 10px; text-decoration: none; }
  .footer-bottom .legal a:hover { color: var(--lemon-yellow); }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

  /* === FLOAT STACK & TOASTER === */
  .float-stack { position: fixed; right: 20px; bottom: 24px; z-index: 50; display: flex; flex-direction: column; gap: 12px; }
  .float-stack a { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink-black); color: var(--paper-white); text-decoration: none; box-shadow: 0 8px 20px rgba(0,0,0,0.18); transition: all 220ms; position: relative; }
  .float-stack a:hover { transform: scale(1.06); }
  .float-stack a.wa { background: #25D366; }
  .float-stack a.em { background: var(--lemon-yellow); color: var(--ink-black); }
  .float-stack a .lbl { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--ink-black); color: var(--paper-white); padding: 8px 14px; border-radius: 999px; font: 500 0.78rem var(--font-sans); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 200ms; }
  .float-stack a:hover .lbl { opacity: 1; }

  .offer-toaster { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 50; transition: all 350ms ease; }
  .offer-toaster.collapsed { width: 56px; }
  .offer-toaster.collapsed .o-tab { background: var(--lemon-yellow); padding: 24px 14px; border-radius: 0 999px 999px 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 10px; box-shadow: 4px 4px 14px rgba(0,0,0,0.1); }
  .offer-toaster.collapsed .o-tab .pct { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink-black); font-weight: 500; line-height: 1; }
  .offer-toaster.collapsed .o-tab .v { writing-mode: vertical-rl; transform: rotate(180deg); font: 600 0.7rem var(--font-sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-black); }
  .offer-toaster.expanded { width: 360px; }
  .offer-toaster.expanded .o-tab { display: none; }
  .offer-toaster.expanded .o-panel { background: var(--paper-white); padding: 32px 28px; border-radius: 0 24px 24px 0; box-shadow: 8px 8px 32px rgba(0,0,0,0.15); max-height: 80vh; overflow-y: auto; }
  .offer-toaster .close { position: absolute; top: 14px; right: 14px; background: transparent; border: none; cursor: pointer; font-size: 1.3rem; color: var(--ink-black); }
  .offer-toaster .o-panel h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin: 0 0 16px; padding-right: 20px; }
  .offer-toaster .ocard { padding: 14px; border: 1px solid var(--zest-line); border-radius: 12px; display: flex; gap: 14px; margin-bottom: 12px; align-items: flex-start; }
  .offer-toaster .ocard .img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
  .offer-toaster .ocard .body .pill { font: 600 0.66rem var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--lemon-deep); }
  .offer-toaster .ocard h5 { font-family: var(--font-display); font-size: 1rem; margin: 4px 0; font-weight: 500; }
  .offer-toaster .ocard p { font-size: 0.78rem; margin: 0 0 10px; color: var(--pith-gray); line-height: 1.45; }
  .offer-toaster .ocard button { background: var(--lemon-yellow); color: var(--ink-black); border: none; padding: 6px 14px; border-radius: 999px; font: 600 0.74rem var(--font-sans); cursor: pointer; }
  @media (max-width: 700px) { .offer-toaster { top: auto; bottom: 24px; left: 20px; transform: none; } .offer-toaster.collapsed { width: 56px; } .offer-toaster.collapsed .o-tab { padding: 14px 14px; border-radius: 50%; } .offer-toaster.collapsed .o-tab .v { display: none; } .offer-toaster.expanded { width: calc(100vw - 40px); max-width: 360px; } .offer-toaster.expanded .o-panel { border-radius: 16px; } }

  .toast { position: fixed; top: 100px; left: 50%; transform: translateX(-50%); background: var(--ink-black); color: var(--paper-white); padding: 12px 24px; border-radius: 999px; font: 500 0.88rem var(--font-sans); z-index: 200; opacity: 0; transition: opacity 200ms; pointer-events: none; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .toast.show { opacity: 1; }

  /* Respect user motion preference — disables non-essential motion without altering visible layout */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  /* Theme tweak overrides */
  body.theme-noir { --paper-white: #F5F5F1; --peel-pale: #EAE8E1; --ink-black: #0F0F0F; }
  body.theme-grove { --lemon-yellow: #C9D67A; --lemon-deep: #7A8B3A; --lemon-soft: #E5EDC4; --leaf-green: #2D4A2B; }
  body.font-archivo h1, body.font-archivo h2 { font-family: var(--font-bold); font-weight: 400; letter-spacing: -0.02em; line-height: 1.0; }

  /* === PRIME ROOM PAGE === */
  /* Breadcrumb */
  .crumb { padding: 120px 0 24px; }
  .crumb .container { display: flex; gap: 14px; align-items: center; font: 500 0.78rem var(--font-sans); color: var(--pith-gray); letter-spacing: 0.06em; }
  .crumb a { color: var(--pith-gray); text-decoration: none; }
  .crumb a:hover { color: var(--ink-black); }
  .crumb .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lemon-yellow); }
  .crumb .here { color: var(--ink-black); }

  /* Prime hero — large arch image with thumbs */
  .pr-hero { padding: 24px 0 80px; }
  .pr-hero .grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: end; }
  .pr-arch { aspect-ratio: 4/5; border-radius: 999px 999px 24px 24px; overflow: hidden; position: relative; box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25); }
  .pr-arch img { width: 100%; height: 100%; object-fit: cover; }
  .pr-side { display: flex; flex-direction: column; gap: 24px; }
  .pr-side .eyebrow { display: block; }
  .pr-side h1 { margin: 8px 0 16px; }
  .pr-side .lead { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4; color: var(--ink-soft); font-weight: 300; margin-bottom: 12px; }
  .pr-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
  .pr-thumb { aspect-ratio: 1; border-radius: 50%; overflow: hidden; }
  .pr-thumb img { width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px) { .pr-hero .grid { grid-template-columns: 1fr; } }

  /* Quick facts — circular badges row */
  .pr-facts { padding: 40px 0 60px; }
  .pr-facts .row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .fact { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 0 8px; position: relative; }
  .fact:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 30px; width: 1px; height: 60px; background: var(--zest-line); }
  .fact .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--peel-pale); display: flex; align-items: center; justify-content: center; color: var(--ink-black); }
  .fact .lbl { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink-black); }
  .fact .sub { font: 500 0.7rem var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--pith-gray); }
  @media (max-width: 900px) { .pr-facts .row { grid-template-columns: repeat(2, 1fr); gap: 32px; } .fact::after { display: none; } }

  /* Prime body — drop-cap article + sticky booking medallion */
  .pr-body { padding: 60px 0 100px; }
  .pr-body .grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
  .pr-body article p { font-size: 1.05rem; line-height: 1.85; }
  .pr-body article p:first-of-type::first-letter { font-family: var(--font-display); font-size: 4.4rem; line-height: 0.85; float: left; margin: 6px 12px 0 0; color: var(--lemon-deep); font-weight: 300; }
  .pr-body article p + p { margin-top: 14px; }
  .pr-body .pull { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; line-height: 1.4; color: var(--ink-black); margin: 36px 0; padding: 24px 0; border-top: 1px solid var(--zest-line); border-bottom: 1px solid var(--zest-line); }

  .booking-card { background: var(--ink-black); color: var(--paper-white); border-radius: 240px 240px 16px 16px; padding: 48px 32px 28px; position: sticky; top: 104px; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .booking-card .seal { width: 84px; height: 84px; border-radius: 50%; background: var(--lemon-yellow); display: flex; align-items: center; justify-content: center; color: var(--ink-black); font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 18px; box-shadow: 0 0 0 6px var(--ink-black), 0 0 0 7px rgba(244,208,63,0.35); }
  .booking-card .eyebrow { color: var(--lemon-yellow); }
  .booking-card h3 { color: var(--paper-white); margin: 8px 0 6px; font-size: 1.5rem; }
  .booking-card .from { font-family: var(--font-display); font-style: italic; color: var(--lemon-yellow); margin-bottom: 24px; font-size: 1.05rem; }
  .booking-card form, .booking-card { /* form is the card itself */ }
  .booking-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
  .booking-card label { display: flex; flex-direction: column; gap: 4px; text-align: left; width: 100%; }
  .booking-card label span { font: 500 0.66rem/1 var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: rgba(254,252,247,0.55); }
  .booking-card input, .booking-card select { border: none; border-bottom: 1px solid rgba(254,252,247,0.25); background: transparent; padding: 8px 0; font: 400 0.95rem var(--font-sans); color: var(--paper-white); outline: none; }
  .booking-card input:focus, .booking-card select:focus { border-bottom-color: var(--lemon-yellow); }
  .booking-card select { background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23F4D03F' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat right 4px center; padding-right: 22px; appearance: none; }
  .booking-card option { color: var(--ink-black); }
  .booking-card button { background: var(--lemon-yellow); color: var(--ink-black); border: none; border-radius: 999px; padding: 14px; font: 600 0.92rem var(--font-sans); cursor: pointer; margin-top: 8px; width: 100%; }
  .booking-card button:hover { background: var(--paper-white); }
  .booking-card .trust { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; width: 100%; font-size: 0.78rem; color: rgba(254,252,247,0.7); }
  .booking-card .trust div { display: flex; gap: 8px; align-items: center; justify-content: center; }
  .booking-card .trust div::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--lemon-yellow); }
  .booking-card > form { display: flex; flex-direction: column; gap: 12px; width: 100%; }
  @media (max-width: 900px) { .pr-body .grid { grid-template-columns: 1fr; } .booking-card { position: relative; top: auto; border-radius: 160px 160px 16px 16px; } }

  /* What's inside — two columns */
  .inside { padding: 100px 0; background: var(--peel-pale); }
  .inside .head { text-align: center; margin-bottom: 56px; }
  .inside .head h2 { margin-top: 14px; }
  .inside .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
  .inside .col h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
  .inside .col h3 .num { width: 40px; height: 40px; border-radius: 50%; background: var(--lemon-yellow); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 600; color: var(--ink-black); font-family: var(--font-sans); }
  .inside ul { list-style: none; padding: 0; margin: 0; }
  .inside li { padding: 14px 0 14px 20px; border-bottom: 1px solid var(--zest-line); position: relative; font-size: 0.95rem; color: var(--ink-soft); }
  .inside li::before { content: ""; position: absolute; left: 0; top: 22px; width: 6px; height: 6px; border-radius: 50%; background: var(--lemon-deep); }
  .inside li:last-child { border-bottom: none; }
  @media (max-width: 900px) { .inside .grid { grid-template-columns: 1fr; gap: 48px; } }

  /* Whirlpool — full-bleed arch */
  .whirl { padding: 0; }
  .whirl-arch { height: 600px; border-radius: 999px 999px 0 0; overflow: hidden; max-width: 1320px; margin: 120px auto 0; position: relative; }
  .whirl-arch img { width: 100%; height: 100%; object-fit: cover; }
  .whirl-cap { padding: 32px 40px 0; max-width: 1320px; margin: 0 auto; text-align: right; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--ink-soft); }
  @media (max-width: 600px) { .whirl-arch { height: 440px; border-radius: 60px 60px 0 0; } }

  /* Available at — circular property thumbs */
  .avail { padding: 120px 0; }
  .avail .head { text-align: center; margin-bottom: 56px; }
  .avail .head h2 { margin-top: 14px; }
  .avail .row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .pt { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; text-decoration: none; color: inherit; }
  .pt .circle { width: 100%; aspect-ratio: 1; }
  .pt h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
  .pt .from { font-family: var(--font-display); font-style: italic; color: var(--lemon-deep); font-size: 0.95rem; }
  @media (max-width: 900px) { .avail .row { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
  @media (max-width: 480px) { .avail .row { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; } }

  /* Other rooms — keychain medallions on dark */
  .others { background: var(--ink-black); color: var(--paper-white); padding: 120px 0; }
  .others .head { text-align: center; margin-bottom: 56px; }
  .others .head h2, .others .head .lead { color: var(--paper-white); }
  .others .head .lead { color: rgba(254,252,247,0.7); font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; font-weight: 300; max-width: 50ch; margin: 8px auto 0; }
  .others .eyebrow { color: var(--lemon-yellow); }
  .others-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { .others-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; gap: 48px; } }

  /* === CANDOLIM (PROPERTY) PAGE === */
  /* Two-row header variant — body.page-property opts in */
  body.page-property { /* page-scoping anchor */ }
  html:has(body.page-property) { scroll-padding-top: 140px; }
  body.page-property .header-top { display: flex; align-items: center; justify-content: space-between; padding: 12px 40px; max-width: 1440px; margin: 0 auto; gap: 24px; }
  body.page-property .logo-link img { height: 48px; }
  body.page-property .logo-text { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; }
  body.page-property .logo-text .parent { font: 500 0.62rem/1 var(--font-sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--pith-gray); }
  body.page-property .logo-text .place { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--ink-black); }
  body.page-property .logo-text .place .script { font-size: 1.2em; }
  body.page-property .header-cta { display: flex; gap: 14px; align-items: center; }
  body.page-property .header-cta .ph { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-black); text-decoration: none; }
  body.page-property .header-cta .ph:hover { color: var(--lemon-deep); }
  body.page-property .nav-row { border-top: 1px solid var(--zest-line); padding: 10px 40px; max-width: 1440px; margin: 0 auto; }
  body.page-property .nav-row .nav-list { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; justify-content: center; flex-wrap: wrap; }
  body.page-property .nav-row .nav-link { color: var(--ink-soft); font: 500 0.78rem/1 var(--font-sans); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 0; position: relative; }
  body.page-property .nav-row .nav-link::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 4px; background: var(--lemon-yellow); border-radius: 999px 999px 0 0; transform: translateX(-50%); transition: width 220ms ease; }
  body.page-property .nav-row .nav-link:hover::after, body.page-property .nav-row .nav-link.active::after { width: 24px; }
  body.page-property .nav-row .nav-link:hover { color: var(--ink-black); }
  @media (max-width: 1100px) { body.page-property .nav-row { display: none; } }
  @media (max-width: 600px) { body.page-property .header-cta .ph { display: none; } }

  /* Property hero variant — citrus disc on the LEFT, smaller and dimmer */
  body.page-property .hero { padding: 160px 0 80px; }
  body.page-property .hero-citrus { left: -150px; right: auto; top: 80px; width: 520px; height: 520px; opacity: 0.16; }
  body.page-property .hero-grid { grid-template-columns: 1fr 1.1fr; }
  body.page-property .hero-disc { max-width: 540px; }
  .hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
  .hero-pills .p { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid var(--zest-line); border-radius: 999px; font: 500 0.78rem var(--font-sans); color: var(--ink-soft); background: rgba(254,252,247,0.7); }
  .hero-pills .p::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--lemon-yellow); }

  /* Booking — locked tray for property page (5 columns instead of 6) */
  .locked { display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; background: rgba(244,208,63,0.15); border: 1px solid rgba(244,208,63,0.4); border-radius: 999px; font-family: var(--font-display); font-size: 0.95rem; color: var(--lemon-yellow); margin-top: 14px; }
  .locked::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lemon-yellow); }
  body.page-property .b-row { grid-template-columns: 1fr 1fr 1fr 1fr auto; }
  @media (max-width: 1024px) { body.page-property .b-row { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { body.page-property .b-row { grid-template-columns: 1fr; } }

  /* Accommodations on dark (property variant of rooms section) */
  .accom { background: var(--ink-black); color: var(--paper-white); padding: 100px 0; }
  .accom .section-head h2, .accom .section-head .lead { color: var(--paper-white); }
  .accom .section-head .lead { color: rgba(254,252,247,0.7); }
  .accom .eyebrow { color: var(--lemon-yellow); }
  .accom-link { text-align: center; margin-top: 48px; }

  /* Offers — three arches with image and overlay copy */
  .offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .offer { position: relative; aspect-ratio: 3/4; border-radius: 999px 999px 16px 16px; overflow: hidden; color: var(--paper-white); cursor: pointer; }
  .offer img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms ease; }
  .offer:hover img { transform: scale(1.06); }
  .offer::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85)); }
  .offer .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 28px; z-index: 2; }
  .offer .pill { display: inline-block; padding: 6px 14px; background: var(--lemon-yellow); color: var(--ink-black); border-radius: 999px; font: 600 0.7rem var(--font-sans); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
  .offer h3 { color: var(--paper-white); font-size: 1.6rem; margin-bottom: 8px; }
  .offer p { color: rgba(254,252,247,0.85); font-size: 0.92rem; margin-bottom: 14px; }
  .offer .links { display: flex; gap: 14px; align-items: center; }
  .offer .links button { background: var(--lemon-yellow); color: var(--ink-black); border: none; padding: 10px 18px; border-radius: 999px; font: 600 0.8rem var(--font-sans); cursor: pointer; }
  .offer .links a { color: rgba(254,252,247,0.85); font-size: 0.78rem; text-decoration: underline; }
  @media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

  /* Facilities — circular icon grid */
  .fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 32px; }
  .fac { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .fac .ic { width: 96px; height: 96px; border-radius: 50%; background: var(--lemon-soft); display: flex; align-items: center; justify-content: center; color: var(--leaf-green); position: relative; }
  .fac .ic::after { content: ""; position: absolute; top: 8px; right: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--lemon-yellow); }
  .fac h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
  .fac p { font-size: 0.92rem; max-width: 24ch; margin: 0; }
  @media (max-width: 900px) { .fac-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .fac-grid { grid-template-columns: 1fr; } }

  /* Location — compass with pin + dotted distance line */
  .loc { background: var(--peel-pale); }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .compass { position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto; border-radius: 50%; background: #FFF8DC; overflow: hidden; border: 2px solid var(--zest-line); box-shadow: 0 30px 60px -25px rgba(0,0,0,0.2); }
  .compass-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #A4D4E5 0 38%, var(--peel-pale) 38% 42%, var(--lemon-soft) 42% 100%); }
  .compass-rose { position: absolute; top: 18px; right: 18px; width: 60px; height: 60px; }
  .compass-pin { position: absolute; left: 55%; top: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 50%; background: var(--lemon-yellow); border: 4px solid var(--ink-black); z-index: 5; }
  .compass-pin::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 8px; height: 8px; border-radius: 50%; background: var(--ink-black); }
  .compass-line { position: absolute; left: 42%; top: 50%; width: 13%; height: 1px; border-top: 1.5px dashed var(--ink-black); z-index: 4; }
  .compass-dist { position: absolute; left: 42%; top: 46%; font-family: var(--font-display); font-style: italic; font-size: 0.9rem; color: var(--ink-black); transform: translateY(-100%); }
  .compass-lbl { position: absolute; font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--ink-black); }
  .compass-lbl.calangute { left: 30%; top: 18%; }
  .compass-lbl.beach { left: 8%; top: 52%; color: var(--leaf-green); }
  .compass-lbl.sinquerim { right: 14%; top: 78%; }
  .loc-text h2 { margin: 14px 0 24px; }
  .dist-list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
  .dist-list li { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--zest-line); }
  .dist-list li:last-child { border-bottom: none; }
  .dist-list .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--paper-white); display: flex; align-items: center; justify-content: center; color: var(--leaf-green); }
  .dist-list .nm { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-black); }
  .dist-list .v { font-family: var(--font-display); font-style: italic; color: var(--lemon-deep); font-size: 1.05rem; }
  @media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; gap: 48px; } .compass { max-width: 360px; } }

  /* Contact — two-col with form */
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  .contact-text .phone { font-family: var(--font-display); font-size: 2rem; color: var(--ink-black); text-decoration: none; display: block; margin: 14px 0 8px; font-weight: 500; }
  .contact-text .em { color: var(--ink-soft); text-decoration: none; display: block; margin-bottom: 24px; }
  .contact-text .addr { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }
  .contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-form label { display: flex; flex-direction: column; gap: 6px; }
  .contact-form label.full { grid-column: 1 / -1; }
  .contact-form span { font: 500 0.68rem/1 var(--font-sans); letter-spacing: 0.18em; text-transform: uppercase; color: var(--pith-gray); }
  .contact-form input, .contact-form textarea { border: none; border-bottom: 1px solid var(--zest-line); background: transparent; padding: 10px 0; font: 400 1rem var(--font-sans); color: var(--ink-black); outline: none; font-family: var(--font-sans); }
  .contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--ink-black); }
  .contact-form textarea { resize: vertical; min-height: 80px; }
  .contact-form button { grid-column: 1 / -1; justify-self: start; background: var(--ink-black); color: var(--paper-white); border: none; padding: 16px 36px; border-radius: 999px; font: 500 0.92rem var(--font-sans); cursor: pointer; }
  .contact-form button:hover { background: var(--lemon-deep); color: var(--ink-black); }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } .contact-form { grid-template-columns: 1fr; } }

  /* FAQs — circular dial accordion */
  .faqs { background: var(--paper-white); }
  .faq-list { max-width: 880px; margin: 0 auto; }
  .faq { border-bottom: 1px solid var(--zest-line); padding: 24px 0; cursor: pointer; }
  .faq summary { display: flex; justify-content: space-between; align-items: center; gap: 24px; list-style: none; cursor: pointer; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--ink-black); }
  .faq[open] summary h3 { color: var(--lemon-deep); }
  .faq .dial { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--ink-black); position: relative; flex-shrink: 0; transition: all 250ms ease; }
  .faq .dial::before, .faq .dial::after { content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink-black); }
  .faq .dial::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq .dial::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); transition: transform 250ms ease; }
  .faq[open] .dial { background: var(--lemon-yellow); border-color: var(--lemon-yellow); }
  .faq[open] .dial::after { transform: translate(-50%, -50%) rotate(90deg); }
  .faq .ans { padding-top: 16px; color: var(--ink-soft); line-height: 1.7; font-size: 0.98rem; max-width: 60ch; }

  /* Push toast below the taller two-row property header */
  body.page-property .toast { top: 140px; }

  /* === ROOMS SUMMARY (sub-page) === */
  /* Page-scoped: wider, paper-white background, room-card variant for light surface */
  body.page-rooms-summary .rooms-summary { padding: 60px 0 100px; }
  body.page-rooms-summary .rooms-summary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 40px; max-width: 1080px; margin: 0 auto; }
  body.page-rooms-summary .rs-card { display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px; align-items: start; text-decoration: none; color: inherit; padding: 18px; border: 1px solid var(--zest-line); border-radius: 24px; background: var(--paper-white); transition: transform 350ms ease, box-shadow 350ms ease; }
  body.page-rooms-summary .rs-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(0,0,0,0.18); }
  body.page-rooms-summary .rs-card .arch { aspect-ratio: 4/5; }
  body.page-rooms-summary .rs-card .rs-body { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }
  body.page-rooms-summary .rs-card .rs-body .medallion { width: 44px; height: 44px; border-radius: 50%; background: var(--lemon-yellow); color: var(--ink-black); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 6px; }
  body.page-rooms-summary .rs-card h3 { font-size: 1.45rem; font-weight: 500; }
  body.page-rooms-summary .rs-card .from { font-family: var(--font-display); font-style: italic; color: var(--lemon-deep); }
  body.page-rooms-summary .rs-card .desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
  body.page-rooms-summary .rs-card .more { margin-top: auto; font: 500 0.78rem var(--font-sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-black); display: inline-flex; gap: 8px; align-items: center; padding-top: 6px; }
  body.page-rooms-summary .rs-card:hover .more { color: var(--lemon-deep); }
  @media (max-width: 800px) { body.page-rooms-summary .rooms-summary-grid { grid-template-columns: 1fr; } body.page-rooms-summary .rs-card { grid-template-columns: 1fr; } }