/* ==========================================================================
   Woodside Floral & Decoration — design system.
   Hand-written, self-contained. No external fonts, no framework.
   ========================================================================== */

:root {
  /* botanical palette */
  --ink:        #16241c;
  --forest:     #24422f;
  --forest-dk:  #1a3223;
  --moss:       #4d6b55;
  --sage:       #8ea38f;
  --sage-pale:  #d5ded2;

  --rose:       #a8564c;
  --rose-dk:    #8d443b;
  --blush:      #e0a9a0;
  --blush-pale: #f4e2dd;

  --gold:       #b99259;
  --bone:       #fbf8f3;
  --cream:      #f4eee4;
  --paper:      #ffffff;
  --line:       #e5ddd0;
  --line-dk:    #3a5744;

  --text:       #2c3a31;
  --text-soft:  #5d6d62;
  --text-faint: #8a968d;

  --serif: Georgia, "Iowan Old Style", "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1220px;
  --r: 4px;
  --r-lg: 8px;
  --shadow: 0 1px 2px rgba(22, 36, 28, .05), 0 8px 28px -12px rgba(22, 36, 28, .18);
  --shadow-lg: 0 2px 4px rgba(22, 36, 28, .06), 0 26px 60px -24px rgba(22, 36, 28, .3);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ------------------------------------------------------------------ base */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.012em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; line-height: 1.28; }
h4 { font-size: 1.02rem; line-height: 1.35; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

/* The UA stylesheet gives <figure> `margin: 1em 40px`. Inside a grid that is
   invisible until you measure it — every gallery tile and testimonial card was
   80px narrower than its column and inset by 40px. <blockquote> is the same. */
figure, blockquote, dl, dd { margin: 0; }

a { color: var(--forest); text-decoration-color: rgba(36, 66, 47, .3); text-underline-offset: 3px; }
a:hover { color: var(--rose); text-decoration-color: currentColor; }

ul, ol { margin: 0 0 1.15rem; padding-left: 1.2rem; }
li { margin-bottom: .35rem; }

strong { font-weight: 600; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--blush-pale); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--forest); color: #fff; padding: .8rem 1.2rem;
}
.skip:focus { left: .5rem; top: .5rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin: 0 0 .85rem;
}

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.62;
  color: var(--text-soft);
}

.muted { color: var(--text-soft); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 62ch; }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans);
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  padding: .82rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--primary { background: var(--rose); color: #fff; }
.btn--primary:hover { background: var(--rose-dk); color: #fff; }

.btn--dark { background: var(--forest); color: #fff; }
.btn--dark:hover { background: var(--forest-dk); color: #fff; }

.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { background: var(--cream); border-color: var(--sage); color: var(--forest); }

.btn--light { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn--light:hover { background: #fff; color: var(--forest); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

.link-more {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .92rem; text-decoration: none;
  color: var(--forest);
}
.link-more svg { transition: transform .18s var(--ease); }
.link-more:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------- topbar */

.topbar {
  background: var(--forest-dk);
  color: rgba(255, 255, 255, .8);
  font-size: .8rem;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar li { display: flex; align-items: center; gap: .45rem; margin: 0; }
.topbar svg { color: var(--blush); flex: none; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--blush); }
.topbar-note { display: flex; align-items: center; gap: .45rem; white-space: nowrap; }
.topbar-note svg { color: var(--blush); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 248, 243, .94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.brand-mark { border-radius: 6px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif); font-size: 1.24rem; color: var(--ink); letter-spacing: -.01em;
}
.brand-sub {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.nav > a, .nav-drop > button {
  font-family: var(--sans); font-size: .93rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  padding: .55rem .8rem; border-radius: var(--r);
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .35rem;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav > a:hover, .nav-drop > button:hover { background: var(--cream); color: var(--forest); }
.nav > a[aria-current="page"] { color: var(--rose); }

.nav-drop { position: relative; }
.nav-drop > button svg { transition: transform .2s var(--ease); }
.nav-drop[data-open="true"] > button { background: var(--cream); color: var(--forest); }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }

.nav-panel {
  position: absolute; top: calc(100% + .55rem); left: 50%; transform: translate(-50%, -6px);
  width: min(880px, 88vw);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.6rem 1.1rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-drop[data-open="true"] .nav-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav-panel-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.nav-col-h {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin: 0 0 .6rem;
}
.nav-col a {
  display: block; font-size: .89rem; color: var(--text); text-decoration: none;
  padding: .32rem .45rem; margin-left: -.45rem; border-radius: var(--r);
  transition: background .14s var(--ease), color .14s var(--ease);
}
.nav-col a:hover { background: var(--cream); color: var(--forest); }
.nav-col a[aria-current="page"] { color: var(--rose); font-weight: 600; }
.nav-panel-foot {
  margin-top: 1.2rem; padding-top: .95rem; border-top: 1px solid var(--line);
  display: flex; gap: 1.8rem; flex-wrap: wrap;
}

.header-cta { display: flex; align-items: center; gap: .6rem; flex: none; }
.header-cta .btn { padding: .7rem 1.15rem; font-size: .88rem; }
.header-cta .btn--ghost { gap: .4rem; }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--r); padding: .5rem; color: var(--forest); cursor: pointer;
}

/* ---------------------------------------------------------------- drawer */

.drawer { position: fixed; inset: 0; z-index: 120; visibility: hidden; }
.drawer[data-open="true"] { visibility: visible; }
.drawer-veil {
  position: absolute; inset: 0; background: rgba(22, 36, 28, .5);
  opacity: 0; transition: opacity .25s var(--ease);
}
.drawer[data-open="true"] .drawer-veil { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 88vw);
  background: var(--bone); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .28s var(--ease);
  display: flex; flex-direction: column; overflow-y: auto;
}
.drawer[data-open="true"] .drawer-panel { transform: none; }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bone); z-index: 2;
}
.drawer-close { background: none; border: 0; color: var(--forest); cursor: pointer; padding: .3rem; }
.drawer nav { padding: 1rem 1.25rem; flex: 1; }
.drawer nav a {
  display: block; padding: .58rem 0; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: 1.02rem;
  border-bottom: 1px solid var(--line);
}
.drawer nav a.sub { font-weight: 400; font-size: .95rem; color: var(--text); padding-left: .8rem; }
.drawer nav a:hover { color: var(--rose); }
.drawer-sub {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin: 1.1rem 0 .3rem;
}
.drawer-foot { padding: 1.25rem; border-top: 1px solid var(--line); }
.drawer-foot p { display: flex; align-items: center; gap: .45rem; }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; overflow: hidden; background: var(--forest-dk); isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(16, 30, 22, .92) 0%, rgba(16, 30, 22, .78) 42%, rgba(16, 30, 22, .35) 74%, rgba(16, 30, 22, .2) 100%),
    linear-gradient(to top, rgba(16, 30, 22, .6), transparent 45%);
}
.hero .wrap { position: relative; padding-top: clamp(4.5rem, 11vw, 8.5rem); padding-bottom: clamp(4rem, 9vw, 7rem); }
.hero-inner { max-width: 640px; color: #fff; }
.hero-inner .eyebrow { color: var(--blush); }
.hero-inner h1 { color: #fff; margin-bottom: .5em; }
.hero-inner .lead { color: rgba(255, 255, 255, .84); max-width: 54ch; }
.hero .btn-row { margin-top: 2rem; }

.hero-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 1.6rem;
}
.hero-strip li {
  list-style: none; margin: 0; flex: 1 1 190px;
  padding-right: 1.5rem; color: rgba(255, 255, 255, .82); font-size: .9rem;
  display: flex; gap: .6rem; align-items: flex-start;
}
.hero-strip svg { color: var(--blush); flex: none; margin-top: .18rem; }
.hero-strip strong { display: block; color: #fff; font-weight: 600; }

/* -------------------------------------------------------------- pagehead */

.pagehead {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--forest-dk); color: #fff;
  padding: clamp(3rem, 7vw, 5.2rem) 0 clamp(2.6rem, 6vw, 4.2rem);
}
.pagehead-media { position: absolute; inset: 0; z-index: -2; }
.pagehead-media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to right, rgba(16, 30, 22, .93) 0%, rgba(16, 30, 22, .8) 48%, rgba(16, 30, 22, .45) 100%);
}
.pagehead--plain { background: var(--forest); }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead .eyebrow { color: var(--blush); }
.pagehead .lead { color: rgba(255, 255, 255, .84); max-width: 60ch; }
.pagehead-meta {
  list-style: none; margin: 1.6rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
}
.pagehead-meta li {
  display: flex; align-items: center; gap: .45rem; margin: 0;
  font-size: .89rem; color: rgba(255, 255, 255, .86);
}
.pagehead-meta svg { color: var(--blush); flex: none; }

.crumbs { margin-bottom: 1.3rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li { font-size: .82rem; color: rgba(255, 255, 255, .62); margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.crumbs a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* -------------------------------------------------------------- sections */

.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section--tight { padding: clamp(2.6rem, 5vw, 4rem) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--forest); color: rgba(255, 255, 255, .84); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: var(--blush); }
.section--dark .lead { color: rgba(255, 255, 255, .8); }

.section-head { max-width: 66ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head--row {
  max-width: none; display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.section-head--row > div { max-width: 60ch; }
.section-head h2 { margin-bottom: .35em; }

/* ----------------------------------------------------------------- cards */

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--sage-pale); }
.card-media { position: relative; overflow: hidden; background: var(--cream); aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-tag {
  position: absolute; left: .85rem; top: .85rem;
  background: rgba(251, 248, 243, .94); color: var(--forest);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: .32rem .6rem; border-radius: 999px;
}
.card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .45rem; }
.card-body h3 a { text-decoration: none; color: inherit; }
.card-body h3 a:hover { color: var(--rose); }
.card-body p { font-size: .95rem; color: var(--text-soft); }
.card-foot {
  margin-top: auto; padding-top: 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.card-price { font-family: var(--serif); font-size: 1.02rem; color: var(--forest); }
.card-price span { font-size: .78rem; color: var(--text-faint); font-family: var(--sans); }

/* ----------------------------------------------------------------- split */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--top { align-items: start; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--r-lg); width: 100%; }
.split-media--offset::before {
  content: ""; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--sage); border-radius: var(--r-lg); z-index: -1;
}
.split-body > .eyebrow:first-child { margin-top: 0; }

/* -------------------------------------------------------------- features */

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem; }
.feature { display: flex; gap: .95rem; }
.feature-ico {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--blush-pale); color: var(--rose);
  display: grid; place-items: center;
}
.section--dark .feature-ico { background: rgba(255, 255, 255, .12); color: var(--blush); }
.feature h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin-bottom: .3rem; letter-spacing: 0; }
.section--dark .feature h3 { color: #fff; }
.feature p { font-size: .93rem; color: var(--text-soft); margin: 0; }
.section--dark .feature p { color: rgba(255, 255, 255, .76); }

/* ------------------------------------------------------------------ menu */

.menu {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.6rem);
}
.menu-head { max-width: 62ch; margin-bottom: 1.6rem; }
.menu-head h2 { margin-bottom: .35em; }
.menu-head p { color: var(--text-soft); font-size: .95rem; margin: 0; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex; align-items: baseline; gap: 1.5rem;
  padding: 1.05rem 0; border-top: 1px solid var(--line); margin: 0;
}
.menu-item { flex: 1; }
.menu-item h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin-bottom: .18rem; letter-spacing: 0; }
.menu-item p { font-size: .92rem; color: var(--text-soft); margin: 0; }
.menu-price {
  font-family: var(--serif); font-size: 1.14rem; color: var(--forest);
  white-space: nowrap; flex: none;
}

/* ----------------------------------------------------------------- steps */

.steps { counter-reset: step; display: grid; gap: 1.4rem; }
.step {
  display: grid; grid-template-columns: 46px 1fr; gap: 1.1rem; align-items: start;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; padding-bottom: 0; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.05rem; color: var(--rose);
  border: 1px solid var(--blush); border-radius: 50%;
  width: 46px; height: 46px; display: grid; place-items: center;
}
.step h3 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; margin-bottom: .25rem; letter-spacing: 0; }
.step p { font-size: .95rem; color: var(--text-soft); margin: 0; }

/* ------------------------------------------------------------------- faq */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--serif); font-size: 1.14rem; color: var(--ink); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 1.6rem;
  width: 10px; height: 10px; border-right: 1.5px solid var(--rose); border-bottom: 1.5px solid var(--rose);
  transform: rotate(45deg); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.faq summary:hover { color: var(--rose); }
.faq-body { padding: 0 3rem 1.4rem 0; }
.faq-body p { color: var(--text-soft); margin: 0; }

/* ------------------------------------------------------------- quotes */

.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.quote {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.8rem;
}
.quote-mark { color: var(--blush); margin-bottom: .8rem; }
.quote p { font-family: var(--serif); font-size: 1.1rem; line-height: 1.52; color: var(--ink); }
.quote-by { font-size: .84rem; color: var(--text-faint); margin-top: 1rem; }
.quote-by strong { color: var(--text); font-weight: 600; }

/* --------------------------------------------------------------- gallery */

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--cream); aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(16, 30, 22, .9), transparent);
  color: #fff; padding: 2.2rem .95rem .85rem; font-size: .84rem; line-height: 1.4;
}
.gallery-cap span {
  display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blush); font-weight: 700; margin-bottom: .2rem;
}

/* ------------------------------------------------------------------ team */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.person { text-align: left; }
.person img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 1/1; object-fit: cover; margin-bottom: 1.1rem; }
.person h3 { margin-bottom: .12rem; font-size: 1.16rem; }
.person-role {
  font-size: .74rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--rose); font-weight: 700; margin-bottom: .8rem;
}
.person p { font-size: .93rem; color: var(--text-soft); }
.person-focus {
  font-size: .82rem; color: var(--text-faint); margin-top: .8rem;
  padding-top: .8rem; border-top: 1px solid var(--line);
}

/* ----------------------------------------------------------------- zones */

.zone { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.zone + .zone { margin-top: 1.6rem; }
.zone-head {
  padding: 1.4rem 1.6rem; background: var(--cream); border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.zone-head h3 { margin: 0; }
.zone-head p { font-size: .93rem; color: var(--text-soft); margin: .3rem 0 0; flex-basis: 100%; }
.zone-fee { font-family: var(--serif); color: var(--forest); font-size: 1.02rem; white-space: nowrap; }
.zone-list { list-style: none; margin: 0; padding: .6rem 1.6rem 1.4rem; columns: 2; column-gap: 2.5rem; }
.zone-list li {
  padding: .5rem 0; border-bottom: 1px solid var(--line); break-inside: avoid;
  display: flex; justify-content: space-between; gap: 1rem; font-size: .93rem;
}
.zone-list li strong { font-weight: 600; }
.zone-list li span { color: var(--text-faint); font-size: .86rem; text-align: right; }

/* ------------------------------------------------------------------ form */

.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.4rem);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .38rem;
}
.field label .req { color: var(--rose); }
.field input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.field select,
.field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--text);
  padding: .72rem .9rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bone);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(142, 163, 143, .22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--text-soft); }
.field-check input { margin-top: .25rem; flex: none; accent-color: var(--rose); }
.form-note { font-size: .82rem; color: var(--text-faint); margin-top: 1rem; }

/* ------------------------------------------------------------- info list */

.infolist { list-style: none; margin: 0; padding: 0; }
.infolist li {
  display: flex; gap: .85rem; padding: 1rem 0; border-bottom: 1px solid var(--line); margin: 0;
}
.infolist li:first-child { padding-top: 0; }
.infolist li:last-child { border-bottom: 0; }
.infolist svg { color: var(--rose); flex: none; margin-top: .22rem; }
.infolist h4 { margin-bottom: .15rem; font-family: var(--sans); font-size: .92rem; font-weight: 700; }
.infolist p, .infolist address {
  font-size: .95rem; color: var(--text-soft); margin: 0; font-style: normal;
}
.infolist a { color: var(--forest); }

/* -------------------------------------------------------------- cta band */

.cta-band { background: var(--forest); color: #fff; padding: clamp(2.8rem, 6vw, 4.4rem) 0; }
.cta-inner {
  display: grid; grid-template-columns: 1.35fr .65fr; gap: 2.5rem; align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band .eyebrow { color: var(--blush); }
.cta-band .lead { color: rgba(255, 255, 255, .82); }
.cta-band .btn-row { justify-content: flex-end; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--forest); border-color: #fff; }

/* ------------------------------------------------------------------ prose */

.prose { max-width: 76ch; }
.prose h2 { font-size: 1.6rem; margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.16rem; margin-top: 1.8rem; }
.prose ul { padding-left: 1.15rem; }
.prose li { margin-bottom: .5rem; }

/* ------------------------------------------------------------- pill row */

.pills { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pills li { margin: 0; }
.pills a, .pills span {
  display: inline-block; font-size: .86rem; text-decoration: none;
  padding: .42rem .85rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--text);
}
.pills a:hover { border-color: var(--sage); background: var(--cream); color: var(--forest); }

/* ----------------------------------------------------------------- stats */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { border-left: 2px solid var(--blush); padding-left: 1.1rem; }
.stat-n { font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.7rem); color: var(--ink); line-height: 1; }
.section--dark .stat-n { color: #fff; }
.stat-l { font-size: .86rem; color: var(--text-soft); margin-top: .4rem; }
.section--dark .stat-l { color: rgba(255, 255, 255, .74); }

/* ---------------------------------------------------------------- footer */

.site-footer { background: var(--forest-dk); color: rgba(255, 255, 255, .74); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: .92rem; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: rgba(255, 255, 255, .5); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand p { margin-top: 1.1rem; max-width: 42ch; }
.site-footer h4 {
  color: #fff; font-family: var(--sans); font-size: .74rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255, 255, 255, .78); text-decoration: none; }
.site-footer a:hover { color: var(--blush); text-decoration: underline; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { color: var(--blush); flex: none; margin-top: .22rem; }
.footer-langs {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.2rem;
}
.footer-langs li {
  font-size: .74rem; padding: .22rem .6rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .66); margin: 0;
}
.footer-bar {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255, 255, 255, .58);
}
.footer-bar ul { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bar li { margin: 0; }
.footer-disclaimer {
  margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .8rem; line-height: 1.6; color: rgba(255, 255, 255, .5); max-width: 92ch;
}
.footer-disclaimer strong { color: rgba(255, 255, 255, .78); }

/* ------------------------------------------------------------------- 404 */

.err { padding: clamp(4rem, 12vw, 8rem) 0; text-align: center; }
.err .big { font-family: var(--serif); font-size: clamp(4rem, 14vw, 8rem); color: var(--blush); line-height: 1; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .nav-panel-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 3; }
  .footer-contact { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2rem; }
}

@media (max-width: 940px) {
  .nav, .header-cta .btn { display: none; }
  .burger { display: block; }
  .header-cta { margin-left: auto; }
  .site-header .wrap { min-height: 68px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  body { font-size: 16px; }
  .topbar-hide-sm { display: none; }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .split-media--offset::before { display: none; }
  .features { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .zone-list { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: span 2; }
  .hero-strip li { flex-basis: 100%; }
}

@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: span 1; }
  .footer-contact { grid-template-columns: 1fr; }
  .menu-list li { flex-wrap: wrap; gap: .4rem; }
  .brand-sub { display: none; }
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .topbar, .site-header, .drawer, .cta-band, .site-footer, .hero-media { display: none !important; }
  body { background: #fff; }
}
