/* =============================================================
   Siesta Gardens · v2 Warm Editorial
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..900,0..100,0..1&family=Lora:ital,wght@0,400..700;1,400..700&family=Sacramento&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --burgundy: #8E2435;
  --burgundy-dark: #6A1A28;
  --olive: #909441;
  --olive-dark: #6F7232;
  --olive-soft: #BFC089;
  --slate: #34495E;
  --slate-dark: #1F2D3D;
  --cream: #FAF6EE;
  --cream-2: #F4ECDC;
  --paper: #EDE3CF;
  --ink: #2A2A2A;
  --ink-muted: #6F6F6F;
  --line: rgba(52,73,94,0.12);
  --white: #FFFFFF;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Lora', 'Source Serif Pro', Georgia, serif;
  --script: 'Sacramento', cursive;
  --label: 'Montserrat', sans-serif;

  --max: 1280px;
  --read: 720px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- Paper grain ----- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.18  0 0 0 0 0.16  0 0 0 0.6 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 360;
  font-style: normal;
  color: var(--slate-dark);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
}
h1 { font-size: clamp(3rem, 8vw, 7.2rem); font-weight: 320; }
h2 { font-size: clamp(2rem, 4.4vw, 3.8rem); font-weight: 360; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; }

em, i { font-style: italic; font-family: var(--display); }

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--olive-dark);
}

.eyebrow {
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-dark);
}

p { color: var(--ink); }
.lede {
  font-family: var(--display);
  font-weight: 320;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: var(--slate);
}

/* ----- Layout ----- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.read { max-width: var(--read); margin: 0 auto; padding: 0 28px; }
section { position: relative; z-index: 2; }

/* ----- Header ----- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .35s var(--ease), backdrop-filter .35s;
}
.nav.scrolled {
  background: rgba(250,246,238,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 46px; width: auto; transition: filter .3s; }
.nav .nav-brand img.dark { display: none; }
.nav.scrolled .nav-brand img.light { display: none; }
.nav.scrolled .nav-brand img.dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--slate); }
.nav-cta {
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.8);
  padding: 10px 18px;
  transition: all .25s;
}
.nav-cta:hover { background: var(--white); color: var(--slate-dark); }
.nav.scrolled .nav-cta { color: var(--burgundy); border-color: var(--burgundy); }
.nav.scrolled .nav-cta:hover { background: var(--burgundy); color: var(--white); }

/* ----- Hero (editorial, full-bleed) ----- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  z-index: 1;
}
.hero-photos {
  position: absolute;
  inset: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero-photo.active { opacity: 1; }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 10s linear;
}
.hero-photo.active img { transform: scale(1.0); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,45,61,0.20) 0%, rgba(31,45,61,0.05) 35%, rgba(31,45,61,0.55) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  padding: 0 28px 7vh;
}
.hero-content .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.hero-title {
  color: var(--white);
  font-weight: 280;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.02em;
  max-width: 14ch;
  line-height: 0.98;
}
.hero-title em {
  font-style: italic;
  color: var(--olive-soft);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-eyebrow {
  font-family: var(--script);
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
  display: block;
  transform: translateY(8px);
}
.hero-meta {
  text-align: right;
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.hero-meta .by { font-family: var(--script); font-size: 1.6rem; letter-spacing: 0; text-transform: none; color: var(--white); }
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue::after {
  content: '';
  width: 2px; height: 8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: scroll-pulse 1.8s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* ----- Letter ----- */
.letter {
  padding: 14vh 0 16vh;
  background: var(--cream);
  position: relative;
}
.letter::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  width: 1px; height: 9vh;
  background: var(--olive);
  opacity: 0.4;
}
.letter .eyebrow { display: block; text-align: center; margin-bottom: 2.2rem; }
.letter-body {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}
.letter-body h2 {
  font-family: var(--display);
  font-weight: 280;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.25;
  color: var(--slate-dark);
  margin-bottom: 2rem;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.letter-body h2 em { color: var(--burgundy); font-style: italic; }
.letter-body p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 1.4rem;
}
.signature {
  display: inline-block;
  margin-top: 1.5rem;
}
.signature .script {
  font-size: 2.4rem;
  color: var(--olive-dark);
  display: block;
  line-height: 1;
}
.signature .role {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
  display: block;
}

/* ----- Photo essay (the grounds) ----- */
.grounds {
  background: var(--cream-2);
  padding: 10vh 0 12vh;
  overflow: hidden;
}
.grounds-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: end;
}
.grounds-head .eyebrow { display: block; margin-bottom: 1rem; }
.grounds-head h2 {
  font-weight: 300;
  letter-spacing: -0.022em;
  color: var(--slate-dark);
}
.grounds-head h2 em { color: var(--olive-dark); font-style: italic; font-variation-settings: "opsz" 144, "WONK" 1; }
.grounds-head .lede { color: var(--slate); padding-bottom: 0.5rem; }

.essay {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.essay > * { overflow: hidden; }
.essay img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.essay > *:hover img { transform: scale(1.04); }

.essay .e1 { grid-column: 1 / 8; aspect-ratio: 4/3; }
.essay .e2 { grid-column: 8 / 13; aspect-ratio: 4/5; align-self: end; }
.essay .e-quote {
  grid-column: 1 / 5;
  padding: 2rem 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--slate-dark);
}
.essay .e-quote .script { font-size: 2.5rem; line-height: 0; vertical-align: -16px; margin-right: 8px; }
.essay .e3 { grid-column: 5 / 9; aspect-ratio: 1/1; align-self: center; }
.essay .e4 { grid-column: 9 / 13; aspect-ratio: 4/5; }
.essay .e5 { grid-column: 1 / 7; aspect-ratio: 3/2; }
.essay .e6 { grid-column: 7 / 13; aspect-ratio: 3/2; }

/* ----- Property feature blocks (alternating) ----- */
.stays { background: var(--cream); padding: 14vh 0; }
.stays-intro {
  max-width: var(--read);
  margin: 0 auto 8vh;
  text-align: center;
  padding: 0 28px;
}
.stays-intro .eyebrow { display: block; margin-bottom: 1.2rem; }
.stays-intro h2 {
  font-weight: 280;
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.stays-intro h2 em { color: var(--burgundy); font-style: italic; }
.stays-intro p { color: var(--slate); font-size: 1.05rem; }

.feature {
  margin-bottom: 14vh;
  position: relative;
}
.feature:last-child { margin-bottom: 0; }
.feature .inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.feature.reverse .inner { grid-template-columns: 1fr 1.3fr; }
.feature .photo { position: relative; }
.feature .photo .img-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feature .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.feature:hover .photo img { transform: scale(1.04); }
.feature .photo .tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 24px;
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feature.reverse .photo .tag { background: var(--olive-dark); left: auto; right: -20px; }
.feature .copy { padding: 0 1.5rem; }
.feature.reverse .copy { order: -1; }
.feature .copy .num {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--olive);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.feature .copy h3 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.feature .copy h3 em { color: var(--burgundy); font-style: italic; }
.feature.reverse .copy h3 em { color: var(--olive-dark); }
.feature .copy .specs {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 1.6rem;
}
.feature .copy p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.4rem;
  line-height: 1.75;
}
.feature .copy .actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.btn-text {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 6px;
  transition: gap .3s var(--ease), color .25s;
}
.btn-text::after {
  content: '→';
  font-family: var(--body);
  transition: transform .3s var(--ease);
}
.btn-text:hover { gap: 18px; }
.feature.reverse .btn-text { color: var(--olive-dark); border-color: var(--olive-dark); }
.btn-ghost {
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.btn-ghost:hover { color: var(--burgundy); }

/* ----- Meet Retha ----- */
.retha {
  background: var(--olive);
  color: var(--white);
  padding: 14vh 0;
  position: relative;
  overflow: hidden;
}
.retha::before {
  content: 'G';
  position: absolute;
  font-family: var(--script);
  font-size: 50vw;
  color: rgba(255,255,255,0.05);
  top: -10vw;
  left: -5vw;
  line-height: 1;
  z-index: 0;
}
.retha .wrap { position: relative; z-index: 1; max-width: 880px; text-align: center; }
.retha .eyebrow { color: rgba(255,255,255,0.85); display: block; margin-bottom: 1.5rem; }
.retha h2 {
  color: var(--white);
  font-weight: 280;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.retha h2 em { color: var(--cream-2); font-style: italic; }
.retha p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.retha .signature .script { color: var(--cream-2); }
.retha .signature .role { color: rgba(255,255,255,0.7); }

/* ----- Enquire (postcard form) ----- */
.enquire {
  background: var(--cream);
  padding: 14vh 0;
}
.enquire .wrap { max-width: 1080px; }
.enquire-head {
  text-align: center;
  margin-bottom: 5vh;
}
.enquire-head .eyebrow { display: block; margin-bottom: 1.2rem; }
.enquire-head h2 {
  font-weight: 280;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.enquire-head h2 em { color: var(--burgundy); font-style: italic; }

.postcard {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  box-shadow: 0 30px 60px -30px rgba(52,73,94,0.18);
  border: 1px solid var(--line);
}
.postcard .info {
  background: var(--slate-dark);
  color: var(--white);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.postcard .info::before {
  content: 'S';
  position: absolute;
  font-family: var(--display);
  font-weight: 200;
  font-size: 30rem;
  color: rgba(255,255,255,0.04);
  top: -8rem;
  right: -6rem;
  line-height: 1;
}
.postcard .info .eyebrow { color: var(--olive-soft); display: block; margin-bottom: 1rem; }
.postcard .info h3 { color: var(--white); font-weight: 280; margin-bottom: 2rem; line-height: 1.15; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.postcard .info .item { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.postcard .info .item:last-child { border-bottom: none; }
.postcard .info .item .lab {
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.3rem;
}
.postcard .info .item .val { font-size: 1.05rem; color: var(--white); }
.postcard .info .item .val a { border-bottom: 1px solid rgba(191,192,137,0.5); }
.postcard .info .item .val a:hover { border-color: var(--cream-2); }

.postcard .form { padding: 4rem 3rem; position: relative; }
.postcard .form h3 { color: var(--slate-dark); font-weight: 320; margin-bottom: 1.4rem; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.postcard .form p { color: var(--ink-muted); font-size: 0.96rem; margin-bottom: 2rem; }
.postcard .form label {
  display: block;
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  margin-top: 1.2rem;
}
.postcard .form input,
.postcard .form textarea {
  width: 100%;
  padding: 12px 2px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font: inherit;
  color: var(--slate-dark);
  font-size: 1rem;
  transition: border-color .25s;
}
.postcard .form input:focus,
.postcard .form textarea:focus { outline: none; border-color: var(--burgundy); }
.postcard .form textarea { resize: vertical; min-height: 80px; }
.postcard .form .submit-row { margin-top: 2.4rem; display: flex; justify-content: space-between; align-items: center; }
.postcard .form .submit-row .note { font-size: 0.8rem; color: var(--ink-muted); font-style: italic; }
.postcard .form button {
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .25s;
}
.postcard .form button:hover { background: var(--burgundy-dark); }

/* ----- Footer ----- */
.foot {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.7);
  padding: 8vh 0 3vh;
  position: relative;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.foot-brand img { height: 70px; width: auto; filter: none; margin-bottom: 1.4rem; }
.foot-brand .tag {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--olive-soft);
  display: block;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.foot-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; max-width: 320px; }
.foot-col h4 {
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 0.4rem 0; }
.foot-col a { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.foot-col a:hover { color: var(--cream-2); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ----- Property hero (detail pages) ----- */
.p-hero {
  position: relative;
  height: 88vh;
  min-height: 700px;
  overflow: hidden;
  margin-bottom: 0;
}
.p-hero img { width: 100%; height: 100%; object-fit: cover; }
.p-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,45,61,0.20) 0%, transparent 40%, rgba(31,45,61,0.65) 100%);
}
.p-hero .wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8vh;
}
.p-hero .eyebrow { color: rgba(255,255,255,0.85); display: block; margin-bottom: 1rem; }
.p-hero h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 280; max-width: 12ch; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.p-hero h1 em { color: var(--olive-soft); font-style: italic; }
.p-hero .specs {
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.p-hero .specs span:not(:last-child)::after {
  content: '·';
  margin-left: 2rem;
  color: rgba(255,255,255,0.4);
}

.p-story {
  padding: 14vh 0;
  background: var(--cream);
}
.p-story .inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: start;
}
.p-story .eyebrow { display: block; margin-bottom: 1.2rem; }
.p-story h2 { font-weight: 280; margin-bottom: 1.6rem; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.p-story h2 em { font-style: italic; color: var(--burgundy); }
.p-story p { font-size: 1.05rem; color: var(--slate); margin-bottom: 1.4rem; line-height: 1.75; }
.p-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}
.p-card .rating {
  font-family: var(--display);
  color: var(--olive-dark);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-style: italic;
}
.p-card .stars { color: var(--burgundy); margin-bottom: 1.6rem; letter-spacing: 0.3em; font-size: 0.9rem; }
.p-card h3 { font-weight: 320; margin-bottom: 1rem; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.p-card p { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: 1.6rem; }
.p-card .btn-fill {
  display: block;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 22px;
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
  transition: background .25s;
}
.p-card .btn-fill:hover { background: var(--burgundy-dark); }
.p-card .btn-line {
  display: block;
  background: transparent;
  color: var(--slate);
  border: 1px solid var(--slate);
  padding: 13px 22px;
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  transition: all .25s;
}
.p-card .btn-line:hover { background: var(--slate); color: var(--white); }
.p-card .note { font-size: 0.8rem; color: var(--ink-muted); text-align: center; margin-top: 1.4rem; line-height: 1.5; font-style: italic; }

.p-details {
  background: var(--cream-2);
  padding: 10vh 0;
}
.p-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.p-detail .lab {
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 0.4rem;
}
.p-detail .val { font-family: var(--display); font-size: 1.4rem; font-weight: 360; color: var(--slate-dark); line-height: 1.3; font-variation-settings: "opsz" 144, "SOFT" 100; }

.p-gallery {
  padding: 12vh 0;
  background: var(--cream);
}
.p-gallery-head { text-align: center; margin-bottom: 6vh; }
.p-gallery-head .eyebrow { display: block; margin-bottom: 1rem; }
.p-gallery-head h2 { font-weight: 280; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.p-gallery-head h2 em { font-style: italic; color: var(--olive-dark); }
.p-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.p-mosaic > * { overflow: hidden; cursor: pointer; }
.p-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.p-mosaic > *:hover img { transform: scale(1.05); }
.p-mosaic .m1 { grid-column: 1 / 8; aspect-ratio: 4/3; }
.p-mosaic .m2 { grid-column: 8 / 13; aspect-ratio: 4/5; }
.p-mosaic .m3 { grid-column: 1 / 5; aspect-ratio: 1/1; }
.p-mosaic .m4 { grid-column: 5 / 9; aspect-ratio: 1/1; }
.p-mosaic .m5 { grid-column: 9 / 13; aspect-ratio: 1/1; }
.p-mosaic .m6 { grid-column: 1 / 13; aspect-ratio: 21/9; }
.p-mosaic .m7 { grid-column: 1 / 6; aspect-ratio: 4/5; }
.p-mosaic .m8 { grid-column: 6 / 13; aspect-ratio: 4/3; }

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,28,38,0.96);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox .close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
  background: none;
  width: 48px; height: 48px;
  border-radius: 50%;
}
.lightbox .close:hover { background: rgba(255,255,255,0.12); }

/* ----- Reveal on scroll ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----- Responsive ----- */
@media (max-width: 980px) {
  .nav-links { gap: 1rem; }
  .nav-links a { display: none; }
  .nav-cta { display: inline-block; }
  .hero-content .wrap { grid-template-columns: 1fr; }
  .hero-meta { text-align: left; }
  .grounds-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .essay { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .essay .e1 { grid-column: 1 / 7; }
  .essay .e2 { grid-column: 1 / 7; aspect-ratio: 4/3; }
  .essay .e-quote { grid-column: 1 / 7; padding: 1rem 0; font-size: 1.2rem; }
  .essay .e3 { grid-column: 1 / 4; }
  .essay .e4 { grid-column: 4 / 7; }
  .essay .e5 { grid-column: 1 / 7; }
  .essay .e6 { grid-column: 1 / 7; }
  .feature .inner, .feature.reverse .inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 28px; }
  .feature.reverse .copy { order: 0; }
  .feature .copy { padding: 0; }
  .feature .photo .tag { left: 16px; bottom: -16px; }
  .feature.reverse .photo .tag { right: 16px; left: auto; }
  .postcard { grid-template-columns: 1fr; }
  .p-story .inner { grid-template-columns: 1fr; gap: 3rem; }
  .p-card { position: static; }
  .p-details-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .p-mosaic { grid-template-columns: repeat(6, 1fr); }
  .p-mosaic .m1, .p-mosaic .m6, .p-mosaic .m8 { grid-column: 1 / 7; }
  .p-mosaic .m2, .p-mosaic .m7 { grid-column: 1 / 7; aspect-ratio: 4/3; }
  .p-mosaic .m3, .p-mosaic .m4, .p-mosaic .m5 { grid-column: span 3; }
  .foot-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .hero { min-height: 600px; }
  .hero-title { font-size: 3.4rem; }
  .hero-eyebrow { font-size: 1.6rem; }
  .letter-body h2 { font-size: 1.8rem; }
  .feature .copy h3 { font-size: 2rem; }
  .postcard .info, .postcard .form { padding: 2.5rem 1.8rem; }
  .p-mosaic .m3, .p-mosaic .m4, .p-mosaic .m5 { grid-column: 1 / 7; aspect-ratio: 1/1; }
}

/* Host letter portrait */
.letter-portrait {
  margin: 2.5rem auto 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 20px 40px -20px rgba(52,73,94,0.25);
  position: relative;
  z-index: 2;
}
.letter-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
@media (max-width: 560px) {
  .letter-portrait { width: 120px; height: 120px; }
}

/* ---------- Scrollable Gallery Reel ---------- */
.reel-section { padding: 5rem 0 6rem; background: var(--cream); }
.reel-head { max-width: 1100px; margin: 0 auto 2.5rem; padding: 0 6vw; }
.reel-head .eyebrow { font-family: var(--label); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive); }
.reel-head h2 { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0.5rem 0 1rem; color: var(--slate); }
.reel-head h2 em { font-family: var(--script); font-style: normal; color: var(--burgundy); }
.reel-head p { font-family: var(--body); color: var(--slate); opacity: 0.75; }

.reel { position: relative; }
.reel-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 6vw 2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(52,73,94,0.25) transparent;
}
.reel-track::-webkit-scrollbar { height: 8px; }
.reel-track::-webkit-scrollbar-thumb { background: rgba(52,73,94,0.25); border-radius: 4px; }
.reel-track::-webkit-scrollbar-track { background: transparent; }

.reel-item {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 520px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(52,73,94,0.12);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.reel-item:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(52,73,94,0.18); }
.reel-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.reel-item figcaption {
  padding: 0.85rem 1.1rem 1rem;
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.75;
  background: var(--white);
}

.reel-arrow {
  position: absolute;
  top: 38%;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(52,73,94,0.15);
  background: var(--white);
  color: var(--slate);
  font-size: 1.6rem;
  font-family: var(--body);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(52,73,94,0.15);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  opacity: 0.92;
}
.reel-arrow:hover { transform: scale(1.05); background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }
.reel-arrow.prev { left: 1.5vw; }
.reel-arrow.next { right: 1.5vw; }
.reel-arrow:disabled { opacity: 0.35; cursor: default; transform: none; background: var(--white); color: var(--slate); }

@media (max-width: 700px) {
  .reel-item { width: 80vw; }
  .reel-arrow { width: 42px; height: 42px; top: 35%; }
}

/* 2026-07-07 find-us hero readability */
.fu-hero h1{color:var(--cream,#faf3e3);text-shadow:0 2px 18px rgba(15,25,35,.55);}
.fu-hero h1 em{color:#fff;}
.fu-hero .wrap p{color:var(--cream,#faf3e3);opacity:.95;text-shadow:0 1px 12px rgba(15,25,35,.6);max-width:52ch;}
