/* =============================================================
   MiniCastles — "Storybook Stonework" design system
   Warm limestone parchment · slate stone · antique brass ·
   heraldic burgundy · weathered verdigris. Cormorant + Inter.
   Premium, romantic, craftsman-real.
   ============================================================= */

:root {
  --parchment:   #f4efe3;   /* warm limestone paper */
  --parchment-2: #ece3d1;   /* alt section */
  --parchment-3: #e1d5bd;   /* image backings */
  --card:        #fffdf7;

  --slate:   #2b3640;       /* castle stone, dusk */
  --slate-2: #36444f;
  --slate-3: #475763;

  --ink:    #2a2620;
  --ink-2:  #574f41;
  --ink-3:  #6e6450;   /* darkened for WCAG AA on parchment/card */
  --muted:  #6e6450;
  --line:   #e4dac4;
  --line-2: #d7c8aa;

  --brass:      #b8893b;     /* primary — antique brass/gold */
  --brass-deep: #9a6f29;
  --brass-ink:  #856016;     /* readable on parchment */
  --brass-soft: rgba(184,137,59,0.14);
  --brass-faint:rgba(184,137,59,0.07);
  --brass-lite: #d4ab55;     /* on dark (AA on slate & slate-2) */

  --burgundy:    #8b2435;    /* heraldic accent */
  --burgundy-ink:#7c1f30;
  --burgundy-soft:rgba(139,36,53,0.10);

  --verdigris:   #5e7d6f;    /* weathered copper / garden */
  --verdigris-ink:#456053;
  --verdigris-soft:rgba(94,125,111,0.14);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-label:   'Inter', system-ui, sans-serif;

  --radius-1: 8px;
  --radius-2: 16px;
  --radius-3: 24px;
  --arch: 50% 50% 8px 8px / 26% 26% 8px 8px;   /* castle-window arched top */
  --ease: cubic-bezier(.2,.7,.2,1);
  --transition: 260ms var(--ease);
  --container: 1180px;
  --measure: 700px;
  --shadow-1: 0 2px 12px rgba(43,54,64,0.07);
  --shadow-2: 0 18px 44px rgba(43,54,64,0.16);
  --shadow-brass: 0 10px 24px rgba(154,111,41,0.28);
  --merlon: linear-gradient(#000 0 0) bottom/100% 42% no-repeat,
            repeating-linear-gradient(90deg, #000 0 17px, transparent 17px 32px) top/100% 62% no-repeat;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--parchment); color: var(--ink-2);
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-ink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brass-deep); }

/* Visible keyboard focus everywhere (WCAG 2.4.7). */
:where(a, button, input, select, textarea, [tabindex]):focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 4px; }
.section--slate :where(a, button):focus-visible,
.cta-band :where(a, button):focus-visible,
.ribbon :where(a):focus-visible { outline-color: var(--brass-lite); }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink);
  letter-spacing: -0.005em; line-height: 1.08; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.9rem, 6vw, 5rem); font-weight: 600; line-height: 1.0; }
h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); font-weight: 600; }
em { color: var(--ink); }
.muted { color: var(--muted); }
.lede { font-size: 1.26rem; line-height: 1.6; color: var(--ink-2); }
::selection { background: var(--brass); color: #fff; }

/* layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.container--narrow { max-width: var(--measure); }
.section { padding: clamp(58px, 8vw, 112px) 0; position: relative; }
.section--tight { padding: clamp(42px, 5vw, 72px) 0; }
.section--alt { background: var(--parchment-2); }
.section--slate { background: var(--slate); color: #d8dee3; }
.section--slate h1, .section--slate h2, .section--slate h3 { color: #fff; }
.section__header { max-width: var(--measure); margin-bottom: clamp(34px,5vw,54px); }
.section__header.is-center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header p { color: var(--ink-3); font-size: 1.12rem; margin-bottom: 0; }
.section--slate .section__header p { color: #aab6bf; }

/* eyebrow */
.eyebrow { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass-ink); display: inline-flex; align-items: center; gap: 11px; margin-bottom: 17px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--brass); }
.is-center .eyebrow { justify-content: center; }
.eyebrow--burgundy { color: var(--burgundy-ink); } .eyebrow--burgundy::before { background: var(--burgundy); }
.eyebrow--verdigris { color: var(--verdigris-ink); } .eyebrow--verdigris::before { background: var(--verdigris); }
.eyebrow--on-dark { color: var(--brass-lite); } .eyebrow--on-dark::before { background: var(--brass-lite); }

/* sticker / wax-seal chip */
.sticker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-label); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.04em; padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
  background: var(--brass-soft); color: var(--brass-ink); border: 1px solid var(--line-2); }
.sticker--burgundy { background: var(--burgundy-soft); color: var(--burgundy-ink); border-color: rgba(139,36,53,0.2); }

.visually-hidden, .skip-link { position: absolute; left: -9999px; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; z-index: 9999; background: var(--brass); color: #fff; padding: 10px 16px; font-family: var(--font-label); font-weight: 700; border-radius: var(--radius-1); }

/* ── crenellation / battlements divider (signature) ── */
.battlements { height: 15px; background: var(--slate); -webkit-mask: var(--merlon); mask: var(--merlon); }
.battlements--brass { background: var(--brass); }
.battlements--parchment { background: var(--parchment); }

/* ── ribbon ── */
.ribbon { background: var(--slate); color: #b9c3cb; font-size: 0.82rem; }
.ribbon__inner { display: flex; align-items: center; gap: 12px; padding: 8px 0; flex-wrap: wrap; font-family: var(--font-label); font-weight: 500; }
.ribbon__spacer { flex: 1 1 auto; }
.ribbon__item { color: #b9c3cb; display: inline-flex; align-items: center; gap: 6px; }
.ribbon__item--tag { background: var(--brass); color: #2a2018; padding: 3px 13px; border-radius: 999px; font-weight: 700; }
a.ribbon__item:hover { color: #fff; }
@media (max-width: 640px) { .ribbon__inner { justify-content: center; } .ribbon__spacer { flex-basis: 100%; height: 0; } }

/* ── header ── */
.site-header { position: sticky; top: 0; z-index: 50; padding: 14px 0 2px; background: linear-gradient(var(--parchment) 64%, transparent); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--card); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 10px 12px 10px 16px; box-shadow: 0 10px 30px rgba(43,54,64,0.10); }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { display: inline-flex; color: var(--brass); transition: transform var(--transition); }
.brand:hover .brand__mark { transform: translateY(-2px) rotate(-3deg); }
.brand__word { font-family: var(--font-display); font-weight: 600; font-size: 1.62rem; letter-spacing: 0; line-height: 0.95; }
.brand__word b { font-weight: 600; color: var(--brass-ink); }
.brand__sub { display: block; font-family: var(--font-label); font-weight: 600; font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }

.site-nav__pill { display: flex; align-items: center; gap: 4px; }
.site-nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav__list > li > a { color: var(--ink-2); font-family: var(--font-label); font-size: 0.92rem; font-weight: 600; padding: 9px 16px; border-radius: 9px; display: block; transition: background var(--transition), color var(--transition); }
.site-nav__list > li > a:hover { color: var(--brass-ink); background: var(--parchment-2); }
.site-nav__list > li > a.is-active { color: var(--brass-ink); background: var(--brass-soft); }
.site-nav__cta { margin-left: 6px; } .site-nav__cta > a { color: #2a2018; }
.site-nav__toggle { display: none; width: 46px; height: 46px; background: var(--card); border: 1px solid var(--line-2); border-radius: 11px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; cursor: pointer; }
.site-nav__toggle-bar { width: 18px; height: 2px; border-radius: 2px; background: var(--slate); }
@media (max-width: 900px) {
  .site-nav__toggle { display: inline-flex; }
  .site-nav__pill { position: fixed; inset: 0; background: var(--parchment); border-radius: 0; padding: 100px 26px 40px; display: block; transform: translateY(-110%); visibility: hidden; transition: transform var(--transition), visibility var(--transition); overflow-y: auto; }
  .site-nav.is-open .site-nav__pill { transform: translateY(0); visibility: visible; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 6px; }
  .site-nav__list > li > a { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; padding: 12px 18px; border-radius: var(--radius-2); background: var(--card); border: 1px solid var(--line); }
  .site-nav__cta { margin: 14px 0 0; } .site-nav__cta > a { font-size: 1.05rem; width: 100%; justify-content: center; }
}

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; font-family: var(--font-label); font-size: 0.97rem; font-weight: 600; background: transparent; color: var(--ink); border: 1.5px solid var(--line-2); border-radius: 10px; cursor: pointer; transition: all var(--transition); }
.btn--primary { background: var(--brass); border-color: var(--brass); color: #2a2018; box-shadow: var(--shadow-brass); font-weight: 700; }
.btn--primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: #fff; transform: translateY(-2px); }
.btn--slate { background: var(--slate); border-color: var(--slate); color: #fff; }
.btn--slate:hover { background: var(--slate-2); border-color: var(--slate-2); color: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-ink); transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.04rem; }
.btn--sm { padding: 9px 18px; font-size: 0.88rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── hero ── */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(56% 50% at 86% 12%, var(--brass-faint), transparent 70%),
  radial-gradient(46% 42% at 2% 96%, var(--verdigris-soft), transparent 72%), var(--parchment); }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px,4vw,68px); align-items: center;
  padding: clamp(42px,6vw,88px) 0 clamp(56px,8vw,104px); }
.hero__copy { max-width: 600px; }
.hero h1 { margin-bottom: 0; }
.hero h1 .uline { color: var(--brass-ink); font-style: italic; position: relative; white-space: nowrap; }
.hero h1 .uline::after { content: ''; position: absolute; left: 0; right: 0; bottom: -0.08em; height: 0.16em;
  background: no-repeat center/100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10'%3E%3Cpath d='M2 6C30 2 90 2 118 5' fill='none' stroke='%23b8893b' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E"); }
.hero__lede { margin-top: 24px; font-size: 1.24rem; color: var(--ink-2); }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust { margin-top: 28px; display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-3); font-family: var(--font-label); font-weight: 500; }
.hero__trust strong { color: var(--brass-ink); font-weight: 700; }

/* hero arched "keep" portrait */
.keep { position: relative; padding: 0 8px; }
.keep__frame { position: relative; border-radius: var(--arch); overflow: hidden; border: 4px solid var(--card);
  box-shadow: var(--shadow-2); background: var(--parchment-3); }
.keep__frame img { width: 100%; aspect-ratio: 4/4.3; object-fit: cover; display: block; }
.keep__crest { position: absolute; left: -14px; bottom: 26px; z-index: 3; width: 86px; height: 86px; border-radius: 50%;
  background: var(--slate); color: var(--brass-lite); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-2); border: 2px solid var(--brass); }
.keep__crest svg { width: 42px; height: 42px; }
.keep__chip { position: absolute; right: -10px; top: 24px; z-index: 3; background: var(--card); border-radius: 12px;
  padding: 10px 15px; box-shadow: var(--shadow-2); border: 1px solid var(--line); max-width: 210px; }
.keep__chip b { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); display: block; }
.keep__chip span { font-size: 0.8rem; color: var(--ink-3); }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .keep { order: -1; max-width: 440px; margin: 0 auto; }
  .keep__frame img { aspect-ratio: 4/3.6; }
  .keep__crest { left: 6px; bottom: 16px; }
  .keep__chip { right: 6px; }
}

/* ── stat band ── */
.stat-band { background: var(--slate); border-radius: var(--radius-3); padding: 8px; box-shadow: var(--shadow-2); position: relative; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1px; }
.stat-cell { padding: 28px 24px; text-align: center; }
.stat-cell__num { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem); font-weight: 600; color: var(--brass-lite); line-height: 1; }
.stat-cell__label { margin-top: 8px; font-size: 1.02rem; color: #fff; font-weight: 600; font-family: var(--font-display); }
.stat-cell__sub { margin-top: 6px; font-size: 0.84rem; color: #9fabb4; }

/* ── cards (teasers) ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-1); transition: transform var(--transition), box-shadow var(--transition); }
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); color: var(--ink-2); }
.card__icon { width: 54px; height: 54px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; background: var(--brass-soft); color: var(--brass-deep); margin-bottom: 18px; }
.card__icon svg { width: 27px; height: 27px; }
.card--burgundy .card__icon { background: var(--burgundy-soft); color: var(--burgundy); }
.card--verdigris .card__icon { background: var(--verdigris-soft); color: var(--verdigris-ink); }
.card__kicker { font-family: var(--font-label); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-ink); margin-bottom: 10px; }
.card h3 { font-size: 1.5rem; margin-bottom: 9px; }
.card p { color: var(--ink-3); font-size: 0.98rem; margin-bottom: 0; }
.card__more { margin-top: 18px; font-weight: 600; font-size: 0.9rem; color: var(--brass-ink); display: inline-flex; gap: 6px; font-family: var(--font-label); }
.card__more::after { content: '→'; transition: transform var(--transition); }
a.card:hover .card__more::after { transform: translateX(4px); }

/* ── pillars (craftsmanship) ── */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr)); gap: 20px; }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 28px 28px; box-shadow: var(--shadow-1); }
.pillar__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brass-soft); color: var(--brass-deep); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar__icon svg { width: 26px; height: 26px; }
.pillar:nth-child(3n+2) .pillar__icon { background: var(--verdigris-soft); color: var(--verdigris-ink); }
.pillar:nth-child(3n+3) .pillar__icon { background: var(--burgundy-soft); color: var(--burgundy); }
.pillar h3 { font-size: 1.4rem; margin-bottom: 7px; }
.pillar p { color: var(--ink-3); font-size: 0.96rem; margin: 0; }

/* ── collection cards (arched windows) ── */
.collection-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px,100%),1fr)); gap: 28px; }
.collection-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-3); overflow: hidden; box-shadow: var(--shadow-1); display: flex; flex-direction: column; scroll-margin-top: 100px; transition: transform var(--transition), box-shadow var(--transition); }
.collection-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.collection-card__media { position: relative; margin: 12px 12px 0; border-radius: var(--arch); overflow: hidden; background: var(--parchment-3); }
.collection-card__media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.collection-card__badge { position: absolute; top: 14px; left: 14px; font-family: var(--font-label); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: var(--brass); color: #2a2018; box-shadow: var(--shadow-1); }
.collection-card__badge--livable { background: var(--verdigris); color: #fff; }
.collection-card__badge--bespoke { background: var(--burgundy); color: #fff; }
.collection-card__body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.collection-card__name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; color: var(--ink); line-height: 1; margin: 0; }
.collection-card__tagline { color: var(--burgundy-ink); font-style: italic; font-family: var(--font-display); font-size: 1.18rem; margin: 4px 0 0; }
.collection-card__blurb { color: var(--ink-3); font-size: 0.95rem; margin: 14px 0 0; }
.collection-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.chip { font-family: var(--font-label); font-weight: 600; font-size: 0.74rem; padding: 5px 12px; border-radius: 7px; background: var(--parchment-2); color: var(--ink-2); border: 1px solid var(--line-2); display: inline-flex; align-items: center; gap: 5px; }
.chip--price { background: var(--brass-soft); color: var(--brass-ink); border-color: rgba(184,137,59,0.3); font-weight: 700; }
.collection-card__features { list-style: none; padding: 0; margin: 18px 0 0; }
.collection-card__features li { position: relative; padding-left: 25px; margin-bottom: 8px; color: var(--ink-2); font-size: 0.92rem; }
.collection-card__features li::before { content: ''; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; background: var(--brass); transform: rotate(45deg); }
.collection-card__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── numbered process steps ── */
.step-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; counter-reset: step; }
.step { counter-increment: step; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 28px 26px; box-shadow: var(--shadow-1); position: relative; }
.step::before { content: counter(step, upper-roman); font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--brass-ink); background: var(--brass-soft); min-width: 46px; height: 46px; padding: 0 10px; border-radius: 23px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 1.35rem; margin-bottom: 6px; }
.step p { color: var(--ink-3); font-size: 0.95rem; margin: 0; }
.section--slate .step { background: var(--slate-2); border-color: var(--slate-3); }
.section--slate .step p { color: #aab6bf; }
.section--slate .step::before { background: rgba(205,161,74,0.16); color: var(--brass-lite); }

/* ── split feature ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-2); box-shadow: var(--shadow-2); }
.split__media--arch img { border-radius: var(--arch); }
.split__body { max-width: 520px; }
.split + .split { margin-top: clamp(48px,7vw,92px); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 28px; } .split--flip .split__media { order: -1; } }

/* ── gallery (masonry) ── */
.gallery { columns: 3; column-gap: 18px; }
@media (max-width: 880px) { .gallery { columns: 2; } }
@media (max-width: 520px) { .gallery { columns: 1; } }
.gphoto { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-2); overflow: hidden; position: relative; box-shadow: var(--shadow-1); background: var(--parchment-3); border: 1px solid var(--line); }
.gphoto img { width: 100%; display: block; transition: transform 600ms var(--ease); }
.gphoto:hover img { transform: scale(1.04); }
.gphoto__cap { position: absolute; inset: auto 0 0 0; padding: 28px 16px 13px; font-family: var(--font-display); font-style: italic; font-size: 1.04rem; color: #fff; background: linear-gradient(180deg, transparent, rgba(28,34,40,0.82)); opacity: 0; transform: translateY(8px); transition: all var(--transition); }
.gphoto:hover .gphoto__cap { opacity: 1; transform: none; }
@media (hover: none) { .gphoto__cap { opacity: 1; transform: none; } }

/* ── testimonials (heraldic) ── */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr)); gap: 24px; }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 30px 30px 26px; box-shadow: var(--shadow-1); position: relative; }
.quote::before { content: '\201C'; position: absolute; top: 8px; left: 22px; font-family: var(--font-display); font-size: 4rem; color: var(--brass-soft); line-height: 1; }
.quote__text { font-family: var(--font-display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); margin: 18px 0 0; position: relative; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote__pip { width: 38px; height: 38px; border-radius: 50%; background: var(--brass-soft); color: var(--brass-deep); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.quote:nth-child(3n+2) .quote__pip { background: var(--verdigris-soft); color: var(--verdigris-ink); }
.quote:nth-child(3n+3) .quote__pip { background: var(--burgundy-soft); color: var(--burgundy); }
.quote__pip svg { width: 20px; height: 20px; }
.quote__name { font-family: var(--font-label); font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.quote__role { font-size: 0.82rem; color: var(--ink-3); }

/* ── makers (monograms) ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px,100%),1fr)); gap: 24px; }
.team-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 30px 26px; box-shadow: var(--shadow-1); text-align: center; }
.team-card__avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 2rem; }
.avatar--brass { background: var(--brass-soft); color: var(--brass-deep); }
.avatar--burgundy { background: var(--burgundy-soft); color: var(--burgundy); }
.avatar--verdigris { background: var(--verdigris-soft); color: var(--verdigris-ink); }
.team-card__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.team-card__role { font-family: var(--font-label); font-weight: 600; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy-ink); margin: 4px 0 12px; }
.team-card__bio { color: var(--ink-3); font-size: 0.94rem; margin: 0; }

/* ── page head ── */
.page-head { padding: clamp(40px,5vw,74px) 0 clamp(24px,3vw,36px); }
.page-head--alt { background: var(--parchment-2); }
.page-head__inner { max-width: 760px; }
.page-head__lede { font-size: 1.22rem; color: var(--ink-2); margin: 16px 0 0; }
.crumbs { font-family: var(--font-label); font-weight: 500; font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--ink-3); } .crumbs a:hover { color: var(--brass-ink); } .crumbs span { color: var(--ink); }

/* ── prose ── */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin-top: 1.5em; margin-bottom: 0.4em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose a { text-decoration: underline; text-decoration-color: rgba(184,137,59,0.5); text-underline-offset: 2px; }
.prose ul { list-style: none; padding-left: 0; margin: 0 0 1.1em; }
.prose ul > li { position: relative; padding-left: 1.6em; margin-bottom: 0.5em; }
.prose ul > li::before { content: ''; position: absolute; left: 2px; top: 0.55em; width: 9px; height: 9px; background: var(--brass); transform: rotate(45deg); }

/* ── FAQ ── */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 44px 24px 0; position: relative; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.faq__q::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.6rem; color: var(--brass-deep); transition: transform var(--transition); }
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 340ms var(--ease); }
.faq__a-inner { padding: 0 0 24px; color: var(--ink-2); }
.faq__a-inner p { margin: 0; }

/* ── forms ── */
.form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-3); padding: clamp(26px,4vw,44px); box-shadow: var(--shadow-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-label); font-weight: 600; font-size: 0.86rem; color: var(--ink); }
.field label .req { color: var(--burgundy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--parchment);
  border: 1px solid var(--line-2); border-radius: var(--radius-1); padding: 12px 14px; transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-soft); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--brass); outline-offset: 1px; }
.field__hint { font-size: 0.8rem; color: var(--ink-3); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.86rem; color: var(--ink-3); margin: 4px 0 0; }
.form-status { padding: 14px 18px; border-radius: var(--radius-1); font-weight: 600; margin-bottom: 18px; display: none; }
.form-status.is-show { display: block; }
.form-status--ok { background: var(--verdigris-soft); color: var(--verdigris-ink); border: 1px solid rgba(94,125,111,0.4); }
.form-status--err { background: var(--burgundy-soft); color: var(--burgundy-ink); border: 1px solid var(--burgundy); }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* contact cards */
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-2); padding: 24px; box-shadow: var(--shadow-1); }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.contact-card a { font-family: var(--font-label); font-weight: 600; }

/* ── CTA band ── */
.cta-band { background: var(--slate); color: #d8dee3; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 15px; background: var(--brass); -webkit-mask: var(--merlon); mask: var(--merlon); opacity: 0.85; }
.cta-band::after { content: ''; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(184,137,59,0.4), transparent 68%); top: -120px; right: -70px; filter: blur(18px); }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(50px,6vw,80px) 0 clamp(46px,6vw,72px); flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #abb7bf; margin: 0; max-width: 480px; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* panel */
.panel { background: var(--parchment-2); border: 1px solid var(--line-2); border-radius: var(--radius-3); padding: clamp(28px,4vw,48px); }
.panel--brass { background: var(--brass-faint); border-color: rgba(184,137,59,0.3); }

/* ── footer ── */
.site-footer { background: var(--card); border-top: 1px solid var(--line); padding-top: 56px; }
.site-footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__tag { color: var(--ink-3); margin-top: 12px; font-size: 0.94rem; max-width: 360px; }
.site-footer__contact { margin-top: 12px; font-family: var(--font-label); font-weight: 600; font-size: 0.95rem; }
.site-footer h3 { font-family: var(--font-label); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.link-list { list-style: none; padding: 0; margin: 0; }
.link-list li { padding: 5px 0; }
.link-list a { color: var(--ink-2); font-size: 0.95rem; }
.link-list a:hover { color: var(--brass-ink); }
.site-footer__base { border-top: 1px solid var(--line); padding: 22px 0; }
.site-footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--font-label); font-weight: 500; font-size: 0.84rem; color: var(--ink-3); }
.site-footer__base p { margin: 0; }
.site-footer__base p:last-child { font-style: italic; font-family: var(--font-display); font-size: 1.05rem; color: var(--brass-ink); }

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 42px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; }
}
