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

/* ─── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  --cream:          #F8F3EC;
  --cream-soft:     #f0e9de;
  --charcoal:       #1f1d1a;
  --charcoal-soft:  #4a4540;
  --charcoal-muted: #7a746c;
  --line:           #e5ddd1;
  --heading:        #3c5c78;
  --gold:           #A28D5B;
  --gold-light:     #cda96e;
  --gold-pale:      #f0e4c3;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Gill Sans', 'Gill Sans MT', 'Inter', system-ui, sans-serif;

  --navbar-h: 5rem;
}

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }
address { font-style: normal; }

::selection { background: var(--gold-pale); color: var(--charcoal); }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ─── Skip Link ────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 0.75rem 1rem; background: var(--charcoal); color: var(--cream);
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ─── Layout ───────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 640px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 3rem; } }

.container--narrow  { max-width: 42.5rem; }
.container--default { max-width: 64rem; }
.container--wide    { max-width: 80rem; } /* max-w-7xl (1280px / 80rem) */
.container--full    { max-width: 90rem; }

.section {
  padding-block: 4rem;
}
@media (min-width: 640px) { .section { padding-block: 5rem; } }
@media (min-width: 768px) { .section { padding-block: 6rem; } }

.section--lg {
  padding-block: 6rem;
}
@media (min-width: 640px) { .section--lg { padding-block: 7rem; } }
@media (min-width: 768px) { .section--lg { padding-block: 8rem; } }

.bg-cream      { background-color: var(--cream); }
.bg-cream-soft { background-color: var(--cream-soft); }
.bg-white      { background-color: #ffffff; }
.bg-charcoal   { background-color: var(--charcoal); }

/* ─── Text Balance Helper ─────────────────────────────────────────────────── */
.text-balance {
  text-wrap: balance;
}

/* ─── Eyebrow ──────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal-muted);
  line-height: 1;
}

/* ─── Headings ─────────────────────────────────────────────────────────────── */
.heading {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--heading);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  text-wrap: balance;
}

.heading--display {
  font-size: clamp(2.75rem, 6vw + 1rem, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.heading--h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ─── Button ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: none;
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { box-shadow: inset 0 0 0 2px var(--gold); }

.btn--cream {
  box-shadow: inset 0 0 0 1px var(--cream);
  color: var(--cream);
}
.btn--cream:hover { box-shadow: inset 0 0 0 2px var(--cream); }

/* ─── Reveal Animation ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Section Divider ──────────────────────────────────────────────────────── */
.section-divider {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-divider__line {
  width: 100%;
  height: 1px;
  background: rgba(162, 141, 91, 0.2);
}
.section-divider__diamond {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Botanical pattern ─────────────────────────────────────────────────────── */
.pattern-fixed {
  background-image: url('../images/patterns/botanical.svg');
  background-attachment: scroll;
  background-size: 260px 260px;
  background-repeat: repeat;
  background-position: center top;
}
@media (min-width: 768px) {
  .pattern-fixed { background-attachment: fixed; }
}

/* ─── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.navbar__inner {
  max-width: 90rem;
  margin-inline: auto;
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
}
@media (min-width: 640px)  { .navbar__inner { height: 5rem; padding-inline: 2rem; } }
@media (min-width: 1024px) { .navbar__inner { padding-inline: 3rem; } }

/* Home — transparent background, ivory logo by default */
body.is-home .navbar {
  background: transparent;
  color: var(--cream);
  border-bottom: none;
}
body.is-home .navbar__logo--gold { display: none; }
body.is-home .navbar__logo--ivory { display: block; }

body.is-home .navbar.scrolled {
  background: var(--cream);
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}
body.is-home .navbar.scrolled .navbar__logo--gold { display: block; }
body.is-home .navbar.scrolled .navbar__logo--ivory { display: none; }
body.is-home .navbar.scrolled .btn--nav {
  box-shadow: inset 0 0 0 1px var(--gold);
  color: var(--gold);
}
body.is-home .navbar.scrolled .btn--nav:hover {
  box-shadow: inset 0 0 0 2px var(--gold);
}

/* Inner pages — cream bar with gold border */
body:not(.is-home) .navbar {
  background: var(--cream);
  color: var(--gold);
  border-bottom: 1px solid var(--line);
}
body:not(.is-home) .navbar__logo--gold { display: block; }
body:not(.is-home) .navbar__logo--ivory { display: none; }

.navbar__logo-link {
  display: flex;
  align-items: center;
}
.navbar__logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}
@media (min-width: 640px) { .navbar__logo { height: 36px; } }

.navbar__nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) { .navbar__nav { display: flex; } }

.navbar__link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: opacity 0.2s, color 0.2s;
}
.navbar__link:hover { opacity: 0.7; }
.navbar__link[aria-current="page"] { opacity: 0.5; }

.navbar__cta {
  display: none;
}
@media (min-width: 768px) { .navbar__cta { display: inline-flex; } }

/* Home navbar uses cream ring */
body.is-home .btn--nav { box-shadow: inset 0 0 0 1px var(--cream); color: var(--cream); }
body.is-home .btn--nav:hover { box-shadow: inset 0 0 0 2px var(--cream); }

.navbar__burger {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: inherit;
}
@media (min-width: 768px) { .navbar__burger { display: none; } }

/* ─── Mobile Drawer ────────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--charcoal);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 7rem 2rem 3rem;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.mobile-nav__link[aria-current="page"] { opacity: 0.5; }
.mobile-nav__cta { margin-top: auto; }

/* ─── Hero (Video) ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--gold);
}

/* Top scrim for nav contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(20, 28, 18, 0.55) 0%, rgba(20, 28, 18, 0) 100%);
  pointer-events: none;
  z-index: 5;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.loaded { opacity: 1; }

.hero__vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, rgba(31,29,26,0.28) 0%, rgba(31,29,26,0.82) 100%);
  z-index: 2;
}

.hero__scrim-centre {
  pointer-events: none;
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 60vw, 800px);
  height: clamp(250px, 35vh, 420px);
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(18, 22, 16, 0.5) 0%, rgba(18, 22, 16, 0) 100%);
  z-index: 3;
}

.hero__content {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-inline: 1.5rem;
  pointer-events: none;
}

.hero__eyebrow {
  display: none;
}

.hero__logo {
  display: block;
  width: clamp(320px, 40vw, 600px);
  max-width: 90vw;
  height: auto;
  pointer-events: auto;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.35));
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,243,236,0.5);
}
.scroll-cue__line {
  width: 1px;
  height: 2.5rem;
  background: currentColor;
  animation: scroll-cue 2s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 0.2; }
}

/* ─── Page Hero ────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  margin-top: var(--navbar-h);
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: transparent; /* git-hero-shade-removed */
}

.page-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  padding: 8rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px)  { .page-hero__content { padding-inline: 2rem; } }
@media (min-width: 1024px) { .page-hero__content { padding-inline: 3rem; } }

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--cream);
  color: var(--gold);
  overflow: hidden;
}

.footer__rule {
  max-width: 80rem;
  margin-inline: auto;
  padding: 3.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .footer__rule { padding-inline: 2rem; } }
@media (min-width: 1024px) { .footer__rule { padding-inline: 3rem; } }

.footer__rule-line {
  flex: 1;
  height: 1px;
  background: rgba(162,141,91,0.3);
}

.footer__rule-diamond {
  width: 5px;
  height: 5px;
  background: rgba(162,141,91,0.4);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.footer__mark {
  display: block;
  width: clamp(220px, 30vw, 380px);
  max-width: 85vw;
  height: auto;
  margin-inline: auto;
}

.footer__body {
  position: relative;
  max-width: 80rem;
  margin-inline: auto;
  padding: 3.5rem 1.5rem 4.5rem;
}
@media (min-width: 640px)  { .footer__body { padding: 4rem 2rem 5rem; } }
@media (min-width: 1024px) { .footer__body { padding: 5rem 3rem 6rem; } }

.footer__watermark {
  display: none;
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
@media (min-width: 768px) { .footer__watermark { display: block; } }

.footer__watermark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  opacity: 0.055;
}

.footer__grid {
  position: relative;
  width: 100%;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    gap: 5rem;
  }
}

.footer__col-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.footer__col-heading--h2 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.footer__text {
  font-size: 0.875rem;
  color: rgba(162,141,91,0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__nav-group { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding-top: 0.5rem; }

.footer__nav-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(162,141,91,0.5);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__nav-link {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(162,141,91,0.7);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer__nav-link:hover { color: var(--gold); }

.footer__address {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(162,141,91,0.5);
}

.footer__bottom {
  border-top: 1px solid rgba(162,141,91,0.2);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(162,141,91,0.4);
}
@media (min-width: 640px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 2rem;
  }
}
@media (min-width: 1024px) {
  .footer__bottom-inner {
    padding-inline: 3rem;
  }
}

/* ─── Home Page ─────────────────────────────────────────────────────────────── */

/* Intro section */
.home-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  align-items: flex-start;
  max-width: 62ch;
  margin-inline: auto;
}
.home-intro__heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-variant: small-caps;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 400;
  color: #34432e;
  letter-spacing: 0.06em;
  line-height: 1.15;
}
.home-intro__lead,
.home-intro__copy {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
}

.brand-lead {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a28d5b; /* brand gold */
}

/* Balmoral feature grid */
.balmoral-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .balmoral-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
  }
}

.balmoral-grid__heading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .balmoral-grid__heading {
    grid-column: 1 / 8;
    grid-row: 1;
    padding-bottom: 2.5rem;
    padding-right: 5rem;
  }
}

.balmoral-grid__location-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 6vw + 1rem, 5rem);
  font-weight: 300;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.balmoral-grid__wide-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .balmoral-grid__wide-img {
    grid-column: 1 / 9;
    grid-row: 2;
    aspect-ratio: auto;
    z-index: 10;
  }
}

.balmoral-grid__tall-img {
  position: relative;
  height: 18rem;
  overflow: hidden;
}
@media (min-width: 640px) { .balmoral-grid__tall-img { height: 24rem; } }
@media (min-width: 1024px) {
  .balmoral-grid__tall-img {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
    height: auto;
  }
}

.balmoral-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%);
  transition: filter 0.7s, transform 0.7s ease-out;
}
.balmoral-img:hover { filter: grayscale(0%); transform: scale(1.015); }
@media (min-width: 1024px) {
  .balmoral-grid__wide-img:hover,
  .balmoral-grid__tall-img:hover { z-index: 20; }
}

.balmoral-grid__body {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  max-width: 58ch;
}
@media (min-width: 1024px) { .balmoral-grid__body { margin-top: 2.5rem; } }

/* Gallery teaser */
.gallery-teaser-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-teaser-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Dining feature section */
.dining-feature {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .dining-feature {
    grid-template-columns: 5fr 7fr;
    gap: 0;
    align-items: stretch;
  }
}
.dining-feature__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 1024px) { .dining-feature__text { padding-right: 4rem; } }
.dining-feature__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw + 0.5rem, 3.5rem);
  font-weight: 300;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.dining-feature__p { color: var(--charcoal-soft); line-height: 1.7; }
.dining-feature__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) { .dining-feature__img { aspect-ratio: auto; height: 35rem; } }
.dining-feature__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* CTA full-bleed */
.cta-hero {
  position: relative;
  min-height: 100vh;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  display: grid;
}
.cta-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-hero__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(31,29,26,0.8), rgba(31,29,26,0.4) 50%, rgba(31,29,26,0.1));
}
.cta-hero__overlay--soft { background: rgba(31,29,26,0.2); }
.cta-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding: 8rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 640px)  { .cta-hero__content { padding-inline: 2rem; } }
@media (min-width: 1024px) { .cta-hero__content { padding-inline: 3rem; } }

.cta-hero__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 28rem;
}
.cta-hero__body {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(248,243,236,0.75);
  line-height: 1.7;
  max-width: 48ch;
}
@media (min-width: 640px) { .cta-hero__body { font-size: 1.125rem; } }
.cta-hero__actions { margin-top: 2.5rem; }
@media (min-width: 640px) { .cta-hero__actions { margin-top: 4rem; } }

/* ─── Split Section (reused on multiple pages) ──────────────────────────────── */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .split { gap: 3.5rem; }
}
@media (min-width: 1024px) {
  .split { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
  .split--5-7 { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .split--6-5 { grid-template-columns: 6fr 5fr; gap: 4rem; }
  .split--5-6 { grid-template-columns: 5fr 6fr; gap: 4rem; }
}
.split--reverse > *:first-child { order: 1; }
.split--reverse > *:last-child  { order: 0; }
@media (min-width: 1024px) {
  .split--center { align-items: center; }
}

.split__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.35;
}

.split__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ─── Full-bleed image ──────────────────────────────────────────────────────── */
.full-bleed {
  position: relative;
  overflow: hidden;
  height: clamp(20rem, 55vw, 42.5rem);
}
.full-bleed--quote {
  display: flex;
  align-items: flex-end;
}
.full-bleed__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-bleed__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,29,26,0.7) 0%, rgba(31,29,26,0.2) 50%, transparent 100%);
}
.full-bleed__overlay--gradient-r {
  background: linear-gradient(to right, rgba(31,29,26,0.6), rgba(31,29,26,0.2) 50%, transparent);
}
.full-bleed__overlay--dim { background: rgba(31,29,26,0.3); }
.full-bleed__quote-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem 2rem 2.5rem;
}
@media (min-width: 640px) { .full-bleed__quote-wrap { padding: 3rem 3rem 3.5rem; } }
@media (min-width: 1024px) { .full-bleed__quote-wrap { padding: 4rem; } }
.full-bleed__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw + 0.5rem, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  max-width: 30ch;
}

/* ─── Gallery ──────────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .gallery--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .gallery { gap: 1rem; } }

.gallery__item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-soft);
  display: block;
  cursor: pointer;
  border: none;
  padding: 0;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.gallery__item:hover .gallery__img { transform: scale(1.03); }

/* ─── Lightbox ─────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(31,29,26,0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: rgba(248,243,236,0.8);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 20;
  pointer-events: auto;
}
@media (min-width: 640px) { .lightbox__close { top: 1.5rem; right: 1.5rem; } }
.lightbox__close:hover { color: var(--cream); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(248,243,236,0.8);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 20;
  pointer-events: auto;
}
.lightbox__prev { left: 0.75rem; }
.lightbox__next { right: 0.75rem; }
@media (min-width: 640px) { .lightbox__prev { left: 2rem; } .lightbox__next { right: 2rem; } }
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--cream); }

.lightbox__image-wrap {
  padding: 1rem 3.5rem;
  width: 100%;
  max-width: 75rem;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  pointer-events: auto;
}
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(248,243,236,0.6);
  font-size: 0.875rem;
}

/* ─── Bento Grid (cottage / grounds) ───────────────────────────────────────── */
.section-bento {
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .section-bento { padding-block: 4rem; }
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(24rem, 55vw, 42.5rem);
    max-height: 680px;
    min-height: 360px;
  }
}

.bento__cell { position: relative; overflow: hidden; height: 100%; width: 100%; }
.bento__cell--span-col-md {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .bento__cell--span-col-md { grid-column: 1 / 3; grid-row: 1; aspect-ratio: auto; }
  .bento__cell--span-row-md { grid-column: 3; grid-row: 1 / 3; aspect-ratio: auto; }
  .bento__cell--portrait     { grid-column: 1; grid-row: 2; aspect-ratio: auto; }
  .bento__cell--square       { grid-column: 2; grid-row: 2; aspect-ratio: auto; }
}

@media (max-width: 767px) {
  .bento__cell--portrait,
  .bento__cell--square {
    aspect-ratio: 1 / 1;
  }
}

.bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Amenities ────────────────────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.amenities-col { display: flex; flex-direction: column; gap: 1.5rem; }

.amenities-list { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.25rem; }
.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--charcoal-soft);
}
.amenity-dot {
  margin-top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Stay Details ─────────────────────────────────────────────────────────── */
.details-list {
  border-top: 1px solid rgba(162,141,91,0.15);
  margin-top: 3.5rem;
}
.details-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  border-bottom: 1px solid rgba(162,141,91,0.15);
  padding-block: 1.25rem;
  gap: 0;
}
@media (min-width: 640px) {
  .details-item { grid-template-columns: 3.5rem 12.5rem 1fr; gap: 2rem; padding-block: 1.5rem; }
}
.details-item:hover .details-num { color: var(--gold); }
.details-item:hover .details-value { color: var(--charcoal); }

.details-num {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(162,141,91,0.4);
  transition: color 0.2s;
}
.details-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-muted);
  display: none;
}
@media (min-width: 640px) { .details-label { display: block; } }
.details-value { color: var(--charcoal-soft); line-height: 1.7; transition: color 0.2s; }

/* ─── Surroundings Grid ─────────────────────────────────────────────────────── */
.surroundings-grid {
  display: grid;
  gap: 1px;
  background: rgba(162,141,91,0.15);
}
@media (min-width: 640px) { .surroundings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .surroundings-grid { grid-template-columns: repeat(3, 1fr); } }

.surroundings-card {
  background: var(--cream-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  transition: background-color 0.3s;
}
.surroundings-card:hover { background: var(--cream); }
.surroundings-card__distance {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.surroundings-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--heading);
  line-height: 1.3;
}
.surroundings-card__detail {
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
}

/* ─── Journal ──────────────────────────────────────────────────────────────── */
.journal-list {
  border-top: 1px solid rgba(162,141,91,0.15);
}
.journal-item {
  border-bottom: 1px solid rgba(162,141,91,0.15);
}
.journal-link {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.75rem;
  transition: color 0.2s;
}
@media (min-width: 640px) {
  .journal-link {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding-block: 2.25rem;
  }
}
.journal-link:hover .journal-title { color: var(--heading); }

.journal-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  transition: color 0.2s;
}

.journal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 640px) { .journal-meta { align-items: flex-end; padding-left: 3rem; } }

.journal-date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--charcoal-muted);
}
.journal-excerpt {
  display: none;
  font-size: 0.875rem;
  color: var(--charcoal-soft);
  max-width: 38ch;
  line-height: 1.6;
}
@media (min-width: 640px) { .journal-excerpt { display: block; } }

.journal-empty {
  text-align: center;
  color: var(--charcoal-soft);
  padding-block: 3rem;
}

/* ─── Single Post ───────────────────────────────────────────────────────────── */
.post-hero {
  position: relative;
  margin-top: var(--navbar-h);
  height: 60vh;
  overflow: hidden;
  background: var(--gold);
}
.post-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-hero__overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: rgba(31,29,26,0.35);
}
.post-hero--none {
  margin-top: var(--navbar-h);
  height: 6rem;
  background: var(--cream);
}

.post-header { margin-bottom: 3rem; }
.post-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  font-weight: 300;
  color: var(--heading);
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin-top: 0.75rem;
}
.post-date { font-size: 0.875rem; color: var(--charcoal-muted); margin-top: 0.5rem; }

.post-body {
  color: var(--charcoal-soft);
  line-height: 1.75;
}
.post-body p   { margin-bottom: 1.25rem; }
.post-body h2  { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; color: var(--heading); margin-top: 3rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.post-body h3  { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--heading); margin-top: 2rem; margin-bottom: 0.75rem; }
.post-body blockquote { border-left: 2px solid var(--gold); padding-left: 1.5rem; margin-block: 2rem; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; color: var(--gold); }
.post-body strong { font-weight: 500; color: var(--charcoal); }

.post-back {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(162,141,91,0.15);
}
.post-back a { font-size: 0.875rem; color: var(--charcoal-muted); transition: color 0.2s; }
.post-back a:hover { color: var(--charcoal); }

/* ─── CTA center ────────────────────────────────────────────────────────────── */
.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.cta-center__text { display: flex; flex-direction: column; gap: 1rem; }
.cta-center__actions { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
@media (min-width: 640px) { .cta-center__actions { flex-direction: row; } }
.cta-center__phone { font-size: 0.875rem; color: var(--charcoal-muted); transition: color 0.2s; }
.cta-center__phone:hover { color: var(--charcoal); }
.cta-center__address { font-size: 0.875rem; color: var(--charcoal-muted); }

/* ─── Inline link ───────────────────────────────────────────────────────────── */
.inline-link {
  font-size: 0.875rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(31,29,26,0.3);
  transition: text-decoration-color 0.2s;
}
.inline-link:hover { text-decoration-color: var(--charcoal); }

/* ─── Outdoor photo strip (4-col) ───────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  height: clamp(16rem, 80vw, 32.5rem);
}
@media (min-width: 640px) {
  .photo-strip { grid-template-columns: repeat(4, 1fr); height: clamp(16rem, 50vw, 32.5rem); }
}
.photo-strip__cell { position: relative; overflow: hidden; }
.photo-strip__img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── Dining bento ──────────────────────────────────────────────────────────── */
.dining-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .dining-bento {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(30rem, 90vw, 60rem);
    max-height: 960px;
    min-height: 480px;
  }
}
.dining-bento__wide {
  grid-column: span 2;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 768px) {
  .dining-bento__wide { grid-column: span 2; grid-row: 1; aspect-ratio: auto; }
}
.dining-bento__cell { position: relative; overflow: hidden; aspect-ratio: 3/4; }
@media (min-width: 768px) { .dining-bento__cell { aspect-ratio: auto; } }

.dining-bento__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── Garden 2x2 ────────────────────────────────────────────────────────────── */
.garden-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem; }
.garden-grid__cell { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.garden-grid__img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── Misc ──────────────────────────────────────────────────────────────────── */
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-12 { margin-bottom: 3rem; }
.flex-col { display: flex; flex-direction: column; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-10 { gap: 2.5rem; }
.items-start { align-items: flex-start; }
.self-start { align-self: flex-start; }

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