/* ============================================================
   Hearth Hospitality Group — static site, brand v2.1
   Type:   PP Editorial New Ultralight (headlines) + Santa Ana (body)
   Colors: Slate 313E48 · Sage BAC3B9 · Ivory EDE3D1 · Brown 88674F · Rust 6D3528
   Layout: full-bleed alternating slate/ivory bands, sticky nav ribbon
   ============================================================ */

@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-Ultralight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-UltralightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Santa Ana";
  src: url("../fonts/SantaAna-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Santa Ana";
  src: url("../fonts/SantaAna-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Santa Ana";
  src: url("../fonts/SantaAna-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory:  #EDE3D1;
  --slate:  #313E48;
  --slate-deep: #29343d;
  --sage:   #BAC3B9;
  --brown:  #88674F;
  --rust:   #6D3528;
  --max:    1240px;
  --serif:  "PP Editorial New", Georgia, serif;
  --sans:   "Santa Ana", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--slate);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* author styles override UA [hidden]{display:none} — reassert it (Drawing Room bug) */
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 200;
  line-height: 1.08;
  margin: 0 0 1.4rem;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

p { margin: 0 0 1.25rem; }

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--slate);
  color: var(--ivory);
  padding: .6rem 1.2rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- header + sticky nav ribbon ---------- */
.site-header {
  background: var(--ivory);
  padding: 2rem 1rem 1.4rem;
  text-align: center;
}

.site-header .logo img {
  width: min(170px, 45vw);
  margin: 0 auto;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ivory);
  border-top: 1px solid rgba(49, 62, 72, .14);
  border-bottom: 1px solid rgba(49, 62, 72, .18);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  min-height: 58px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--slate);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  cursor: pointer;
  color: var(--slate);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: clamp(.9rem, 2.2vw, 2.2rem);
  flex-wrap: wrap;
}

.site-nav li { position: relative; }

.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible { border-bottom-color: var(--rust); }

.site-nav a[aria-current="page"] { border-bottom-color: var(--slate); }

/* dropdowns */
.site-nav .dropdown > ul,
.book-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: 1px solid rgba(49, 62, 72, .22);
  min-width: 240px;
  padding: .6rem 0;
  flex-direction: column;
  gap: 0;
  z-index: 95;
  list-style: none;
  margin: 0;
}

.site-nav .dropdown:hover > ul,
.site-nav .dropdown:focus-within > ul { display: flex; }

.site-nav .dropdown > ul a,
.book-menu a {
  display: block;
  padding: .55rem 1.3rem;
  letter-spacing: .12em;
  font-size: .78rem;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  border-bottom: none;
  text-align: left;
  white-space: nowrap;
}

.site-nav .dropdown > ul a:hover,
.site-nav .dropdown > ul a:focus-visible,
.book-menu a:hover,
.book-menu a:focus-visible { background: rgba(186, 195, 185, .35); }

/* book-now — inline, immediately after the menu links */
.book-now {
  position: relative;
}

.book-now .btn { padding: .55rem 1.4rem; }

.book-now.open .book-menu,
.book-now:focus-within .book-menu { display: flex; }

.book-menu { left: auto; right: 0; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  padding: .85rem 2rem;
  color: inherit;
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}

.btn:hover, .btn:focus-visible { background: var(--slate); border-color: var(--slate); color: var(--ivory); }

.btn--solid {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--ivory);
}
.btn--solid:hover, .btn--solid:focus-visible {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--ivory);
}

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; }

.hero img {
  width: 100%;
  height: min(92vh, 900px);
  object-fit: cover;
}

.hero--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(41, 52, 61, .38) 0%, rgba(41, 52, 61, .18) 35%, rgba(41, 52, 61, .62) 100%);
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--ivory);
}

.hero__kicker {
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 1.6rem;
  opacity: .92;
}

.hero__content h1 {
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  max-width: 16ch;
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(41, 52, 61, .35);
}

.hero__content h1 em {
  font-style: italic;
  font-weight: 200;
}

/* stacked homepage hero title: small "The" / big italic "Simpson House" / small "Inn" */
.hero__content h1.hero__title--stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.04;
  max-width: none;
}
.hero__title--stack .ht-affix {
  font-size: .4em;
  letter-spacing: .02em;
  font-style: italic;
}
.hero__content h1.hero__title--stack em {
  display: block;
  white-space: nowrap;
  font-style: normal;
}
@media (max-width: 480px) {
  .hero__content h1.hero__title--stack { font-size: clamp(2.3rem, 11vw, 3.4rem); }
}

.hero__rule {
  width: 64px;
  border: 0;
  border-top: 1px solid rgba(237, 227, 209, .7);
  margin: 0 0 1.6rem;
}

.hero__content p {
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: 2.6rem;
  opacity: .92;
}

.btn--ghost {
  border-color: var(--ivory);
  color: var(--ivory);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--slate);
}

/* ---------- bands & layout ---------- */
.section { padding: clamp(4rem, 9vw, 7rem) 1.5rem; }
.section--intro { padding-bottom: clamp(1.25rem, 2.5vw, 2rem); }

.section--dark { background: var(--slate); color: var(--ivory); }

.section--dark .kicker { color: var(--sage); }

.section__inner { max-width: var(--max); margin: 0 auto; }

.narrow {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.narrow--wide { max-width: 900px; }

.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}

/* ---------- full-bleed feature (image half / text half) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(80vh, 780px);
}

.feature__media { position: relative; overflow: hidden; }

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

.feature__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(2rem, 6vw, 5.5rem);
  background: var(--ivory);
  color: var(--slate);
}

.feature__text > * { max-width: 54ch; }

.feature--dark .feature__text {
  background: var(--slate);
  color: var(--ivory);
}

.feature--dark .kicker { color: var(--sage); }

.feature--reverse .feature__media { order: 2; }
.feature--reverse .feature__text { order: 1; }

.feature__specs {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.4rem;
}

.feature--dark .feature__specs { color: var(--sage); }

/* nested sub-property (Lotus Suite) */
.subproperty {
  margin-top: 2.4rem;
  padding: 1.8rem 1.8rem 2rem;
  border: 1px solid rgba(49, 62, 72, .3);
  width: 100%;
}

.feature--dark .subproperty { border-color: rgba(237, 227, 209, .35); }

.subproperty h3 { margin-bottom: .4rem; }

.subproperty .btn-row { margin-top: 1.2rem; }

/* press logos */
.press-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--max);
  margin: 3rem auto 0;
}

.press-grid img {
  max-height: 74px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .8;
}

/* about: team photo */
.team-photo {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  text-align: center;
}

.team-photo img { width: 100%; }

.team-photo .placeholder { aspect-ratio: 4 / 3; }

.team-photo figcaption {
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--brown);
}

/* about gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: var(--max);
  margin: 3.5rem auto 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* invest pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
  max-width: var(--max);
  margin: 3rem auto 0;
}

.pillar {
  background: var(--slate);
  color: var(--ivory);
  text-align: center;
  padding: 3rem 1.2rem;
  font-family: var(--serif);
  font-weight: 200;
  font-size: 1.15rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section--dark .pillar {
  background: transparent;
  border: 1px solid rgba(237, 227, 209, .35);
}

/* event-type cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  max-width: var(--max);
  margin: 3rem auto 0;
}

.card {
  border: 1px solid rgba(49, 62, 72, .3);
  padding: 2.4rem 2.1rem;
  text-align: left;
}

.section--dark .card { border-color: rgba(237, 227, 209, .35); }

.card h3 { margin-bottom: .4rem; }

.card__kicker {
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.1rem;
}

.section--dark .card__kicker { color: var(--sage); }

.card__facts {
  font-size: .88rem;
  letter-spacing: .04em;
  margin-bottom: 0;
  border-top: 1px solid rgba(49, 62, 72, .2);
  padding-top: 1rem;
  color: var(--brown);
}

.section--dark .card__facts {
  border-top-color: rgba(237, 227, 209, .25);
  color: var(--sage);
}

/* pricing */
.price-row {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  margin: 2.2rem 0;
}

.price__amount {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.price__unit {
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-left: .5rem;
  color: var(--sage);
}

/* numbered steps */
.steps {
  text-align: left;
  max-width: 580px;
  margin: 0 auto 1.6rem;
  padding-left: 1.4rem;
}

.steps li { margin-bottom: 1rem; }

/* ---------- Drawing Room (private events) ---------- */
.chapter {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 2.4rem;
  text-align: center;
}

.section--dark .chapter { color: var(--sage); }

.facts-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.6rem;
  max-width: 980px;
  margin: 2.4rem auto 0;
  text-align: center;
}

.fact h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .5rem;
}

.section--dark .fact h3 { color: var(--sage); }

.fact p { margin-bottom: 0; font-size: .98rem; line-height: 1.5; }

.fact .fact__big {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.2;
}

/* gallery: featured image + labeled thumbs */
.gallery-viewer { max-width: var(--max); margin: 0 auto; }

.gallery-viewer__stage {
  position: relative;
  height: 0;
  padding-bottom: 62.5%; /* 16:10 - works in all browsers */
  overflow: hidden;
  background: var(--slate);
}

.gallery-viewer__stage img,
.gallery-viewer__stage .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-viewer__counter {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  color: var(--ivory);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .22em;
  background: rgba(41, 52, 61, .55);
  padding: .3rem .8rem;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-thumbs button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
}

.gallery-thumbs .thumb-box {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 66.67%; /* 3:2 - works in all browsers */
  overflow: hidden;
  background: var(--slate);
  border: 2px solid transparent;
}

.gallery-thumbs button[aria-current="true"] .thumb-box { border-color: var(--rust); }

.gallery-thumbs img,
.gallery-thumbs .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs .thumb-label {
  display: block;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: .55rem;
  color: var(--slate);
}

/* photo placeholder until final assets arrive */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate);
  color: rgba(237, 227, 209, .55);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  min-height: 100%;
}

/* numbered event scenes */
.scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
}

.scene:last-child { margin-bottom: 0; }

.scene--reverse .scene__media { order: 2; }
.scene--reverse .scene__body { order: 1; }

.scene__media {
  position: relative;
  height: 0;
  padding-bottom: 75%; /* 4:3 - works in all browsers */
  overflow: hidden;
}

.scene__media img,
.scene__media .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene__num {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--brown);
  line-height: 1;
  margin-bottom: .6rem;
}

.section--dark .scene__num { color: var(--sage); }

.scene__kicker {
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: .9rem;
}

.section--dark .scene__kicker { color: var(--sage); }

.scene__tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 200;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.scene__facts {
  font-size: .88rem;
  letter-spacing: .04em;
  border-top: 1px solid rgba(49, 62, 72, .2);
  padding-top: 1rem;
  margin-bottom: 0;
  color: var(--brown);
}

.section--dark .scene__facts {
  border-top-color: rgba(237, 227, 209, .25);
  color: var(--sage);
}

/* site plan */
.siteplan {
  max-width: 900px;
  margin: 3rem auto 0;
  text-align: center;
}

.siteplan .placeholder,
.siteplan img { width: 100%; aspect-ratio: 16 / 10; }

.siteplan figcaption {
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--brown);
}

/* airtable inquiry embed */
.airtable-embed {
  width: 100%;
  max-width: 760px;
  height: 1600px; /* tall enough to avoid inner scroll; Airtable can't auto-size cross-origin */
  border: 1px solid rgba(49, 62, 72, .25);
  background: transparent;
  margin: 2.5rem auto 0;
  display: block;
}

/* ---------- forms ---------- */
.form {
  max-width: 580px;
  margin: 2.4rem auto 0;
  text-align: left;
}

.form label {
  display: block;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 1.2rem 0 .4rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--slate);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(49, 62, 72, .4);
}

.section--dark .form input,
.section--dark .form select,
.section--dark .form textarea {
  background: rgba(237, 227, 209, .1);
  border-color: rgba(237, 227, 209, .45);
  color: var(--ivory);
}

.section--dark .form ::placeholder { color: rgba(237, 227, 209, .6); }

.form textarea { min-height: 150px; resize: vertical; }

.form .btn { margin-top: 1.6rem; }

/* contact page property list */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: var(--max);
  margin: 3rem auto 0;
}

.contact-card {
  border: 1px solid rgba(49, 62, 72, .3);
  padding: 2.2rem 1.6rem;
  text-align: center;
}

.contact-card h3 { font-size: 1.35rem; }

.contact-card p { margin-bottom: .45rem; font-size: .95rem; }

.contact-card a { text-decoration: none; border-bottom: 1px solid var(--brown); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--slate-deep);
  color: var(--ivory);
  padding: clamp(3.5rem, 7vw, 5rem) 1.5rem 2rem;
  font-size: .92rem;
}

.site-footer a { color: var(--ivory); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; }

.footer-newsletter {
  max-width: var(--max);
  margin: 0 auto 3.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(237, 227, 209, .22);
  padding-bottom: 3rem;
}

.footer-newsletter h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: .5rem;
}

.footer-newsletter p { margin-bottom: 1.6rem; opacity: .85; }

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  width: min(360px, 100%);
  padding: .85rem 1.1rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid rgba(237, 227, 209, .5);
  background: rgba(237, 227, 209, .1);
  color: var(--ivory);
}

.newsletter-form input::placeholder { color: rgba(237, 227, 209, .6); }

.newsletter-form .btn:hover,
.newsletter-form .btn:focus-visible { background: var(--ivory); border-color: var(--ivory); color: var(--slate); }

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.footer-brand img { width: 200px; margin-bottom: 1.3rem; }

.footer-col h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; }

.footer-logos {
  max-width: var(--max);
  margin: 3.2rem auto 0;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(237, 227, 209, .22);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 3.4rem);
}

.footer-logos img {
  max-height: 52px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.footer-meta {
  max-width: var(--max);
  margin: 2.2rem auto 0;
  text-align: center;
  font-size: .78rem;
  opacity: .6;
}

/* legal / prose pages */
.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.prose h1 { text-align: center; margin-bottom: .4rem; }

.prose .prose__subtitle {
  text-align: center;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--brown);
  margin-bottom: 3rem;
}

.prose h2 { font-size: 1.5rem; margin-top: 2.8rem; }

.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .8rem; }

/* ---------- scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .scene, .scene--reverse { grid-template-columns: 1fr; }
  .scene--reverse .scene__media { order: 0; }
  .scene--reverse .scene__body { order: 0; }
  .scene__media { order: -1; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature--reverse { grid-template-columns: 1fr; min-height: 0; }
  .feature--reverse .feature__media { order: 1; }
  .feature--reverse .feature__text { order: 2; }
  .feature__media { min-height: 46vh; position: relative; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }

  .nav-bar {
    justify-content: space-between;
    padding: .6rem 1rem;
    gap: .8rem;
  }

  /* Equal-width Menu / Book Now boxes flanking a centered logo (matches Craft House) */
  .nav-toggle {
    flex: 1 1 0;
    padding: .6rem 0;
    text-align: center;
  }
  .book-now { flex: 1 1 0; }
  .book-now .btn {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-home { flex: 0 0 auto; }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
  }
  .site-nav.open { display: block; }

  .site-nav ul { flex-direction: column; gap: .1rem; padding: .6rem 0 1rem; }
  .site-nav a { padding: .45rem 0; }

  .site-nav .dropdown > ul {
    display: flex;
    position: static;
    transform: none;
    border: none;
    background: transparent;
    padding-left: 1.2rem;
  }

  .hero img { height: 62vh; }

  .airtable-embed { height: 1900px; }
}

/* ============================================================
   Simpson House Inn additions — v1
   ============================================================ */

/* header wordmark fallback (until brand logo folder is connected) */
.site-header .wordmark {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  line-height: 1.15;
}
.site-header .wordmark small {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .42em;
  color: var(--brown);
  margin-top: .35rem;
}

/* room index cards */
.room-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
  max-width: var(--max);
  margin: 2.6rem auto 0;
}
.room-card {
  border: 1px solid rgba(49, 62, 72, .25);
  background: rgba(255, 255, 255, .35);
  display: flex;
  flex-direction: column;
}
.section--dark .room-card {
  border-color: rgba(237, 227, 209, .3);
  background: transparent;
}
.room-card__media {
  position: relative;
  height: 0;
  padding-bottom: 66.67%; /* 3:2 — no aspect-ratio, Safari-safe */
  overflow: hidden;
  background: var(--slate);
}
.room-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card__body { padding: 1.6rem 1.5rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.room-card__body h3 { margin-bottom: .3rem; font-size: 1.45rem; }
.room-card__specs {
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .9rem;
}
.section--dark .room-card__specs { color: var(--sage); }
.room-card__body p { font-size: .95rem; line-height: 1.65; }
.room-card__body .btn { margin-top: auto; align-self: flex-start; padding: .6rem 1.4rem; }

/* room detail: gallery (featured stage + thumbs), padding-bottom technique */
.room-gallery { max-width: var(--max); margin: 0 auto; }
.room-gallery__stage {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--slate);
}
.room-gallery__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-gallery__counter {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  color: var(--ivory);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .22em;
  background: rgba(41, 52, 61, .55);
  padding: .3rem .8rem;
}
.room-gallery__thumbs {
  display: flex;
  gap: .8rem;
  margin-top: .8rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
  padding-bottom: .4rem;
}
.room-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.room-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--sage); }
.room-gallery__thumbs button { flex: 0 0 clamp(120px, 15vw, 170px); }
.room-gallery__thumbs button {
  border: 2px solid transparent;
  background: none;
  padding: 0;
  cursor: pointer;
}
.room-gallery__thumbs button[aria-current="true"] { border-color: var(--rust); }
.room-gallery__thumbs .thumb-box {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 66.67%;
  overflow: hidden;
  background: var(--slate);
}
.room-gallery__thumbs img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* room detail: amenity list */
.amenity-list {
  columns: 2;
  column-gap: 3rem;
  list-style: none;
  margin: 1.6rem auto 0;
  padding: 0;
  max-width: 640px;
  text-align: left;
}
.amenity-list li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(49, 62, 72, .16);
  font-size: .95rem;
  break-inside: avoid;
}
.section--dark .amenity-list li { border-bottom-color: rgba(237, 227, 209, .2); }

.room-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.room-nav a { text-decoration: none; border-bottom: 1px solid var(--brown); padding-bottom: .2rem; }

/* breakfast menu */
.menu {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.menu h2 {
  font-size: 1.6rem;
  margin: 2.8rem 0 .4rem;
}
.menu .menu__rule {
  width: 46px;
  border: 0;
  border-top: 1px solid var(--brown);
  margin: .8rem auto 1.4rem;
}
.menu ul { list-style: none; margin: 0; padding: 0; }
.menu li { padding: .45rem 0; }
.menu .menu__note {
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--brown);
  margin-top: 1.2rem;
}
.menu .menu__dish em { font-family: var(--serif); }

/* review band */
.review { text-align: center; max-width: 820px; margin: 0 auto; }
.review .stars {
  color: var(--brown);
  letter-spacing: .35em;
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}
.section--dark .review .stars { color: var(--sage); }
.review blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
}
.review cite {
  font-style: normal;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.review .btn-row { margin-top: 2rem; }

/* footer extras: award badge + hearth family strip */
.footer-award {
  text-align: center;
  margin: 0 auto 2.6rem;
}
.footer-award img { max-height: 110px; width: auto; margin: 0 auto .8rem; }
.footer-award a { display: inline-block; margin: 0 .9rem; vertical-align: middle; }
.footer-family > p {
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  opacity: .85;
}

/* hero video-poster fallback + shorter interior heroes */
.hero--short img { height: min(58vh, 560px); }

@media (max-width: 760px) {
  .amenity-list { columns: 1; }
}

/* visually hidden (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Homepage v2 — rhythm breakers
   ============================================================ */

/* sage accent band */
.section--sage { background: var(--sage); color: var(--slate); }
.section--sage .kicker { color: var(--rust); }

/* stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}
.stat__label {
  display: block;
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-top: .7rem;
  color: var(--sage);
}

@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
}

/* footer family strip v2 — ivory band, constrained logo row
   (the Wix-hosted sister logos are dark-on-transparent or white-boxed;
   they need a light background until brand-folder files replace them) */
.footer-family {
  background: var(--ivory);
  color: var(--slate);
  max-width: none;
  width: auto;
  text-align: center;
  margin: 4.2rem -1.5rem 0;
  padding: 3.2rem 1.5rem 3.4rem;
  border-top: none;
}
.footer-family > p { color: var(--brown); opacity: 1; }
.footer-family .family-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  max-width: var(--max);
  margin: 0 auto;
}
.footer-family .family-logos img {
  max-height: 44px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.footer-family a:hover img, .footer-family a:focus-visible img { opacity: .75; }

/* stats cell */
.stat { padding: 0 .5rem; }

/* estate gallery — three images, room to breathe */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: var(--max);
  margin: 3rem auto 0;
}
.gallery .g-box {
  position: relative;
  height: 0;
  padding-bottom: 72%; /* Safari-safe */
  overflow: hidden;
  background: var(--slate);
}
.gallery .g-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* footer vertical rhythm */
.footer-award { margin: 0 auto 3.6rem; }
.footer-newsletter { margin-bottom: 3.6rem; }
.footer-meta { margin-top: 2.8rem; }

/* pure full-bleed image band (La Fantaisie style — image speaks for itself) */
.bleed { margin: 0; }
.bleed img {
  width: 100%;
  height: min(88vh, 860px);
  object-fit: cover;
  display: block;
}



/* room filmstrip — full-bleed horizontal ribbon, editorial */
.filmstrip-section { padding: clamp(2.2rem, 4vw, 3.4rem) 0 clamp(3rem, 6vw, 4.5rem); }
.filmstrip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: var(--max);
  margin: 0 auto 1.6rem;
  padding: 0 1.5rem;
}
.filmstrip-head .kicker { margin-bottom: 0; }
.filmstrip-head a {
  font-weight: 500;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--brown);
  padding-bottom: .2rem;
  white-space: nowrap;
}
.filmstrip {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 0 clamp(1.5rem, 6vw, 5rem) 1.2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) transparent;
}
.filmstrip::-webkit-scrollbar { height: 4px; }
.filmstrip::-webkit-scrollbar-track { background: transparent; }
.filmstrip::-webkit-scrollbar-thumb { background: var(--sage); }
.filmstrip a {
  flex: 0 0 auto;
  width: clamp(240px, 26vw, 350px);
  scroll-snap-align: start;
  text-decoration: none;
}
.filmstrip .film-box {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 72%; /* Safari-safe */
  overflow: hidden;
  background: var(--slate);
}
.filmstrip .film-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.filmstrip a:hover .film-box img,
.filmstrip a:focus-visible .film-box img { transform: scale(1.035); }
.filmstrip .film-label {
  display: block;
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: .7rem;
}

/* room-collection jump links */
.jump-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.6rem;
}
.jump-links a {
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--brown);
}
.jump-links a:hover,
.jump-links a:focus-visible { border-bottom-color: var(--rust); color: var(--rust); }

/* anchored sections clear the sticky nav ribbon */
#main-inn, #carriage-house, #cottages { scroll-margin-top: 70px; }

#inquire { scroll-margin-top: 70px; }

/* ---------- Flodesk newsletter form — match site style ---------- */
#fd-form-6a55abb2d3364c2f23c24057,
#fd-form-6a55abb2d3364c2f23c24057 [class*="__container"],
#fd-form-6a55abb2d3364c2f23c24057 [class*="__form"],
#fd-form-6a55abb2d3364c2f23c24057 [class*="__content"],
#fd-form-6a55abb2d3364c2f23c24057 [class^="ff-6a55abb2d3364c2f23c24057 "] {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#fd-form-6a55abb2d3364c2f23c24057 [class*="__title"] {
  font-family: var(--serif) !important;
  font-weight: 200 !important;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem) !important;
  color: var(--ivory) !important;
  letter-spacing: 0 !important;
  margin-bottom: .5rem !important;
}
#fd-form-6a55abb2d3364c2f23c24057 [class*="__subtitle"] {
  font-family: var(--sans) !important;
  color: var(--ivory) !important;
  opacity: .85 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
}
#fd-form-6a55abb2d3364c2f23c24057 input {
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  border: 1px solid rgba(237, 227, 209, .5) !important;
  background: rgba(237, 227, 209, .1) !important;
  color: var(--ivory) !important;
  border-radius: 0 !important;
  padding: .85rem 1.1rem !important;
  box-shadow: none !important;
}
#fd-form-6a55abb2d3364c2f23c24057 input::placeholder { color: rgba(237, 227, 209, .6) !important; }
#fd-form-6a55abb2d3364c2f23c24057 [class*="__label"] {
  color: rgba(237, 227, 209, .7) !important;
  font-family: var(--sans) !important;
}
#fd-form-6a55abb2d3364c2f23c24057 button,
#fd-form-6a55abb2d3364c2f23c24057 [class*="__button"] {
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  font-size: .78rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  border: 1px solid var(--ivory) !important;
  background: transparent !important;
  color: var(--ivory) !important;
  border-radius: 0 !important;
  padding: .85rem 2rem !important;
  box-shadow: none !important;
}
#fd-form-6a55abb2d3364c2f23c24057 button:hover,
#fd-form-6a55abb2d3364c2f23c24057 [class*="__button"]:hover {
  background: var(--ivory) !important;
  color: var(--slate) !important;
  border-color: var(--ivory) !important;
}

/* ---------- Afternoon Tea menu modal ---------- */
.tea-menu {
  border: none;
  padding: 0;
  max-width: 640px;
  width: calc(100% - 2rem);
  max-height: calc(100dvh - 2.5rem);
  background: transparent;
  color: var(--slate);
  overflow: visible;
}
.tea-menu::backdrop {
  background: rgba(41, 52, 61, .72);
  backdrop-filter: blur(2px);
}
.tea-menu__inner {
  position: relative;
  background: var(--ivory);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(41, 52, 61, .45);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
}
.tea-menu__close-form { margin: 0; }
.tea-menu__close {
  position: absolute;
  top: .5rem;
  right: .5rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  line-height: 1;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  color: var(--brown);
  cursor: pointer;
  border-radius: 50%;
}
.tea-menu__close:hover,
.tea-menu__close:focus-visible { color: var(--rust); background: rgba(109, 53, 40, .08); }
.tea-menu__sheet {
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}
.tea-menu__eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .62rem;
  color: var(--brown);
  margin: 0 0 1rem;
}
.tea-menu__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.1;
  margin: 0;
}
.tea-menu__title em { font-style: italic; }
.tea-menu__note {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .66rem;
  color: var(--brown);
  margin: .6rem 0 0;
}
.tea-menu__rule {
  border: none;
  border-top: 1px solid rgba(109, 53, 40, .3);
  width: 90px;
  margin: 1.5rem auto;
}
.tea-menu__group { margin: 1.6rem 0; }
.tea-menu__kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: var(--rust);
  margin: 0 0 .75rem;
}
.tea-menu__label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .58rem;
  color: var(--brown);
  margin: 1.1rem 0 .5rem;
}
.tea-menu__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--brown);
  margin: .2rem 0 .6rem;
}
.tea-menu__item {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  margin: .35rem 0;
}
.tea-menu__item strong { font-weight: 600; }
.tea-menu__item em { font-style: italic; color: var(--brown); }
.tea-menu__cta { justify-content: center; margin-top: 1.25rem; }
@media (prefers-reduced-motion: no-preference) {
  .tea-menu[open] { animation: teaMenuIn .28s ease both; }
  @keyframes teaMenuIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}

/* ---------- Understated brand band (replaces stat counter) ---------- */
.section--band {
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.band-headline {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 200;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.1;
  color: var(--ivory);
}
.band-headline em { font-style: italic; }
.band-sub {
  max-width: 640px;
  margin: .75rem auto 0;
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  line-height: 1.5;
  color: var(--sage);
}

/* ---------- Jump-link offset for sticky nav ---------- */
#estate-breakfast, #afternoon-tea { scroll-margin-top: 96px; }

/* ---------- Menu modal: list items (breakfast) ---------- */
.tea-menu__list {
  list-style: none;
  margin: .5rem 0 0;
  padding: 0;
}
.tea-menu__list li {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.55;
  margin: .3rem 0;
}

/* ============================================================
   Corporate Retreats page
   ============================================================ */
.retreat-grid {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.retreat-card {
  background: #FBF8F1;
  border: 1px solid #DCD1BC;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.retreat-card__media {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  cursor: zoom-in;
  background: none;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.retreat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.retreat-card__media:hover img,
.retreat-card__media:focus-visible img { transform: scale(1.04); }
.retreat-card__expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(237, 227, 209, .92);
  border: 1px solid #DCD1BC;
  border-radius: 16px;
  padding: 6px 12px;
}
.retreat-card__media:focus-visible { outline: 2px solid var(--rust); outline-offset: -2px; }
.retreat-card__body { padding: 1.25rem 1.4rem 1.5rem; }
.retreat-card__body h3 {
  font-family: var(--serif);
  font-weight: 200;
  font-size: 1.4rem;
  margin: 0 0 .35rem;
}
.retreat-card__body p { margin: 0 0 .25rem; font-size: .95rem; line-height: 1.5; }
.retreat-card__sleeps { color: var(--rust) !important; }

.retreat-together {
  margin: 2.75rem auto 0;
  border-top: 1px solid var(--brown);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.retreat-together__big { font-family: var(--serif); font-weight: 200; font-size: clamp(1.3rem, 3vw, 1.6rem); margin: 0; }
.retreat-together__big em { color: var(--rust); font-style: normal; }
.retreat-together__sub { font-size: .9rem; margin: 0; opacity: .8; }
.retreat-breakfast {
  background: #FBF8F1;
  border: 1px solid #DCD1BC;
  border-radius: 12px;
  padding: 1.15rem 1.6rem;
  margin-top: 1.25rem;
}
.retreat-breakfast p { margin: 0; font-size: 1rem; line-height: 1.55; }
.retreat-breakfast strong { color: var(--rust); font-weight: 600; }

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.duo__media img { width: 100%; border-radius: 12px; display: block; }
.duo__text h3 { font-family: var(--serif); font-weight: 200; font-size: 1.6rem; margin: .25rem 0 .5rem; }
.duo__text p { margin: 0; line-height: 1.6; }

.retreat-lead { font-size: 1.05rem; line-height: 1.6; margin: 1.5rem 0; }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.info-card {
  background: #FBF8F1;
  border: 1px solid #DCD1BC;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.section--sage .info-card,
.section--sage .retreat-breakfast { background: rgba(255,255,255,.45); }
.info-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.info-card__body { padding: 1.1rem 1.4rem 1.35rem; }
.info-card__body h3 { font-family: var(--serif); font-weight: 200; font-size: 1.3rem; margin: .3rem 0 .4rem; }
.info-card__body p { margin: 0; font-size: .95rem; line-height: 1.55; }
.info-card--text { justify-content: center; }

.itinerary { margin: 1.5rem 0; }
.itinerary__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.75rem;
  padding: 1.35rem 0;
  border-top: 1px solid #DCD1BC;
}
.itinerary__row:last-child { border-bottom: 1px solid #DCD1BC; }
.itinerary__day { font-family: var(--serif); font-weight: 200; font-style: italic; font-size: 1.65rem; color: var(--rust); margin: 0; }
.itinerary__row p:last-child { margin: 0; line-height: 1.65; }

.retreat-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.retreat-cta__crest { width: 72px; height: 72px; margin-bottom: .25rem; }
.retreat-cta__display { font-family: var(--serif); font-weight: 200; font-style: italic; font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--ivory); margin: 0; }
.retreat-cta .kicker { color: var(--sage); margin: 0; }
.retreat-cta .btn-row { justify-content: center; margin-top: .75rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: rgba(41, 52, 61, .9);
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: default;
}
.lightbox__ctl {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(237, 227, 209, .92);
  border: 1px solid #DCD1BC;
  color: var(--slate);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__ctl:hover { background: var(--ivory); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__count {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .16em;
  background: rgba(237, 227, 209, .92);
  border: 1px solid #DCD1BC;
  border-radius: 16px;
  padding: 7px 16px;
  color: var(--slate);
}

@media (max-width: 860px) {
  .retreat-grid { grid-template-columns: 1fr; }
  .duo, .info-grid { grid-template-columns: 1fr; }
  .itinerary__row { grid-template-columns: 1fr; gap: .4rem; }
  .retreat-cta { flex-direction: column; align-items: flex-start; }
}

/* Corporate: breakfast cup, locations map */
.retreat-breakfast { display: flex; align-items: center; gap: 1.15rem; }
.retreat-breakfast__cup { width: 54px; height: auto; flex-shrink: 0; }
.section--sage .retreat-breakfast__cup { opacity: .9; }

.retreat-map {
  max-width: var(--max);
  margin: 2rem auto 0;
  height: 460px;
  border: 1px solid #DCD1BC;
  border-radius: 12px;
  overflow: hidden;
  background: #EDE7DA;
}
.retreat-pin__dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rust);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--ivory);
  box-shadow: 0 2px 6px rgba(41,52,72,.35);
}
.leaflet-popup-content { font-family: var(--sans); font-size: .9rem; line-height: 1.45; }
.leaflet-popup-content strong { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; }
.leaflet-popup-content a { color: var(--rust); font-weight: 600; }
@media (max-width: 860px) { .retreat-map { height: 360px; } }

/* ---------- Gallery / carousel arrow controls ---------- */
.room-gallery__stage { position: relative; }
.gallery-arrow,
.filmstrip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #DCD1BC;
  background: rgba(237, 227, 209, .92);
  color: var(--slate);
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 8px rgba(41, 52, 72, .22);
  transition: background .2s ease, transform .2s ease;
}
.gallery-arrow:hover,
.filmstrip-arrow:hover { background: var(--ivory); }
.gallery-arrow:focus-visible,
.filmstrip-arrow:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.gallery-arrow--prev { left: 14px; }
.gallery-arrow--next { right: 14px; }

.filmstrip-wrap { position: relative; }
.filmstrip-arrow--prev { left: 10px; }
.filmstrip-arrow--next { right: 10px; }
/* Hide the relevant arrow when the strip is at either end */
.filmstrip-wrap.at-start .filmstrip-arrow--prev,
.filmstrip-wrap.at-end .filmstrip-arrow--next { opacity: 0; pointer-events: none; }
@media (max-width: 700px) {
  .gallery-arrow, .filmstrip-arrow { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* Tripadvisor badge: the official widget stays in the DOM (compliance/tracking)
   but is visually hidden; we display a self-hosted white-on-transparent
   version of the same badge (images/tc-2025-white.png) instead. */
.TA_certificateOfExcellence { display: none !important; }
.ta-badge { display: inline-block; vertical-align: middle; margin: 0 .9rem; }
.ta-badge img { height: 110px; width: auto; }
/* ---------- Sticky-nav home badge (fades in once header logo scrolls away) ---------- */
.nav-home {
  display: inline-flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}
.nav-home img { height: 30px; width: auto; display: block; }
.nav-bar.show-home .nav-home { opacity: 1; visibility: visible; }
@media (prefers-reduced-motion: reduce) { .nav-home { transition: none; } }

/* Amenities: single-column list when paired with the breakfast photo */
.amenity-list--single { columns: 1; max-width: none; margin-top: 1rem; }

/* Room gallery: show full photo (no crop for portraits) + expand affordance */
.room-gallery__stage { background: var(--ivory); cursor: zoom-in; }
.room-gallery__stage img { object-fit: contain; }
.gallery-expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--slate);
  background: rgba(237, 227, 209, .92);
  border: 1px solid #DCD1BC;
  border-radius: 16px;
  padding: 6px 12px;
  pointer-events: none;
}
