@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

    :root {
      --paper:   #FBFAF6;
      --white:   #FFFFFF;
      --ink:     #171717;
      --soft:    #4A4A4A;
      --muted:   #9A9A9A;
      --rule:    #E8E6DF;
      --sage:    #8A9E7B;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--paper);
      color: var(--ink);
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    /* ── TYPOGRAPHY ───────────────────────── */
    .t-display {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(3.5rem, 11vw, 9rem);
      line-height: 0.95;
      letter-spacing: -0.035em;
      color: var(--ink);
    }
    .t-section {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(2.25rem, 5.5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
    }
    .t-lede {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: clamp(1.25rem, 1.6vw, 1.4375rem);
      line-height: 1.65;
      color: var(--soft);
    }
    .t-body {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: 1.1875rem;
      line-height: 1.75;
      color: var(--soft);
    }
    .t-eyebrow {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 400;
      font-size: 0.6875rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .t-caption {
      font-family: 'Inter', system-ui, sans-serif;
      font-weight: 400;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: var(--muted);
    }
    .t-number {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(4rem, 9vw, 7rem);
      line-height: 1;
      color: var(--sage);
      letter-spacing: -0.02em;
    }

    /* ── LAYOUT ───────────────────────── */
    .container {
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }
    @media (min-width: 768px) {
      .container { padding: 0 64px; }
    }

    .section {
      padding: 80px 0;
    }
    @media (min-width: 768px) {
      .section { padding: 120px 0; }
    }

    .rule {
      display: block;
      width: 32px;
      height: 1px;
      background: var(--sage);
    }

    /* ── NAV ───────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 24px;
      transition: padding 300ms ease, background 300ms ease, box-shadow 300ms ease;
    }
    @media (min-width: 768px) {
      .nav { padding: 28px 40px; }
    }
    @media (min-width: 1120px) {
      .nav { padding: 32px 56px; }
    }
    .nav.scrolled {
      background: rgba(251,250,246,0.92);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      padding: 18px 24px;
      box-shadow: inset 0 -1px 0 var(--rule);
    }
    @media (min-width: 768px) {
      .nav.scrolled { padding: 18px 40px; }
    }
    @media (min-width: 1120px) {
      .nav.scrolled { padding: 20px 56px; }
    }
    .nav-brand {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: 1.375rem;
      letter-spacing: -0.01em;
      color: #fff;
      transition: color 300ms ease;
      opacity: 0;
      animation: hero-fade-up 900ms ease-out 500ms forwards;
    }
    .nav-brand span { color: rgba(255,255,255,0.7) !important; transition: color 300ms ease; }
    .nav.scrolled .nav-brand { color: var(--ink); }
    .nav.scrolled .nav-brand span { color: var(--muted) !important; }
    .nav-links {
      display: none;
      gap: 26px;
      align-items: center;
    }
    @media (min-width: 1024px) {
      .nav-links { display: flex; }
    }
    .nav-links a {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      transition: color 250ms ease, background 250ms ease, border-color 250ms ease;
      opacity: 0;
      animation: hero-fade-up 900ms ease-out 700ms forwards;
      white-space: nowrap;
    }
    .nav-links a:nth-child(2) { animation-delay: 760ms; }
    .nav-links a:nth-child(3) { animation-delay: 820ms; }
    .nav-links a:nth-child(4) { animation-delay: 880ms; }
    .nav-links a:nth-child(5) { animation-delay: 940ms; }
    .nav-links a:nth-child(6) { animation-delay: 1000ms; }
    .nav-links a:nth-child(7) { animation-delay: 1060ms; }
    .nav-links a:hover { color: #fff; }
    .nav.scrolled .nav-links a { color: var(--ink); }
    .nav.scrolled .nav-links a:hover { color: var(--sage); }

    /* Active page indicator (subtle underline) */
    .nav-links a.active { color: #fff; position: relative; }
    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -8px;
      height: 1px;
      background: currentColor;
      opacity: 0.7;
    }
    .nav.scrolled .nav-links a.active { color: var(--sage); }

    /* Pill CTA inside the desktop nav */
    .nav-links .nav-cta {
      padding: 9px 18px;
      border: 1px solid rgba(255,255,255,0.55);
      border-radius: 999px;
      color: #fff;
    }
    .nav-links .nav-cta:hover {
      background: #fff;
      color: var(--ink);
      border-color: #fff;
    }
    .nav.scrolled .nav-links .nav-cta {
      border-color: var(--ink);
      color: var(--ink);
    }
    .nav.scrolled .nav-links .nav-cta:hover {
      background: var(--ink);
      color: #fff;
    }
    .nav-links .nav-cta.active::after { display: none; }
    .nav-toggle {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.6875rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #fff;
      transition: color 300ms ease;
    }
    .nav.scrolled .nav-toggle { color: var(--ink); }
    @media (min-width: 1120px) { .nav-toggle { display: none; } }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--paper);
      z-index: 99;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 64px;
      gap: 32px;
      transform: translateY(-100%);
      transition: transform 450ms cubic-bezier(0.7, 0, 0.2, 1);
    }
    .mobile-menu.open { transform: translateY(0); }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: 2.5rem;
      color: var(--ink);
    }

    /* ── HERO (cinematic photo + animated logo) ───────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      min-height: 100svh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0b0b0b;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      animation:
        hero-img-in 2200ms cubic-bezier(0.2, 0, 0.1, 1) both,
        hero-zoom 28s ease-out 2200ms infinite alternate;
    }
    @keyframes hero-img-in {
      0%   { opacity: 0; transform: scale(1.08); }
      100% { opacity: 1; transform: scale(1.04); }
    }
    @keyframes hero-zoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.12); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to bottom,
          rgba(13,13,13,0.38) 0%,
          rgba(13,13,13,0.22) 30%,
          rgba(13,13,13,0.30) 60%,
          rgba(13,13,13,0.65) 100%);
      pointer-events: none;
    }
    .hero-mark {
      position: relative;
      z-index: 2;
      padding: 0 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      text-align: center;
    }
    .hero-logo {
      width: min(560px, 78vw);
      height: auto;
      display: block;
      filter: brightness(0) invert(1);
    }
    .hero-eyebrow {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.6875rem;
      font-weight: 400;
      letter-spacing: 0.42em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.82);
    }
    .hero-rule {
      width: 48px;
      height: 1px;
      background: rgba(255,255,255,0.55);
    }
    @keyframes hero-fade-up {
      0%   { opacity: 0; transform: translateY(8px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .hero-scroll {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 0.625rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
    }
    .hero-scroll-line {
      width: 1px;
      height: 44px;
      background: rgba(255,255,255,0.55);
    }

    /* ── PLATE (full-bleed photo moment) ── */
    .plate {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #e8e6df;
    }
    @media (min-width: 768px) {
      .plate { aspect-ratio: 21 / 9; }
    }
    .plate img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .plate-caption {
      margin-top: 20px;
      padding: 0 24px;
      display: flex;
      justify-content: flex-end;
    }
    @media (min-width: 768px) {
      .plate-caption { padding: 0 64px; }
    }

    /* ── INVITATION ───────────────────────── */
    .invitation {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 900px) {
      .invitation {
        grid-template-columns: 4fr 7fr;
        gap: 120px;
      }
    }
    .invitation-left {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .invitation-right {
      max-width: 62ch;
    }
    .invitation-right p + p { margin-top: 1.25rem; }

    /* ── SPACES ───────────────────────── */
    .space-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      margin-bottom: 140px;
    }
    .space-row:last-child { margin-bottom: 0; }
    @media (min-width: 900px) {
      .space-row {
        grid-template-columns: 1fr 1fr;
        gap: 120px;
        margin-bottom: 200px;
      }
      .space-row.reverse .space-img { order: 2; }
      .space-row.reverse .space-text { order: 1; }
    }
    .space-img {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: #e8e6df;
    }
    .space-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1600ms cubic-bezier(0.2, 0, 0.1, 1);
    }
    .space-row:hover .space-img img { transform: scale(1.03); }
    .space-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 420px;
    }
    @media (min-width: 900px) {
      .space-row.reverse .space-text { margin-left: auto; }
    }
    .space-number-row {
      display: flex;
      align-items: baseline;
      gap: 20px;
    }

    /* ── DIFFERENTIATOR ───────────────────────── */
    .diff {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    @media (min-width: 900px) {
      .diff { grid-template-columns: 3fr 8fr; gap: 120px; }
    }
    .diff-label {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .diff-list {
      display: flex;
      flex-direction: column;
      border-top: 1px solid var(--rule);
    }
    .diff-item {
      padding: 36px 0;
      border-bottom: 1px solid var(--rule);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 32px;
      align-items: baseline;
    }
    .diff-item .t-number {
      font-size: clamp(1.25rem, 1.6vw, 1.5rem);
      font-style: normal;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .diff-headline {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(2rem, 5vw, 3.75rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
    }

    /* ── PRICING BAND ───────────────────────── */
    .price-band {
      border-top: 1px solid var(--rule);
      border-bottom: 1px solid var(--rule);
      padding: 72px 0;
    }
    .price-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    @media (min-width: 700px) {
      .price-row { grid-template-columns: 1fr 1fr; gap: 64px; }
    }
    .price-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-start;
    }
    @media (min-width: 700px) {
      .price-col + .price-col { border-left: 1px solid var(--rule); padding-left: 64px; }
    }
    .price-number {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      line-height: 1;
      color: var(--ink);
      letter-spacing: -0.02em;
    }
    .price-sub {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: var(--muted);
    }

    /* ── TESTIMONIALS ───────────────────────── */
    .testimonials-intro {
      text-align: center;
      margin-bottom: 96px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .quote-row {
      display: flex;
      margin-bottom: 96px;
    }
    .quote-row:last-child { margin-bottom: 0; }
    .quote-row.align-left { justify-content: flex-start; }
    .quote-row.align-center { justify-content: center; }
    .quote-row.align-right { justify-content: flex-end; }
    .quote-block {
      max-width: 620px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .quote-block.large { max-width: 820px; }
    .quote-text {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1.375rem, 2.2vw, 1.875rem);
      line-height: 1.4;
      letter-spacing: -0.01em;
      color: var(--ink);
    }
    .quote-block.large .quote-text {
      font-size: clamp(1.625rem, 3.4vw, 2.5rem);
      line-height: 1.3;
      letter-spacing: -0.015em;
    }
    .quote-mark {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: 3rem;
      line-height: 0;
      color: var(--sage);
      height: 16px;
    }

    /* ── STAY (Airbnb) ───────────────────────── */
    .stay {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }
    @media (min-width: 900px) {
      .stay { grid-template-columns: 1fr 1fr; gap: 120px; }
    }
    .stay-img {
      aspect-ratio: 5 / 4;
      overflow: hidden;
      background: #e8e6df;
    }
    .stay-img img { width: 100%; height: 100%; object-fit: cover; }
    .stay-text {
      display: flex;
      flex-direction: column;
      gap: 24px;
      max-width: 440px;
    }

    /* ── VISIT CTA ───────────────────────── */
    .visit {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 32px;
    }
    .visit-title {
      max-width: 14ch;
    }

    /* ── LINK STYLES ───────────────────────── */
    .link {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.6875rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--ink);
      padding-bottom: 6px;
      border-bottom: 1px solid var(--ink);
      transition: color 220ms ease, border-color 220ms ease, letter-spacing 220ms ease;
      display: inline-block;
    }
    .link:hover {
      color: var(--sage);
      border-color: var(--sage);
      letter-spacing: 0.28em;
    }
    .link:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; }

    .link-subtle {
      font-family: 'Inter', system-ui, sans-serif;
      font-size: 0.6875rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 200ms ease;
    }
    .link-subtle:hover { color: var(--ink); }

    /* ── FOOTER ───────────────────────── */
    .footer {
      padding: 120px 24px 48px;
      border-top: 1px solid var(--rule);
      margin-top: 80px;
    }
    @media (min-width: 768px) {
      .footer { padding: 120px 64px 48px; }
    }
    .footer-inner {
      max-width: 1360px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
    }
    @media (min-width: 768px) {
      .footer-inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
      }
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 320px;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .footer-heading {
      font-family: 'Inter', sans-serif;
      font-size: 0.625rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .footer-col a, .footer-col p {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: 1rem;
      color: var(--soft);
      line-height: 1.6;
      transition: color 200ms ease;
    }
    .footer-col a:hover { color: var(--sage); }

    /* Footer brand logo (replaces text wordmark) */
    .footer-logo-link {
      display: inline-block;
      line-height: 0;
      transition: opacity 200ms ease;
    }
    .footer-logo-link:hover { opacity: 0.75; }
    .footer-logo {
      width: 200px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* Footer social icon row (Facebook, Instagram, Airbnb) */
    .footer-socials {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: -4px 0 4px;
    }
    .footer-col .footer-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      color: var(--soft);
      border: 1px solid var(--rule);
      transition: color 200ms ease, border-color 200ms ease, transform 200ms ease, background-color 200ms ease;
    }
    .footer-col .footer-socials a:hover,
    .footer-col .footer-socials a:focus-visible {
      color: var(--sage);
      border-color: var(--sage);
      transform: translateY(-1px);
    }
    .footer-social-icon {
      width: 18px;
      height: 18px;
      display: block;
    }

    .footer-bottom {
      margin-top: 64px;
      padding-top: 32px;
      border-top: 1px solid var(--rule);
      max-width: 1360px;
      margin-left: auto;
      margin-right: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 16px;
    }

    /* ── SAPHIRE-STYLE SECTIONS ───────────────────────── */
    .intro {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
    }
    .intro .t-section { max-width: 20ch; }

    /* Venue/space cards */
    .spaces-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 56px;
    }
    @media (min-width: 768px) {
      .spaces-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    }
    .space-card {
      display: flex;
      flex-direction: column;
      gap: 22px;
      position: relative;
    }
    .space-card-img {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: #e8e6df;
    }
    .space-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1400ms cubic-bezier(0.2, 0, 0.1, 1);
    }
    .space-card:hover .space-card-img img { transform: scale(1.045); }
    .space-card-body {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 0 4px;
    }
    .space-card-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1.625rem, 2.4vw, 2rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    /* What's Included — 3 column */
    .included-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 56px;
    }
    @media (min-width: 768px) {
      .included-grid { grid-template-columns: repeat(3, 1fr); gap: 64px; }
    }
    .included-item {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 0 16px;
    }
    .included-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage);
      margin-bottom: 4px;
    }
    .included-item h3 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: var(--ink);
    }

    /* Testimonials with stars */
    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }
    @media (min-width: 900px) {
      .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; }
    }
    .testimonial {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: center;
      align-items: center;
    }
    .stars {
      display: flex;
      gap: 3px;
      color: var(--sage);
    }
    .stars svg { width: 14px; height: 14px; fill: currentColor; }
    .testimonial-text {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-style: italic;
      font-size: 1.125rem;
      line-height: 1.65;
      color: var(--soft);
      max-width: 36ch;
    }

    /* Gallery preview grid */
    .gallery-preview {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    @media (min-width: 768px) {
      .gallery-preview { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    }
    .gallery-item {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #e8e6df;
      display: block;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1200ms cubic-bezier(0.2, 0, 0.1, 1), opacity 300ms ease;
    }
    .gallery-item:hover img { transform: scale(1.045); opacity: 0.92; }

    /* Inquiry form */
    .inquiry {
      max-width: 620px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    @media (min-width: 600px) {
      .form-row { grid-template-columns: 1fr 1fr; }
    }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.625rem;
      font-weight: 400;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-input,
    .form-textarea {
      width: 100%;
      padding: 12px 0;
      border: none;
      border-bottom: 1px solid var(--rule);
      background: transparent;
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-size: 1.125rem;
      color: var(--ink);
      outline: none;
      transition: border-color 220ms ease;
      appearance: none;
      border-radius: 0;
      resize: none;
    }
    .form-input::placeholder,
    .form-textarea::placeholder { color: #C2C2B8; }
    .form-input:focus,
    .form-textarea:focus { border-color: var(--sage); }
    .form-textarea { min-height: 84px; line-height: 1.5; }
    .form-submit {
      margin-top: 8px;
      align-self: center;
      padding: 16px 40px;
      background: var(--ink);
      color: #fff;
      border: 1px solid var(--ink);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 0.6875rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 240ms ease, color 240ms ease;
    }
    .form-submit:hover { background: transparent; color: var(--ink); }
    .form-submit:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

    /* Cream-toned alternate section background */
    .section-cream { background: #F4F1E9; }

    /* ── REVEAL ───────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 900ms cubic-bezier(0.2, 0, 0.1, 1), transform 900ms cubic-bezier(0.2, 0, 0.1, 1);
    }
    .reveal.visible { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }

/* ── PAGE HERO (inner pages) ───────────────────────── */
.page-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b0b0b;
  padding-top: 120px;
  padding-bottom: 80px;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.page-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  animation: hero-img-in 1800ms cubic-bezier(0.2, 0, 0.1, 1) both, hero-zoom 28s ease-out 1800ms infinite alternate;
}
.page-hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(13,13,13,0.42) 0%,
    rgba(13,13,13,0.28) 40%,
    rgba(13,13,13,0.58) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  color: #fff;
}
.page-hero-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  opacity: 0;
  animation: hero-fade-up 1000ms ease-out 400ms forwards;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0;
  animation: hero-fade-up 1200ms cubic-bezier(0.2, 0, 0, 1) 600ms forwards;
}
.page-hero-lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.4vw, 1.3125rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  opacity: 0;
  animation: hero-fade-up 1100ms ease-out 1000ms forwards;
}
.page-hero-rule {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.55);
  display: block;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: hero-rule-in 900ms cubic-bezier(0.2, 0, 0.1, 1) 800ms forwards;
}

/* ── PACKAGE BLOCKS (weddings page) ─────────────── */
.package {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.package:first-child { border-top: none; }
@media (min-width: 900px) {
  .package { grid-template-columns: 1fr 1fr; gap: 96px; padding: 120px 0; }
  .package.reverse .package-media { order: 2; }
  .package.reverse .package-body { order: 1; }
}
.package-media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: #e8e6df;
}
.package-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms cubic-bezier(0.2, 0, 0.1, 1);
}
.package:hover .package-media img { transform: scale(1.03); }
.package-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}
.package-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  color: var(--ink);
  line-height: 1;
}
.package-price-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.package-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.package-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  color: var(--soft);
  line-height: 1.55;
}
.package-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 13px;
}

/* ── SUITE ROOM CARDS (farmhouse suite page) ─────────────── */
.suite-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .suite-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.suite-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.suite-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e6df;
}
.suite-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms cubic-bezier(0.2, 0, 0.1, 1);
}
.suite-card:hover .suite-card-img img { transform: scale(1.045); }

/* ── TWO COL SPLIT (about, farmhouse suite) ─────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 96px; } }
.split.reverse .split-media { order: -1; }
@media (min-width: 900px) {
  .split.reverse .split-media { order: 2; }
  .split.reverse .split-body { order: 1; }
}
.split-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e6df;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1400ms cubic-bezier(0.2, 0, 0.1, 1);
}
.split:hover .split-media img { transform: scale(1.03); }
.split-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

/* ── FULL-WIDTH GALLERY GRID (gallery page) ─────────────── */
.gallery-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) { .gallery-full { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1200px) { .gallery-full { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.gallery-full .gallery-item {
  aspect-ratio: 4 / 5;
}
.gallery-full .gallery-item:nth-child(5n+1) { aspect-ratio: 4 / 5; }
.gallery-full .gallery-item:nth-child(5n+3) { aspect-ratio: 1 / 1; }
.gallery-full .gallery-item:nth-child(5n+4) { aspect-ratio: 5 / 4; }

/* ── EVENT CARDS (events page) ─────────────── */
.event-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .event-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.event-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
}
.event-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1600ms cubic-bezier(0.2, 0, 0.1, 1);
}
.event-card:hover img { transform: scale(1.05); }
.event-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.15) 30%, rgba(13,13,13,0.78) 100%);
  z-index: 1;
}
.event-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-card-body .t-eyebrow { color: rgba(255,255,255,0.8); }
.event-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.1;
  color: #fff;
}

/* Active nav state */
.nav-links a.active { color: #fff; position: relative; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: rgba(255,255,255,0.6);
}
.nav.scrolled .nav-links a.active { color: var(--ink); }
.nav.scrolled .nav-links a.active::after { background: var(--sage); }

/* ══════════════════════════════════════════════════════════
   HAMBURGER MENU — replaces old .nav-links / .mobile-menu
   ══════════════════════════════════════════════════════════ */

/* Trigger (hamburger button) — always fixed top-right */
.menu-trigger {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 200;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition:
    background 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .menu-trigger { top: 28px; right: 28px; }
}
@media (min-width: 1024px) {
  /* On desktop/tablet-landscape the visible .nav-links replace the hamburger */
  .menu-trigger { display: none; }
}
.menu-trigger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #FFFFFF;
  transition:
    background 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-trigger:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
}

/* Open: the button becomes a white tile with black bars inside */
html.menu-open .menu-trigger {
  background: #FFFFFF;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14), 0 1px 0 rgba(0,0,0,0.04);
}
html.menu-open .menu-trigger-bar {
  background: #171717;
}

/* Backdrop — dims content behind the panel */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(13, 13, 13, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
html.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* Panel — solid white, slides in from the right */
.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  height: 100dvh;
  width: 100%;
  z-index: 190;
  background: #FFFFFF;
  transform: translateX(100%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  overflow-y: auto;
  visibility: hidden;
}
@media (min-width: 768px) {
  .menu-panel { width: clamp(420px, 66vw, 720px); }
}
html.menu-open .menu-panel {
  transform: translateX(0);
  visibility: visible;
}

/* Menu list */
.menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
}
.menu-list a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 3.2vw, 1.875rem);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #171717;
  text-decoration: none;
  padding: 22px 20px;
  text-align: center;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition:
    color 220ms ease,
    letter-spacing 260ms ease,
    opacity 500ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
}
.menu-list a:hover {
  color: var(--sage);
  letter-spacing: 0.14em;
}
.menu-list a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 6px;
}

/* Staggered entry after the panel opens */
html.menu-open .menu-list a {
  opacity: 1;
  transform: translateY(0);
}
html.menu-open .menu-list a:nth-child(1) { transition-delay: 260ms; }
html.menu-open .menu-list a:nth-child(2) { transition-delay: 320ms; }
html.menu-open .menu-list a:nth-child(3) { transition-delay: 380ms; }
html.menu-open .menu-list a:nth-child(4) { transition-delay: 440ms; }
html.menu-open .menu-list a:nth-child(5) { transition-delay: 500ms; }
html.menu-open .menu-list a:nth-child(6) { transition-delay: 560ms; }
html.menu-open .menu-list a:nth-child(7) { transition-delay: 620ms; }

/* CTA — "Book a Tour" gets softer, italicized treatment with a sage rule above */
.menu-list-cta {
  font-style: italic !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: clamp(1.5rem, 3.4vw, 2rem) !important;
  margin-top: 28px;
  padding-top: 32px !important;
  position: relative;
}
.menu-list-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background: var(--sage);
}

/* Active link marker */
.menu-list a.active { color: var(--sage); }
.menu-list a.active::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage);
  margin: 8px auto 0;
}

/* Body scroll lock */
html.menu-open,
html.menu-open body { overflow: hidden; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .menu-trigger,
  .menu-trigger-bar,
  .menu-backdrop,
  .menu-panel,
  .menu-list a { transition-duration: 1ms !important; }
}

/* ── FAQ ACCORDION ─────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--ink);
  transition: color 220ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage); }
.faq-plus {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 260ms cubic-bezier(0.2, 0, 0.1, 1);
  display: inline-block;
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}
.faq-answer {
  padding-bottom: 28px;
  max-width: 65ch;
}
.faq-answer p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--soft);
}

/* ── SECTIONED GALLERY GRID (gallery page) ─────────────── */
.gallery-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .gallery-section-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 14px;
  }
  .gallery-section-grid .gallery-item:nth-child(1) {
    grid-column: span 3;
    grid-row: span 2;
    aspect-ratio: 3 / 4;
  }
  .gallery-section-grid .gallery-item:nth-child(2) {
    grid-column: span 3;
    aspect-ratio: 3 / 2;
  }
  .gallery-section-grid .gallery-item:nth-child(3) {
    grid-column: span 3;
    aspect-ratio: 3 / 2;
  }
}

/* ──────────────────────────────────────────────
   GALLERY PAGE — masonry, filters, lightbox
   ────────────────────────────────────────────── */

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px 32px;
  padding: 0 0 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--rule);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.gallery-chip {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--soft);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}
.gallery-chip:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.gallery-chip:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.gallery-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.gallery-chip-count {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}
.gallery-chip.is-active .gallery-chip-count { opacity: 0.75; }

.gallery-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* Masonry: CSS columns auto-balances varying-height tiles */
.gallery-masonry {
  column-count: 1;
  column-gap: 14px;
}
@media (min-width: 560px)  { .gallery-masonry { column-count: 2; column-gap: 14px; } }
@media (min-width: 900px)  { .gallery-masonry { column-count: 3; column-gap: 16px; } }
@media (min-width: 1240px) { .gallery-masonry { column-count: 4; column-gap: 18px; } }

.gallery-tile {
  display: block;
  width: 100%;
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 14px;
  cursor: pointer;
  position: relative;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  text-align: left;
  color: inherit;
  font: inherit;
}
@media (min-width: 900px)  { .gallery-tile { margin-bottom: 16px; } }
@media (min-width: 1240px) { .gallery-tile { margin-bottom: 18px; } }

.gallery-tile.is-hidden { display: none; }

.gallery-empty {
  padding: 60px 24px;
  border: 1px dashed var(--rule);
  text-align: center;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 4px;
}
.gallery-empty code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: rgba(23,23,23,0.05);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.88em;
}
.gallery-empty strong { color: var(--ink); font-weight: 600; }

.gallery-tile-frame {
  display: block;
  width: 100%;
  background: #efece5;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px rgba(23,23,23,0.04);
}
.gallery-tile-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0) 55%, rgba(23,23,23,0.42) 100%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.gallery-tile-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0, 0.1, 1), opacity 320ms ease;
}

.gallery-tile-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 10px;
  background: rgba(23,23,23,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.gallery-tile:hover .gallery-tile-frame img { transform: scale(1.04); }
.gallery-tile:hover .gallery-tile-frame::after { opacity: 1; }
.gallery-tile:hover .gallery-tile-tag { opacity: 1; transform: translateY(0); }

.gallery-tile:focus-visible { outline: none; }
.gallery-tile:focus-visible .gallery-tile-frame {
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--sage);
}

/* ──────── Lightbox ──────── */
html.lb-open, html.lb-open body { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(15,15,15,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 6vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}
.lightbox-caption {
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 18px;
  font-variant-numeric: tabular-nums;
}
.lightbox-caption #lightbox-counter {
  color: rgba(255,255,255,0.5);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  appearance: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 640px) {
  .lightbox { padding: 2vh 12px; }
  .lightbox-close { top: 14px; right: 14px; }
  .lightbox-prev  { left: 12px;  }
  .lightbox-next  { right: 12px; }
  .lightbox-stage img { max-height: 72vh; }
}

/* ══════════════════════════════════════════════════════════
   AVAILABILITY CALENDAR (FullCalendar.js, themed)
   ══════════════════════════════════════════════════════════ */
.bf-calendar-wrap {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 12px 40px rgba(80, 80, 60, 0.06);
}
@media (min-width: 768px) {
  .bf-calendar-wrap { padding: 36px 40px; }
}

/* Reset Google's link styling on events */
#bf-calendar a { text-decoration: none; }

/* Header toolbar */
#bf-calendar .fc-toolbar.fc-header-toolbar {
  margin-bottom: 24px;
  align-items: center;
}
#bf-calendar .fc-toolbar-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Nav buttons (prev / next) */
#bf-calendar .fc-button {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
#bf-calendar .fc-button:hover,
#bf-calendar .fc-button:focus {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: none;
  outline: none;
}
#bf-calendar .fc-button:active,
#bf-calendar .fc-button-primary:not(:disabled).fc-button-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: none;
}
#bf-calendar .fc-icon { font-size: 1rem; }

/* Day-of-week header row */
#bf-calendar .fc-col-header-cell {
  background: transparent;
  border-color: transparent;
  padding: 12px 0;
}
#bf-calendar .fc-col-header-cell-cushion {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--muted);
  padding: 0;
}

/* Day-grid cells */
#bf-calendar .fc-theme-standard td,
#bf-calendar .fc-theme-standard th,
#bf-calendar .fc-theme-standard .fc-scrollgrid {
  border-color: var(--rule);
}
#bf-calendar .fc-daygrid-day { background: #fff; }
#bf-calendar .fc-daygrid-day-frame { min-height: 92px; padding: 6px 8px; }

/* Date number */
#bf-calendar .fc-daygrid-day-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--ink);
  padding: 4px 6px;
  text-decoration: none;
}
#bf-calendar .fc-day-other .fc-daygrid-day-number { color: var(--muted); opacity: 0.55; }
#bf-calendar .fc-day-other { background: rgba(0,0,0,0.012); }

/* Today highlight: subtle underline rather than yellow box */
#bf-calendar .fc-day-today {
  background: transparent !important;
}
#bf-calendar .fc-day-today .fc-daygrid-day-number {
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
}

/* Events: brand sage pill */
#bf-calendar .fc-daygrid-event {
  margin: 4px 4px 2px;
  padding: 3px 8px 4px;
  border-radius: 3px;
  background: var(--sage);
  border: none;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#bf-calendar .fc-daygrid-event:hover {
  background: var(--ink);
  filter: none;
}
#bf-calendar .fc-event-title,
#bf-calendar .fc-event-title-container {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #fff;
  text-transform: none;
}

/* "+2 more" link styling */
#bf-calendar .fc-daygrid-more-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Compact on small screens */
@media (max-width: 640px) {
  .bf-calendar-wrap { padding: 18px 12px; }
  #bf-calendar .fc-daygrid-day-frame { min-height: 64px; padding: 4px 4px; }
  #bf-calendar .fc-daygrid-day-number { font-size: 0.95rem; padding: 2px 4px; }
  #bf-calendar .fc-daygrid-event { font-size: 0.625rem; padding: 2px 5px; }
  #bf-calendar .fc-col-header-cell-cushion { font-size: 0.5625rem; letter-spacing: 0.18em; }
}

/* ══════════════════════════════════════════════════════════
   AMENITY STRIP (between hero and spaces grid on home)
   ══════════════════════════════════════════════════════════ */
.amenity-strip {
  background: #F4F1EA;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 24px;
}
.amenity-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
}
.amenity-strip-item {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.amenity-strip-dot {
  color: var(--muted);
  font-size: 0.625rem;
  opacity: 0.55;
}
@media (max-width: 720px) {
  .amenity-strip { padding: 16px 14px; }
  .amenity-strip-inner { gap: 8px 12px; }
  .amenity-strip-item { font-size: 0.5625rem; letter-spacing: 0.22em; }
  .amenity-strip-dot { display: none; }
}

/* ══════════════════════════════════════════════════════════
   CTA BANNER (split: image + dark sage block, above footer)
   ══════════════════════════════════════════════════════════ */
.cta-banner {
  display: grid;
  grid-template-columns: 1fr;
  background: #2F3A2C;
  margin-top: 40px;
}
@media (min-width: 880px) {
  .cta-banner { grid-template-columns: 1fr 1fr; }
}
.cta-banner-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: #1c1c1c;
}
.cta-banner-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-body {
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
@media (min-width: 880px) {
  .cta-banner-body { padding: 52px 44px; }
}
.cta-banner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.cta-banner-body-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 420px;
  margin-bottom: 22px;
}
.cta-banner-link {
  display: inline-block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  transition: background 250ms ease, color 250ms ease, border-color 250ms ease;
}
.cta-banner-link:hover,
.cta-banner-link:focus-visible {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ══════════════════════════════════════════════════════════
   SITE FOOTER (three-column, logo in middle, dark bottom bar)
   Parent has no horizontal padding so the dark bottom bar can
   stretch the full viewport width; inner sections add their own.
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: 44px 0 0;
}
.site-footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  justify-items: center;
  text-align: center;
}
@media (min-width: 880px) {
  .site-footer-grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    text-align: left;
    justify-items: stretch;
  }
}
.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 880px) {
  .site-footer-col-right { text-align: right; align-items: flex-end; }
}
.site-footer-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.site-footer-col a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--soft);
  line-height: 1.6;
  transition: color 200ms ease;
}
.site-footer-col a:hover { color: var(--sage); }

/* Center column: logo + handle + social icons */
.site-footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.site-footer-logo-link {
  display: inline-block;
  line-height: 0;
  transition: opacity 200ms ease;
}
.site-footer-logo-link:hover { opacity: 0.75; }
.site-footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #F4F1EA;
  border: 1px solid var(--rule);
}
.site-footer-logo {
  width: 96px;
  height: auto;
  display: block;
}
.site-footer-handle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 200ms ease;
}
.site-footer-handle:hover { color: var(--sage); }
.site-footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}
.site-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--soft);
  border: 1px solid var(--rule);
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.site-footer-socials a:hover,
.site-footer-socials a:focus-visible {
  color: var(--sage);
  border-color: var(--sage);
  transform: translateY(-1px);
}

/* Centered contact strip (below the columns) */
.site-footer-contact {
  max-width: 1360px;
  margin: 36px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: var(--soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
}
.site-footer-contact a:hover { color: var(--sage); }
.site-footer-contact-sep {
  color: var(--muted);
  opacity: 0.6;
}

/* Dark bottom bar — full-bleed, edge-to-edge */
.site-footer-bottom {
  background: #2F3A2C;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 14px 24px;
  margin: 28px 0 0;
  width: 100%;
}
.site-footer-bottom .t-caption {
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
}
.site-footer-bottom a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.site-footer-bottom a:hover { color: #fff; border-color: rgba(255,255,255,0.55); }
.site-footer-bottom-sep {
  margin: 0 10px;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════════
   BACK TO TOP — vertical tab on the right edge
   ══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  right: 0;
  bottom: 25%;
  z-index: 90;
  background: #B9925E;
  color: #fff;
  padding: 14px 8px;
  border-radius: 4px 0 0 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(0);
  transition: background 220ms ease, transform 220ms ease;
  opacity: 0;
  pointer-events: none;
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--ink);
  transform: translateX(-3px);
}
.back-to-top-arrow {
  width: 10px;
  height: 10px;
  transform: rotate(0);
}
@media (max-width: 720px) {
  .back-to-top { padding: 12px 6px; font-size: 0.5625rem; letter-spacing: 0.24em; bottom: 20%; }
  .back-to-top-arrow { width: 8px; height: 8px; }
}


/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS (touch targets, density)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  /* Bigger touch targets on footer social icons (Apple recommends ≥44px) */
  .site-footer-socials a {
    width: 44px;
    height: 44px;
  }
  /* Pull the back-to-top tab up so it doesn't sit on the dark bottom bar */
  .back-to-top {
    bottom: 16%;
  }
  /* CTA banner photo: slightly shorter so dark block + button stay above the fold */
  .cta-banner-media {
    min-height: 240px;
  }
  /* Booking iframe wrapper: drop rounded corners so it stretches edge-to-edge */
  .booking-embed {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
  /* Tighten contact info strip in footer */
  .site-footer-contact {
    font-size: 0.9375rem;
    padding: 16px 16px;
  }
  /* Map the address link onto its own line so the comma doesn't orphan */
  .site-footer-address-link { display: inline-block; }
}

/* Hamburger menu sized for thumbs on small phones */
@media (max-width: 480px) {
  .menu-trigger { width: 50px; height: 50px; }
  .menu-trigger-bar { width: 24px; }
  .nav { padding: 18px 18px; }
  .nav.scrolled { padding: 14px 18px; }
}
