/* ============================================================
   The Craft House Inn — static site, brand v1
   Type:   Gallery Modern (headlines) + Arquitecta (body + labels)
   Colors: Olive 434740 · Cape Blue 38444C · Blush 725343 · Hazel A25A34 · Fawn 9B897A · Cream EAE6DB
   Layout: mirrors the Simpson House Inn build (alternating cream/olive bands, sticky nav)
   ============================================================ */

@font-face{font-family:"Gallery Modern";src:url("../fonts/gallerymodern.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:"Arquitecta";src:url("../fonts/arquitecta-regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:"Arquitecta";src:url("../fonts/arquitecta-medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:"Arquitecta";src:url("../fonts/arquitecta-bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;}

:root {
  --ivory:  #EAE6DB;
  --slate:  #434740;
  --slate-deep: #383B33;
  --sage:   #9B897A;
  --brown:  #725343;
  --rust:   #A25A34;
  --cape:   #38444C;
  --max:    1240px;
  --serif:  "Gallery Modern", Georgia, serif;
  --sans:   "Arquitecta", "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: 400;
  line-height: 1.08;
  margin: 0 0 1.4rem;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); letter-spacing: .015em; }
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(280px, 64vw);
  margin: 0 auto;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--ivory);
  border-top: 1px solid rgba(67, 71, 64, .14);
  border-bottom: 1px solid rgba(67, 71, 64, .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-home { display: none; }
.nav-home img { height: 40px; width: auto; display: block; }

.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(67, 71, 64, .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(155, 137, 122, .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; }

/* Direct child only — the hero photo. Keeps these rules off nested images
   such as the wordmark lockup inside .hero__content. */
.hero > img {
  width: 100%;
  height: min(92vh, 900px);
  object-fit: cover;
}

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

/* deeper scrim for heroes over bright, high-key photography */
.hero--scrim::after {
  background:
    linear-gradient(rgba(56, 59, 51, .44) 0%, rgba(56, 59, 51, .36) 35%, rgba(56, 59, 51, .66) 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(56, 59, 51, .35);
}

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

/* 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); }
}

/* homepage hero: brand wordmark in place of type */
.hero__content h1.hero__wordmark {
  max-width: none;
  margin-bottom: 1.9rem;
  text-shadow: none;
  line-height: 0;
}
.hero__wordmark img {
  display: block;
  width: clamp(19rem, 50vw, 42rem);
  height: auto;
  filter: drop-shadow(0 2px 18px rgba(13, 33, 37, .75));
}

.hero__rule {
  width: 64px;
  border: 0;
  border-top: 1px solid rgba(234, 230, 219, .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;
  /* thin letterspaced caps need help against busy photography */
  text-shadow: 0 1px 14px rgba(13, 33, 37, .6);
}

.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(67, 71, 64, .3);
  width: 100%;
}

.feature--dark .subproperty { border-color: rgba(234, 230, 219, .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: 400;
  font-size: 1.15rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section--dark .pillar {
  background: transparent;
  border: 1px solid rgba(234, 230, 219, .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(67, 71, 64, .3);
  padding: 2.4rem 2.1rem;
  text-align: left;
}

.section--dark .card { border-color: rgba(234, 230, 219, .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(67, 71, 64, .2);
  padding-top: 1rem;
  color: var(--brown);
}

.section--dark .card__facts {
  border-top-color: rgba(234, 230, 219, .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: 400;
  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: 400;
  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(56, 59, 51, .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(234, 230, 219, .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: 400;
  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: 400;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

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

.section--dark .scene__facts {
  border-top-color: rgba(234, 230, 219, .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;
  border: 1px solid rgba(67, 71, 64, .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(67, 71, 64, .4);
}

.section--dark .form input,
.section--dark .form select,
.section--dark .form textarea {
  background: rgba(234, 230, 219, .1);
  border-color: rgba(234, 230, 219, .45);
  color: var(--ivory);
}

.section--dark .form ::placeholder { color: rgba(234, 230, 219, .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(67, 71, 64, .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(234, 230, 219, .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(234, 230, 219, .5);
  background: rgba(234, 230, 219, .1);
  color: var(--ivory);
}

.newsletter-form input::placeholder { color: rgba(234, 230, 219, .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(234, 230, 219, .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-home {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
  }
  .nav-bar.show-home .nav-home { opacity: 1; visibility: visible; }

  .nav-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: .8rem;
    padding: .6rem 1rem;
  }
  .nav-toggle { justify-self: start; }
  .nav-home { justify-self: center; }
  .book-now { justify-self: end; }

  /* Equal-width Menu / Book Now boxes so the badge sits dead-center */
  .nav-toggle,
  .book-now .btn {
    min-width: 7.25rem;
    padding: .5rem .9rem;
    text-align: center;
    box-sizing: border-box;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
  }
  .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: 400;
  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(67, 71, 64, .25);
  background: rgba(255, 255, 255, .35);
  display: flex;
  flex-direction: column;
}
.section--dark .room-card {
  border-color: rgba(234, 230, 219, .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(56, 59, 51, .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(67, 71, 64, .16);
  font-size: .95rem;
  break-inside: avoid;
}
.section--dark .amenity-list li { border-bottom-color: rgba(234, 230, 219, .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: 400;
  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; }
.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: 400;
  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(234, 230, 219, .5) !important;
  background: rgba(234, 230, 219, .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(234, 230, 219, .6) !important; }
#fd-form-6a55abb2d3364c2f23c24057 [class*="__label"] {
  color: rgba(234, 230, 219, .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;
}

/* ============================================================
   The Craft House Inn — component additions (home/services/events)
   ============================================================ */
.section--muted { background: #E3DECF; }

.section-head { max-width: 780px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head .kicker { justify-content: center; }
.section-head h2 { margin-bottom: 1.1rem; }
.section-lede { font-size: 1.05rem; line-height: 1.7; }

.feature-cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.6rem, 3vw, 2.6rem);
}
.fcard { padding: .2rem .2rem 1rem; }
.fcard h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: .01em;
  margin-bottom: .5rem;
  color: var(--cape);
}
.fcard p { font-size: .95rem; line-height: 1.7; margin: 0; }
.fcard small { display: inline-block; margin-top: .4rem; color: var(--brown); font-style: italic; }

.review-band { text-align: center; }
.review {
  max-width: 780px;
  margin: 0 auto;
  border: 0;
  padding: 0;
  quotes: none;
}
/* Guest quote sits in body copy (Arquitecta), not the display serif.
   Neither webfont ships an italic face, so italic here would be a
   browser-synthesised oblique — kept upright instead. */
.review p {
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  margin: 0;
}
.review cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--sage);
}
.press-line {
  margin-top: 2.8rem;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage);
}

.rules-list { list-style: none; padding: 0; margin: 1.6rem 0 0; max-width: 860px; }
.rules-list li {
  position: relative;
  padding: .75rem 0 .75rem 1.7rem;
  border-bottom: 1px solid rgba(67, 71, 64, .16);
  line-height: 1.6;
}
.rules-list li::before { content: "—"; position: absolute; left: 0; color: var(--rust); }

/* ---------- Heading emphasis: Gallery Modern has no italic; render <em>
   accents as a normal-style Hazel accent on light bands, inherited on dark ---- */
h1 em, h2 em, h3 em, .fcard h3 em { font-style: normal; color: var(--rust); }
.hero__content h1 em { font-style: normal; color: inherit; }
.feature--dark h2 em, .feature--dark h3 em,
.section--dark h1 em, .section--dark h2 em, .section--dark h3 em,
.review-band em, .bleed em { color: inherit; }

/* Airtable inquiry embed on dark event band */
.section--dark .airtable-embed { border-color: rgba(234, 230, 219, .3); }

/* ---------- Room gallery lightbox (expand on click) ---------- */
.room-gallery__stage--zoom { cursor: zoom-in; }
.room-gallery__stage--zoom:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(24, 26, 22, .93);
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 12px 60px rgba(0, 0, 0, .55);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  line-height: 1;
  opacity: .85;
  transition: opacity .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { opacity: 1; }
.lightbox__close {
  top: clamp(.8rem, 2vw, 1.6rem);
  right: clamp(1rem, 2.5vw, 2rem);
  font-size: 2.4rem;
  padding: .2rem .6rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  padding: .4rem 1rem;
}
.lightbox__prev { left: clamp(.2rem, 1.5vw, 1.2rem); }
.lightbox__next { right: clamp(.2rem, 1.5vw, 1.2rem); }
.lightbox__counter {
  position: absolute;
  bottom: clamp(.8rem, 2vw, 1.4rem);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .2em;
}
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; opacity: 1; }

/* ---------- Gallery stage: show FULL photo (no crop), letterboxed, clickable ---------- */
.room-gallery__stage {
  height: min(74vh, 680px);
  padding-bottom: 0;           /* cancel the fixed 16:9 crop box */
}
.room-gallery__stage img {
  object-fit: contain;         /* portrait + landscape both shown in full */
}
.room-gallery__stage--zoom::after {
  content: "\2922  Enlarge";
  position: absolute;
  left: .9rem;
  bottom: .9rem;
  z-index: 3;
  background: rgba(24, 26, 22, .7);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .42rem .72rem;
  pointer-events: none;
}

/* ---------- Flodesk newsletter embed ----------
   Flodesk renders its own fonts/palette from its builder (PP-Editorial-New,
   Santa-Ana-TRIAL, a blue-slate panel). These overrides pull it onto the
   brand: Gallery Modern + Arquitecta on the footer's olive.

   Selectors are scoped to the embed container and match class *suffixes*
   (e.g. [class$="__title"]) so they survive Flodesk's form-id-scoped class
   names. !important is used deliberately: Flodesk injects ~29KB of scoped
   CSS into the container at runtime, and this is a third-party widget whose
   internals can shift. NOTE: restyling here means a redesign inside Flodesk
   will not flow through — the durable fix is to set these in the builder.
------------------------------------------------ */
#fd-form-6a56a3b080905de884720916 { --fd-ivory: #EAE6DB; }

/* Blanket base: nothing inside the embed falls back to Flodesk's own faces.
   This also stops the browser fetching PP-Editorial-New and Santa-Ana-TRIAL
   entirely (a trial licence has no business on a production site).
   The __title rule below is more specific, so Gallery Modern still wins. */
#fd-form-6a56a3b080905de884720916,
#fd-form-6a56a3b080905de884720916 * {
  font-family: var(--sans) !important;
}

/* drop the vendor panel so the form sits directly on the footer */
#fd-form-6a56a3b080905de884720916 [class*="ff-"],
#fd-form-6a56a3b080905de884720916 [class$="__container"],
#fd-form-6a56a3b080905de884720916 [class$="__form"] {
  background: transparent !important;
  border: 0 !important;
}

/* heading — matches the footer h2 it replaced */
#fd-form-6a56a3b080905de884720916 [class$="__title"],
#fd-form-6a56a3b080905de884720916 [class$="__title"] * {
  font-family: var(--serif) !important;
  font-weight: 400 !important;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem) !important;
  line-height: 1.15 !important;
  color: var(--fd-ivory) !important;
}

/* description */
#fd-form-6a56a3b080905de884720916 [class$="__subtitle"],
#fd-form-6a56a3b080905de884720916 [class$="__subtitle"] * {
  font-family: var(--sans) !important;
  font-size: 1.0625rem !important;
  line-height: 1.8 !important;
  color: var(--fd-ivory) !important;
  opacity: .85;
}

/* inputs — mirror the previous newsletter field styling */
#fd-form-6a56a3b080905de884720916 .fd-form-control,
#fd-form-6a56a3b080905de884720916 input[type="text"],
#fd-form-6a56a3b080905de884720916 input[type="email"] {
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  color: var(--fd-ivory) !important;
  background: rgba(234, 230, 219, .1) !important;
  border: 1px solid rgba(234, 230, 219, .5) !important;
  border-radius: 0 !important;
  padding: .85rem 1.1rem !important;
}
#fd-form-6a56a3b080905de884720916 input::placeholder {
  color: rgba(234, 230, 219, .6) !important;
  font-family: var(--sans) !important;
}
#fd-form-6a56a3b080905de884720916 input:focus {
  outline: 2px solid var(--rust) !important;
  outline-offset: 2px;
}

/* submit — matches .btn in the footer */
#fd-form-6a56a3b080905de884720916 .fd-btn,
#fd-form-6a56a3b080905de884720916 [class$="__button"] {
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  font-size: .78rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--fd-ivory) !important;
  background: transparent !important;
  border: 1px solid var(--fd-ivory) !important;
  border-radius: 0 !important;
  padding: .85rem 2rem !important;
  transition: background .25s, color .25s !important;
}
#fd-form-6a56a3b080905de884720916 .fd-btn:hover,
#fd-form-6a56a3b080905de884720916 .fd-btn:focus-visible {
  background: var(--fd-ivory) !important;
  color: var(--slate) !important;
}

/* success + error states inherit the brand voice too */
#fd-form-6a56a3b080905de884720916 [class*="__success"],
#fd-form-6a56a3b080905de884720916 [class*="__success"] *,
#fd-form-6a56a3b080905de884720916 [class*="__error"],
#fd-form-6a56a3b080905de884720916 [class*="__error"] * {
  font-family: var(--sans) !important;
  color: var(--fd-ivory) !important;
}

/* ---------- sliding gallery (About "The Property") — ported from De La Vina, click to expand ---------- */
.slider { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
.slider__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__slide {
  flex: 0 0 min(880px, 94%);
  scroll-snap-align: center;
  margin: 0;
}
.slider__slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  cursor: zoom-in;
}
.slider__slide figcaption {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: .8rem;
  color: var(--brown);
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.slider__btn {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rust);
  color: var(--rust);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.slider__btn:hover { background: var(--rust); color: var(--ivory); }
.slider__btn:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.slider__counter {
  font-size: .85rem;
  letter-spacing: .18em;
  color: var(--slate);
  min-width: 5.5em;
  text-align: center;
}
.section--muted .slider__slide figcaption { color: var(--brown); }
@media (prefers-reduced-motion: reduce) { .slider__track { scroll-behavior: auto; } }
