/* =========================================================
   Windsor Hills Nursing Center — Design System
   Palette: pine green, terracotta clay, marigold, warm linen
   Type:    Fraunces (display serif) + Nunito Sans (body)
   ========================================================= */

:root {
  --pine: #24493d;
  --pine-deep: #16302a;
  --pine-soft: #35695a;
  --pine-tint: #e3ede7;
  --clay: #c4673a;
  --clay-deep: #9a4a25;
  --clay-soft: #e8a27d;
  --clay-tint: #f9eadf;
  --marigold: #e7b53f;
  --linen: #fcfaf5;
  --linen-warm: #f4eee3;
  --sand: #e6dcc9;
  --line: #e4ddd0;
  --ink: #1f2a26;
  --slate: #4b5a54;
  --muted: #6f7c76;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(22, 48, 42, 0.06), 0 1px 4px rgba(22, 48, 42, 0.05);
  --shadow-md: 0 6px 18px rgba(22, 48, 42, 0.09), 0 2px 6px rgba(22, 48, 42, 0.05);
  --shadow-lg: 0 20px 48px rgba(22, 48, 42, 0.14), 0 8px 16px rgba(22, 48, 42, 0.06);

  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --maxw: 1180px;
  --maxw-narrow: 860px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition: 220ms cubic-bezier(.2,.7,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clay-deep); }
:focus-visible { outline: 3px solid var(--marigold); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4, h5, .h3 {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 96;
  color: var(--pine-deep);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3, .h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-family: var(--font-sans); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 700;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 0 0 4px var(--clay-tint);
}

.lede {
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--slate);
}

/* -------- Layout -------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 56px 0; }
.section--warm { background: var(--linen-warm); }
.section--tint { background: var(--pine-tint); }
.section--pine { background: var(--pine-deep); color: rgba(252, 250, 245, 0.9); }
.section--pine h1, .section--pine h2, .section--pine h3 { color: var(--linen); }
.section--pine .eyebrow { color: var(--marigold); }
.section--pine .eyebrow::before { box-shadow: 0 0 0 4px rgba(231, 181, 63, 0.2); }
.section--pine a:not(.btn) { color: var(--marigold); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--slate); font-size: 1.08rem; }
.section-head--left { margin-left: 0; text-align: left; }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1.2;
  text-decoration: none;
}
.btn--sm { padding: 11px 20px; font-size: 0.88rem; }
.btn--clay { background: var(--clay); color: var(--white); border-color: var(--clay); }
.btn--clay:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--pine { background: var(--pine); color: var(--linen); border-color: var(--pine); }
.btn--pine:hover { background: var(--pine-deep); border-color: var(--pine-deep); color: var(--linen); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--pine); border-color: var(--pine); }
.btn--outline:hover { background: var(--pine); color: var(--linen); }
.btn--ghost { background: rgba(255,255,255,0.08); color: var(--linen); border-color: rgba(252, 250, 245, 0.55); }
.btn--ghost:hover { background: var(--linen); color: var(--pine-deep); border-color: var(--linen); }

/* -------- Top bar + header -------- */
.topbar {
  background: var(--pine-deep);
  color: rgba(252, 250, 245, 0.82);
  font-size: 0.84rem;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-info { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-info span + span::before { content: "·"; color: var(--marigold); margin-right: 20px; }
.topbar-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--marigold); font-weight: 700; }
.topbar-phone:hover { color: var(--linen); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 250, 245, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { max-height: 56px; width: auto; }
.brand-mark {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pine);
  color: var(--linen);
  border-radius: 12px;
  flex: none;
}
.brand-mark svg { width: 30px; height: 30px; }
.brand-mark svg circle { fill: var(--marigold); }
.brand-text { line-height: 1.05; }
.brand-name { display: block; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--pine-deep); }
.brand-tag { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clay-deep); margin-top: 5px; font-weight: 700; }

/* -------- Logo (wordmark rebuilt in CSS) -------- */
.logo { display: inline-flex; align-items: flex-start; gap: 0; text-decoration: none; line-height: 1; flex: none; }
.logo-img { max-height: 64px; width: auto; }
.logo-w {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--pine);
  color: var(--linen);
  font-family: "Cinzel", "Copperplate", "Trajan Pro", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  padding: 0 0 2px 0;
  border-radius: 3px;
  flex: none;
  overflow: hidden;
}
.logo-text { display: flex; flex-direction: column; align-items: stretch; padding-top: 12px; margin-left: 2px; }
.logo-name {
  font-family: "Cinzel", "Copperplate", "Trajan Pro", serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.1em;
  color: var(--pine-deep);
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--clay);
  text-transform: lowercase;
  font-variant: small-caps;
}
.logo-tag {
  font-family: "Cinzel", "Copperplate", serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--clay-deep);
  text-align: center;
  margin-top: 6px;
  white-space: nowrap;
  text-transform: lowercase;
  font-variant: small-caps;
}
.site-footer a.logo { display: inline-flex; padding: 0; }
.logo--dark .logo-w { background: var(--marigold); color: var(--pine-deep); }
.logo--dark .logo-name { color: var(--linen); border-bottom-color: var(--marigold); }
.logo--dark .logo-tag { color: var(--marigold); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { padding: 9px 14px; font-size: 0.95rem; font-weight: 700; color: var(--slate); border-radius: var(--radius-pill); white-space: nowrap; transition: background var(--transition), color var(--transition); }
.nav a:hover { color: var(--pine-deep); background: var(--pine-tint); }
.nav a.active { color: var(--pine-deep); background: var(--pine-tint); }
.nav .btn { margin-left: 10px; color: var(--white); }
.nav .btn:hover { background: var(--clay-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 12px;
}
.nav-toggle span { display: block; height: 2px; background: var(--pine); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.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); }

/* -------- Home hero (photo-led, two columns) -------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(231, 181, 63, 0.16), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(36, 73, 61, 0.10), transparent 60%),
    var(--linen);
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--clay); font-weight: 400; }
.hero .lede { max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; font-size: 0.88rem; color: var(--muted); font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--pine-soft); }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: 28px 28px 28px 90px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--pine-tint);
}
.hero-visual .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual::before {
  content: "";
  position: absolute;
  right: -22px; top: -22px;
  width: 58%; height: 58%;
  border-radius: 28px;
  background: var(--clay-tint);
  z-index: -1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  left: -18px; bottom: -18px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 14px solid var(--pine-tint);
  z-index: -1;
}

/* Announcement strip */
.banner-strip {
  background: var(--pine);
  color: var(--linen);
  text-align: center;
  padding: 13px 20px;
  font-size: 0.92rem;
  font-weight: 700;
}
.banner-strip a { color: var(--marigold); margin-left: 8px; }
.banner-strip a:hover { color: var(--linen); }

/* -------- Sub-page hero (photo with green wash, left aligned) -------- */
.page-hero {
  position: relative;
  padding: 88px 0 72px;
  color: var(--linen);
  background:
    linear-gradient(100deg, rgba(22, 48, 42, 0.96) 0%, rgba(36, 73, 61, 0.86) 55%, rgba(36, 73, 61, 0.6) 100%),
    var(--pine-deep);
  overflow: hidden;
}
.page-hero--photo { background-image: linear-gradient(100deg, rgba(22, 48, 42, 0.96) 0%, rgba(36, 73, 61, 0.84) 50%, rgba(36, 73, 61, 0.45) 100%), var(--hero-img); background-size: cover; background-position: center 40%; }
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--clay) 0 33%, var(--marigold) 33% 66%, var(--pine-soft) 66%);
}
.page-hero h1 { color: var(--linen); margin-bottom: 14px; max-width: 760px; }
.page-hero h1 em { font-style: italic; color: var(--marigold); font-weight: 400; }
.page-hero p { color: rgba(252, 250, 245, 0.85); max-width: 600px; font-size: 1.12rem; }
.crumbs { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--marigold); margin-bottom: 16px; font-weight: 700; }
.crumbs a { color: var(--marigold); }
.crumbs span { margin: 0 10px; opacity: 0.55; }

/* -------- Cards -------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--pine-tint); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate); }
.card .icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clay-tint);
  color: var(--clay-deep);
  border-radius: 16px;
  margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card--link { align-items: center; justify-content: center; text-align: center; padding: 20px 18px; font-weight: 700; color: var(--pine-deep); }
.card--link:hover { background: var(--pine); color: var(--linen); border-color: var(--pine); }
.card--post .card__thumb { margin: -32px -28px 22px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 16px;
  font-weight: 700; font-size: 0.92rem;
  color: var(--clay-deep);
}
.card-link::after { content: "→"; transition: transform var(--transition); }
.card-link:hover::after { transform: translateX(4px); }
.card .role-meta { color: var(--pine-soft); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }

/* -------- Split sections -------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--flip .split-text { order: 2; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { color: var(--slate); }
.split-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--pine-tint);
  box-shadow: var(--shadow-md);
}
.split-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.split-visual.aspect-wide { aspect-ratio: 4 / 3; }
.split-visual.aspect-square { aspect-ratio: 1 / 1; }
.split-visual > img.pos-right { object-position: 78% center; }
.split-visual > img.pos-left { object-position: 22% center; }
.split-visual > img.pos-top { object-position: center 20%; }
.split-visual > img.pos-bottom { object-position: center 80%; }
.split-visual .caption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(252, 250, 245, 0.94);
  color: var(--pine-deep);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.split-visual--offset::after {
  content: "";
  position: absolute; inset: auto -14px -14px auto;
  width: 45%; height: 45%;
  border-radius: 20px;
  background: var(--clay-tint);
  z-index: -1;
}
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-pair .split-visual { aspect-ratio: 3 / 4; }
.photo-pair .split-visual:last-child { margin-top: 48px; }

/* -------- Features list -------- */
.features { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.features li { position: relative; padding-left: 36px; line-height: 1.55; }
.features li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--clay-tint);
}
.features li::after {
  content: "";
  position: absolute; left: 7px; top: 9px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--clay-deep);
  border-bottom: 2px solid var(--clay-deep);
  transform: rotate(-45deg);
}

/* -------- Intro row -------- */
.intro-row { display: grid; grid-template-columns: 1fr 1.35fr; gap: 56px; align-items: start; }
.intro-row h2 { margin: 0; }
.intro-row .lede { margin-bottom: 16px; }

/* -------- Stats band -------- */
.stats-band { background: var(--pine-deep); color: var(--linen); padding: 56px 0; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: rgba(231, 181, 63, 0.08); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.stat { text-align: left; padding: 0 24px; border-left: 2px solid rgba(231, 181, 63, 0.4); }
.stat .num { display: block; font-family: var(--font-serif); font-size: 3rem; color: var(--marigold); line-height: 1; margin-bottom: 8px; font-weight: 500; }
.stat .label { font-size: 0.84rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(252, 250, 245, 0.75); font-weight: 700; }

/* -------- Values -------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--line); display: flex; gap: 18px; align-items: flex-start; }
.value .icon { width: 50px; height: 50px; flex: none; border-radius: 50%; background: var(--pine-tint); color: var(--pine); display: flex; align-items: center; justify-content: center; }
.value .icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.15rem; margin-bottom: 6px; }
.value p { color: var(--slate); font-size: 0.98rem; }

/* -------- Testimonial -------- */
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--line); position: relative; }
.testimonial::before { content: "“"; position: absolute; top: 8px; left: 22px; font-family: var(--font-serif); font-size: 5rem; line-height: 1; color: var(--clay-soft); opacity: 0.6; }
.testimonial p { font-family: var(--font-serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); position: relative; }
.testimonial .author { margin-top: 18px; font-weight: 700; font-size: 0.92rem; color: var(--pine); }
.testimonial .author span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 3px; }

/* -------- CTA panel (horizontal) -------- */
.cta-panel {
  background:
    radial-gradient(70% 120% at 100% 0%, rgba(231, 181, 63, 0.22), transparent 60%),
    linear-gradient(120deg, var(--pine-deep), var(--pine));
  color: var(--linen);
  padding: 56px 60px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before { content: ""; position: absolute; left: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; border: 18px solid rgba(196, 103, 58, 0.35); }
.cta-panel h2 { color: var(--linen); margin-bottom: 12px; }
.cta-panel p { color: rgba(252, 250, 245, 0.84); font-size: 1.08rem; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; position: relative; }

/* -------- Forms -------- */
.form { display: grid; gap: 18px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pine); margin-bottom: 7px; }
.field .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--linen);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2324493d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input[type="file"] { padding: 10px 12px; font-size: 0.92rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--pine-soft); box-shadow: 0 0 0 4px rgba(53, 105, 90, 0.15); }
.field .is-invalid { border-color: #c0392b; background: #fff7f6; }
.form-msg { display: none; padding: 14px 18px; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600; }
.form-msg.ok { display: block; background: var(--pine-tint); color: var(--pine-deep); border: 1px solid #b9d3c6; }
.form-msg.err { display: block; background: #fdecea; color: #8a2a1f; border: 1px solid #efb8b0; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* -------- Info boxes -------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-box { background: var(--white); padding: 28px 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); display: flex; gap: 18px; align-items: flex-start; }
.info-box .icon { width: 46px; height: 46px; flex: none; border-radius: 14px; background: var(--clay-tint); color: var(--clay-deep); display: flex; align-items: center; justify-content: center; }
.info-box .icon svg { width: 22px; height: 22px; }
.info-box h4 { color: var(--pine); margin-bottom: 8px; }
.info-box p { font-size: 1rem; line-height: 1.55; color: var(--slate); }
.info-box a { font-weight: 700; }

.map-frame { position: relative; aspect-ratio: 16 / 7; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: var(--pine-tint); box-shadow: var(--shadow-md); }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* -------- FAQ -------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 0 22px; transition: border-color var(--transition); }
.faq details[open] { border-color: var(--pine-soft); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--pine-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--clay); border-bottom: 2px solid var(--clay); transform: rotate(45deg); transition: transform var(--transition); margin-right: 4px; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > p { padding: 0 0 20px; color: var(--slate); }

/* -------- Gallery strip -------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 1; position: relative; background: var(--pine-tint); }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { position: absolute; left: 14px; bottom: 12px; background: rgba(22, 48, 42, 0.78); color: var(--linen); font-size: 0.78rem; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); }

/* -------- Process steps -------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 30px 26px; border: 1px solid var(--line); position: relative; }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); font-family: var(--font-serif); font-size: 2.4rem; color: var(--clay-soft); line-height: 1; display: block; margin-bottom: 14px; font-weight: 500; }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--slate); font-size: 0.98rem; }

/* -------- Footer -------- */
.site-footer { background: var(--pine-deep); color: rgba(252, 250, 245, 0.78); padding: 72px 0 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--clay) 0 33%, var(--marigold) 33% 66%, var(--pine-soft) 66%); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin-top: 18px; max-width: 360px; }
.site-footer h4 { color: var(--marigold); margin-bottom: 18px; }
.site-footer a { color: rgba(252, 250, 245, 0.82); display: block; padding: 5px 0; font-size: 0.96rem; }
.site-footer a:hover { color: var(--marigold); }
.site-footer .brand-mark { background: rgba(252, 250, 245, 0.1); }
.site-footer .brand-name { color: var(--linen); }
.site-footer .brand-tag { color: var(--marigold); }
.site-footer p { font-size: 0.96rem; line-height: 1.6; }
.footer-muted { display: block; font-size: 0.9rem; opacity: 0.7; padding: 5px 0; }
.footer-bottom { border-top: 1px solid rgba(252, 250, 245, 0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: rgba(252, 250, 245, 0.55); }

/* -------- Editor content (default page template / posts) -------- */
.entry-content h2, .entry-content h3 { margin-top: 1.6em; }
.entry-content img { border-radius: var(--radius-lg); }
.entry-thumb { margin: 0 0 32px; border-radius: 24px; overflow: hidden; }
.post-list { display: grid; gap: 26px; }
.pagination { margin-top: 40px; text-align: center; }
.pagination .page-numbers { display: inline-block; padding: 8px 14px; border-radius: var(--radius-pill); font-weight: 700; }
.pagination .page-numbers.current { background: var(--pine); color: var(--linen); }

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

/* -------- Utilities -------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--pine-deep); color: var(--linen); padding: 10px 16px; z-index: 1000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 8px; top: 8px; }

/* -------- Responsive -------- */
@media (max-width: 1060px) {
  .nav a { padding: 8px 10px; font-size: 0.9rem; }
  .nav .btn { margin-left: 4px; }
}
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--flip .split-text { order: 0; }
  .split-visual { aspect-ratio: 4 / 3; }
  .intro-row { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .values-grid, .steps, .info-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-panel { grid-template-columns: 1fr; padding: 44px 32px; }
  .cta-panel__actions { justify-content: flex-start; }
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 9; }
}
@media (max-width: 900px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--linen); padding: 12px 16px 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 13px 14px; border-radius: 10px; }
  .nav .btn { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .site-header .wrap { position: relative; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .topbar-info span + span { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .hero { padding: 48px 0 64px; }
  .hero-visual .frame { border-radius: 22px 22px 22px 60px; }
  .photo-pair .split-visual:last-child { margin-top: 24px; }
  .page-hero { padding: 64px 0 52px; }
  .cta-panel { padding: 36px 24px; border-radius: 20px; }
  body { font-size: 16px; }
}
@media (max-width: 1060px) {
  .site-header .logo-w { width: 44px; height: 44px; font-size: 27px; }
  .site-header .logo-text { padding-top: 9px; }
  .site-header .logo-name { font-size: 15px; padding-bottom: 4px; }
  .site-header .logo-tag { font-size: 8px; margin-top: 4px; }
}
@media (max-width: 420px) {
  .site-header .logo-w { width: 38px; height: 38px; font-size: 23px; }
  .site-header .logo-text { padding-top: 7px; }
  .site-header .logo-name { font-size: 12.5px; letter-spacing: 0.08em; }
  .site-header .logo-tag { font-size: 7px; letter-spacing: 0.12em; }
}
