/* ============================================================
   Homes 4 Rent Greenville SC — "Southern Porch Editorial" v2
   Fraunces (display) + DM Serif Display (hero) + Hanken Grotesk (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

:root {
  --cream:       #faf7f0;
  --cream-deep:  #f2ece0;
  --paper:       #ffffff;
  --spruce:      #1c3a2e;
  --spruce-deep: #142a21;
  --spruce-soft: #2c5243;
  --spruce-pale: #eef4f0;
  --clay:        #c2562b;
  --clay-deep:   #a8441d;
  --clay-pale:   #fdf1eb;
  --butter:      #e9b44c;
  --butter-pale: #fdf6e3;
  --ink:         #1e2119;
  --ink-mid:     #3d4237;
  --ink-soft:    #6b6e63;
  --ink-muted:   #9a9d92;
  --line:        #e4dccb;
  --ok:          #2e7d4f;
  --bad:         #b3261e;

  --radius-arch: 999px 999px 18px 18px;
  --radius-card: 20px;

  --shadow-sm:   0 1px 2px rgba(28,58,46,0.05), 0 4px 12px -4px rgba(28,58,46,0.08);
  --shadow-md:   0 2px 4px rgba(28,58,46,0.05), 0 12px 32px -8px rgba(28,58,46,0.14);
  --shadow-lg:   0 4px 8px rgba(28,58,46,0.06), 0 24px 56px -12px rgba(28,58,46,0.22);

  --font-hero:   "DM Serif Display", "Fraunces", Georgia, serif;
  --font-display:"Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:   "Hanken Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Warm grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── layout ─────────────────────────────────────────────────── */
.wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }

/* ── typography ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.display {
  font-family: var(--font-display);
  font-weight: 540; line-height: 1.04; letter-spacing: -0.015em;
  color: var(--spruce);
}
.display em { font-style: italic; font-weight: 400; color: var(--clay); }
.lede { font-size: 18px; color: var(--ink-soft); max-width: 56ch; line-height: 1.7; }

/* ── buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.015em;
  text-decoration: none; border-radius: 999px;
  padding: 14px 26px; border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}
.btn svg { transition: transform 0.28s var(--ease-out); flex: none; }
.btn:hover svg { transform: translateX(4px); }

.btn-clay {
  background: var(--clay); color: #fff;
  box-shadow: 0 4px 14px -6px rgba(194,86,43,0.5);
}
.btn-clay:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(194,86,43,0.5); }

.btn-spruce { background: var(--spruce); color: var(--cream); }
.btn-spruce:hover { background: var(--spruce-deep); transform: translateY(-2px); }

.btn-ghost { border-color: var(--spruce); color: var(--spruce); background: transparent; }
.btn-ghost:hover { background: var(--spruce); color: var(--cream); transform: translateY(-2px); }

.btn-ghost-light { border-color: rgba(248,242,231,0.45); color: #f8f2e7; background: transparent; }
.btn-ghost-light:hover { background: rgba(248,242,231,0.12); }

.btn-light { background: var(--paper); color: var(--clay-deep); }
.btn-light:hover { background: var(--cream); transform: translateY(-2px); }

/* ── announcement bar ───────────────────────────────────────── */
.announce {
  background: var(--spruce-deep); color: var(--cream);
  text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  padding: 9px 16px;
}
.announce strong { color: var(--butter); font-weight: 700; }

/* ── header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,240,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px -14px rgba(28,58,46,0.3);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.brand { text-decoration: none; display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 40px; height: 40px; flex: none;
  border-radius: 999px 999px 5px 5px;
  background: var(--spruce); color: var(--butter);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 16px; font-weight: 600; font-style: italic;
  padding-top: 2px;
  box-shadow: 0 2px 8px -3px rgba(28,58,46,0.35);
}
.brand-text { line-height: 1.15; }
.brand-text b { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--spruce); display: block; letter-spacing: -0.01em; }
.brand-text span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a:not(.btn) {
  text-decoration: none; font-size: 14.5px; font-weight: 600;
  color: var(--ink-mid); position: relative; padding: 4px 0;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--clay); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links .btn { padding: 10px 20px; font-size: 13.5px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 1.8px; background: var(--spruce); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.2s; }

/* ── hero ─────────────────────────────────────────────────────── */
.hero { position: relative; padding: 72px 0 100px; }

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}

.hero-copy > * { opacity: 0; transform: translateY(22px); animation: rise 0.9s var(--ease-out) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: 0.06s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.17s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.29s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.41s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.53s; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero h1 {
  font-family: var(--font-hero);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--spruce);
  margin: 20px 0 24px;
}
.hero h1 em { font-style: italic; color: var(--clay); }

.hero .lede { margin-bottom: 36px; font-size: 18px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }

.hero-proof {
  display: flex; flex-wrap: wrap; gap: 32px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.proof-item b {
  font-family: var(--font-display); font-size: 26px; font-weight: 580;
  color: var(--spruce); display: block; line-height: 1.1;
}
.proof-item span { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); }
.proof-item .stars { color: var(--butter); letter-spacing: 2px; font-size: 14px; }

/* hero art */
.hero-art {
  position: relative;
  opacity: 0; transform: translateY(28px) scale(0.98);
  animation: rise-art 1.1s var(--ease-out) 0.28s forwards;
}
@keyframes rise-art { to { opacity: 1; transform: translateY(0) scale(1); } }

.arch-main {
  position: relative; border-radius: var(--radius-arch); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); border: 6px solid var(--paper);
}
.arch-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 7s var(--ease-out); }
.hero-art:hover .arch-main img { transform: scale(1.07); }

/* floating tag */
.arch-tag {
  position: absolute; left: -28px; bottom: 68px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; z-index: 2;
}
.arch-tag .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--clay); box-shadow: 0 0 0 4px rgba(194,86,43,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(194,86,43,0.2); }
  50%       { box-shadow: 0 0 0 9px rgba(194,86,43,0.04); }
}
.arch-tag b { font-size: 13.5px; color: var(--spruce); display: block; line-height: 1.3; }
.arch-tag span { font-size: 11.5px; color: var(--ink-soft); }

/* badge */
.arch-badge { position: absolute; top: 24px; right: -22px; width: 110px; height: 110px; z-index: 2; animation: spin-badge 22s linear infinite; }
@keyframes spin-badge { to { transform: rotate(360deg); } }
.arch-badge svg { width: 100%; height: 100%; }

/* availability mini-banner */
.avail-banner {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--spruce); color: var(--cream);
  border-radius: 999px; padding: 10px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-md); white-space: nowrap; z-index: 3;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.avail-banner .avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); flex: none; }
.avail-banner .avail-sep { width: 1px; height: 16px; background: rgba(248,242,231,0.25); }

/* ── marquee ────────────────────────────────────────────────── */
.marquee {
  background: var(--spruce); color: var(--cream);
  overflow: hidden; padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--font-display); font-style: italic;
  font-size: 15px; letter-spacing: 0.04em;
  white-space: nowrap; padding: 0 20px;
  display: inline-flex; align-items: center; gap: 40px; opacity: 0.9;
}
.marquee-track span::after { content: "✦"; font-style: normal; color: var(--butter); font-size: 11px; }

/* ── sections ───────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 52px;
}
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 14px; }

/* ── property cards ─────────────────────────────────────────── */
.homes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.home-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-card); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.home-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.home-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.home-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.home-card:hover .home-card-media img { transform: scale(1.08); }

.home-card-chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,250,241,0.95); color: var(--spruce);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px;
}
.home-card-chip.is-new { background: var(--clay); color: #fff; }

.home-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.home-card h3 { font-family: var(--font-display); font-size: 23px; font-weight: 560; color: var(--spruce); margin-bottom: 5px; }
.home-card .meta { font-size: 13px; font-weight: 600; color: var(--clay-deep); letter-spacing: 0.03em; margin-bottom: 10px; }
.home-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.home-card .card-link { font-size: 14px; font-weight: 700; color: var(--spruce); display: inline-flex; align-items: center; gap: 7px; }
.home-card:hover .card-link { color: var(--clay); }
.home-card .card-link svg { transition: transform 0.3s var(--ease-out); }
.home-card:hover .card-link svg { transform: translateX(4px); }

/* price chip on card */
.price-chip {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--spruce); color: var(--cream);
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
}
.price-chip em { font-style: normal; color: var(--butter); }

/* ── what's included ─────────────────────────────────────────── */
.included { background: var(--spruce); color: var(--cream); position: relative; overflow: hidden; }
.included::before {
  content: "GVL"; position: absolute; right: -4%; bottom: -18%;
  font-family: var(--font-hero); font-style: italic; font-size: clamp(200px, 30vw, 420px);
  line-height: 1; color: rgba(248,242,231,0.025); pointer-events: none;
}
.included .eyebrow { color: var(--butter); }
.included .eyebrow::before { background: var(--butter); }
.included h2 { color: var(--cream); }
.included h2 em { color: var(--butter); }
.included .lede { color: rgba(248,242,231,0.7); }

.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(248,242,231,0.12);
  border: 1px solid rgba(248,242,231,0.12);
  border-radius: 22px; overflow: hidden; margin-top: 52px; position: relative; z-index: 1;
}
.included-cell { background: var(--spruce); padding: 32px 28px; transition: background 0.3s; }
.included-cell:hover { background: var(--spruce-soft); }
.included-cell .icon {
  width: 46px; height: 46px; border-radius: 999px 999px 8px 8px;
  background: rgba(233,180,76,0.13);
  display: grid; place-items: center; margin-bottom: 16px; color: var(--butter);
}
.included-cell h3 { font-family: var(--font-display); font-size: 20px; font-weight: 560; margin-bottom: 7px; }
.included-cell p { font-size: 14.5px; color: rgba(248,242,231,0.65); }

/* ── book direct split ───────────────────────────────────────── */
.direct-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.direct-art { position: relative; }
.direct-art .arch-main { aspect-ratio: 3.5/4.2; }
.direct-art .frame-back {
  position: absolute; inset: 28px -28px -28px 28px;
  border: 2px solid var(--clay); border-radius: var(--radius-arch);
  opacity: 0.38; z-index: -1;
}
.direct-list { list-style: none; margin-top: 34px; }
.direct-list li { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid var(--line); }
.direct-list li:last-child { border-bottom: 1px solid var(--line); }
.direct-num { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--clay); flex: none; width: 38px; }
.direct-list b { display: block; font-size: 16.5px; color: var(--spruce); margin-bottom: 3px; }
.direct-list p { font-size: 15px; color: var(--ink-soft); }

/* ── reviews ─────────────────────────────────────────────────── */
.reviews { background: var(--cream-deep); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 18px; padding: 28px 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-card::before {
  content: "\201C"; font-family: var(--font-hero); font-size: 56px;
  line-height: 0.65; color: var(--clay); opacity: 0.28;
  display: block; margin-bottom: 10px;
}
.review-card .stars { color: var(--butter); font-size: 14px; letter-spacing: 3px; margin-bottom: 12px; }
.review-card blockquote { font-size: 15px; color: var(--ink); flex: 1; margin-bottom: 18px; }
.review-card cite { font-style: normal; font-size: 13px; font-weight: 700; color: var(--spruce); border-top: 1px dashed var(--line); padding-top: 12px; }
.review-card cite span { font-weight: 500; color: var(--ink-soft); }

/* ── distance strip ──────────────────────────────────────────── */
.distance-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.distance-pill {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--spruce);
  display: inline-flex; align-items: center; gap: 7px;
}
.distance-pill b { color: var(--clay); font-weight: 700; }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--clay); color: var(--paper);
  border-radius: 26px; padding: clamp(52px, 6vw, 88px);
  position: relative; overflow: hidden; text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 999px 999px 0 0;
  background: rgba(255,250,241,0.07); pointer-events: none;
}
.cta-band::before { width: 280px; height: 380px; left: -80px; bottom: -120px; transform: rotate(14deg); }
.cta-band::after  { width: 220px; height: 320px; right: -60px; top: -100px; transform: rotate(-160deg); }
.cta-band h2 { font-family: var(--font-display); font-weight: 540; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.04; margin-bottom: 16px; }
.cta-band h2 em { font-style: italic; color: var(--butter); }
.cta-band p { font-size: 18px; opacity: 0.87; max-width: 52ch; margin: 0 auto 32px; }
.cta-band .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }

/* ── footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--spruce-deep); color: rgba(248,242,231,0.72); padding: 72px 0 36px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(248,242,231,0.1); }
.footer-brand p { font-size: 14px; margin-top: 14px; max-width: 36ch; line-height: 1.65; }
.site-footer .brand-text span { color: var(--butter); }
.footer-head { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--butter); margin-bottom: 16px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer ul a { text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.site-footer ul a:hover { color: var(--cream); }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 12.5px; color: rgba(248,242,231,0.45); }

/* ── listings page ───────────────────────────────────────────── */
.page-hero { padding: 64px 0 20px; }
.page-hero h1 { font-family: var(--font-hero); font-size: clamp(40px, 5.5vw, 68px); font-weight: 400; margin: 14px 0 16px; letter-spacing: -0.02em; }

.filter-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 26px 0 6px; }
.filter-pill {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 700;
  padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid var(--spruce); background: transparent; color: var(--spruce);
  cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}
.filter-pill:hover { transform: translateY(-2px); }
.filter-pill.is-active { background: var(--spruce); color: var(--cream); }

.listing { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: start; padding: 72px 0; border-top: 1px solid var(--line); }
.listing:first-of-type { border-top: none; }
.listing.is-flipped .listing-gallery { order: 2; }
.listing-gallery { position: sticky; top: 110px; }

.gallery-main { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); border: 5px solid var(--paper); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.gallery-thumbs button { border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; padding: 0; background: none; aspect-ratio: 4/3; opacity: 0.7; transition: opacity 0.2s, border-color 0.2s, transform 0.2s var(--ease-out); }
.gallery-thumbs button:hover { opacity: 1; transform: translateY(-2px); }
.gallery-thumbs button.is-active { border-color: var(--clay); opacity: 1; }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.listing-body .meta-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 16px; }
.meta-chip { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--spruce); background: var(--cream-deep); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }
.meta-chip.is-clay { background: var(--clay); border-color: var(--clay); color: #fff; }

.listing-body h2 { font-family: var(--font-hero); font-size: clamp(30px, 3.5vw, 44px); font-weight: 400; color: var(--spruce); line-height: 1.08; }
.listing-body > p { color: var(--ink-soft); margin: 16px 0 24px; font-size: 16px; }
.feature-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 22px; margin-bottom: 26px; }
.feature-cols span { font-size: 14px; color: var(--ink); display: flex; gap: 9px; align-items: baseline; }
.feature-cols span::before { content: "✦"; color: var(--clay); font-size: 10px; flex: none; }

.listing-distances { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-bottom: 26px; }
.listing-distances h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 10px; }
.listing-distances table { width: 100%; border-collapse: collapse; font-size: 14px; }
.listing-distances td { padding: 6px 0; border-top: 1px dashed var(--line); }
.listing-distances tr:first-child td { border-top: none; }
.listing-distances td:last-child { text-align: right; font-weight: 700; color: var(--spruce); white-space: nowrap; }
.listing-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: start; padding-bottom: 32px; }
.contact-card { background: var(--spruce); color: var(--cream); border-radius: 22px; padding: 40px 36px; position: relative; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 260px; height: 340px; right: -70px; bottom: -140px; border-radius: 999px 999px 0 0; background: rgba(233,180,76,0.09); transform: rotate(-18deg); }
.contact-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 550; margin-bottom: 8px; }
.contact-card p { color: rgba(248,242,231,0.72); font-size: 15px; margin-bottom: 26px; }
.contact-rows { display: grid; gap: 12px; position: relative; z-index: 1; }
.contact-row { display: flex; align-items: center; gap: 14px; background: rgba(248,242,231,0.07); border: 1px solid rgba(248,242,231,0.13); border-radius: 14px; padding: 14px 18px; text-decoration: none; transition: background 0.2s, transform 0.25s var(--ease-out); }
.contact-row:hover { background: rgba(248,242,231,0.13); transform: translateX(5px); }
.contact-row .icon { width: 40px; height: 40px; flex: none; border-radius: 999px 999px 7px 7px; background: rgba(233,180,76,0.15); color: var(--butter); display: grid; place-items: center; }
.contact-row b { display: block; font-size: 14.5px; color: var(--cream); }
.contact-row span { font-size: 12.5px; color: rgba(248,242,231,0.55); }

/* ── booking form ─────────────────────────────────────────────── */
.book-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; padding-bottom: 48px; }
.book-aside { position: sticky; top: 110px; }
.book-points { list-style: none; display: grid; gap: 12px; margin-top: 26px; }
.book-points li { display: flex; gap: 13px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.book-points li::before { content: "✓"; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--cream-deep); color: var(--spruce); font-size: 12px; font-weight: 700; display: grid; place-items: center; margin-top: 2px; }

.form-shell { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); overflow: hidden; }
.form-shell-head { padding: 20px 26px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.form-shell-head b { font-family: var(--font-display); font-size: 20px; font-weight: 560; color: var(--spruce); }
.form-shell-head span { font-size: 12.5px; color: var(--ink-soft); }

.bform { padding: 24px; display: grid; gap: 20px; }
.bform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bfield { display: grid; gap: 6px; }
.bfield label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--spruce); }
.bfield label .opt { color: var(--ink-soft); font-weight: 500; text-transform: none; letter-spacing: 0; }
.bfield input, .bfield select, .bfield textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line);
  border-radius: 11px; padding: 12px 15px; width: 100%;
  outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.bfield select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%231c3a2e' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.bfield input:focus, .bfield select:focus, .bfield textarea:focus { border-color: var(--spruce); background: var(--paper); box-shadow: 0 0 0 3px rgba(28,58,46,0.1); }
.bfield textarea { resize: vertical; min-height: 80px; }

.pill-group { display: flex; flex-wrap: wrap; gap: 7px; position: relative; }
.pill-group input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.pill-group label { font-size: 13px; font-weight: 600; letter-spacing: 0.01em; text-transform: none; color: var(--spruce); background: var(--cream); border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 15px; cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.pill-group input:checked + label { background: var(--spruce); border-color: var(--spruce); color: var(--cream); }

.bform-submit { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.bform-submit .btn { border: none; }
.bform-submit .btn:disabled { opacity: 0.5; cursor: default; transform: none; }
.bform-note { font-size: 12.5px; color: var(--ink-soft); }
.bform-success { display: none; padding: 52px 32px; text-align: center; }
.bform-success.is-shown { display: block; }
.bform-success .tick { width: 60px; height: 60px; border-radius: 999px 999px 10px 10px; background: var(--spruce); color: var(--butter); display: grid; place-items: center; margin: 0 auto 18px; }
.bform-success h3 { font-family: var(--font-display); font-size: 26px; font-weight: 560; color: var(--spruce); margin-bottom: 8px; }
.bform-success p { color: var(--ink-soft); max-width: 44ch; margin: 0 auto 6px; }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; display: grid; gap: 10px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow 0.25s var(--ease-out); }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 22px; font-family: var(--font-display); font-size: 18px; font-weight: 560; color: var(--spruce); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--clay); transition: transform 0.3s var(--ease-out), background 0.2s; }
.faq-item[open] summary::after { content: "–"; background: var(--cream-deep); }
.faq-body { padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); max-width: 62ch; }
.faq-body a { color: var(--clay-deep); font-weight: 600; }

/* ── scroll reveal ───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .hero-copy > *, .hero-art { opacity: 1; transform: none; }
}

/* ── responsive ──────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid, .direct-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { max-width: 480px; }
  .homes-grid { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .listing { grid-template-columns: 1fr; gap: 36px; }
  .listing-gallery { position: static; }
  .listing.is-flipped .listing-gallery { order: 0; }
  .contact-grid, .book-grid { grid-template-columns: 1fr; }
  .book-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .avail-banner { position: static; transform: none; margin-top: 18px; border-radius: 14px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .direct-art .frame-back { inset: 14px 6px -14px 6px; }
  .site-header { background: var(--cream); backdrop-filter: none; }
  .nav-links { position: fixed; inset: 0; background: var(--cream); flex-direction: column; justify-content: center; gap: 24px; font-size: 20px; transform: translateY(-100%); transition: transform 0.45s var(--ease-out); z-index: 90; }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a:not(.btn) { font-size: 22px; font-family: var(--font-display); font-weight: 550; }
  .nav-toggle { display: flex; position: relative; z-index: 95; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .homes-grid, .included-grid, .reviews-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .feature-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .arch-tag { left: 8px; }
  .arch-badge { right: 4px; width: 90px; height: 90px; }
  .hero { padding: 40px 0 60px; }
  .bform-row { grid-template-columns: 1fr; }
  .cal-months { grid-template-columns: 1fr; }
}
