/* ==========================================================================
   Walton Rose — site stylesheet

   Palette sampled from the logo: ink #000000, rose #A10000, leaf #008800.
   Those are softened slightly for screen use (pure black is harsh for body
   copy, and the raw red/green fail contrast at small sizes).

   The design leans editorial: serif display type echoing the logo's wordmark,
   warm parchment neutrals, thin rules, and burgundy used sparingly.
   ========================================================================== */

:root {
  --ink:         #16161C;
  --ink-deep:    #0C0C11;
  --ink-soft:    #3A3A45;
  --slate:       #55555F;
  --slate-light: #6C6C78;   /* 4.9:1 on white */

  --rose:        #A11621;
  --rose-dark:   #7C1019;   /* 7.4:1 on white — links and buttons */
  --rose-deep:   #5C0B12;
  --rose-wash:   #FAF0F0;

  --leaf:        #1F6B2B;
  --leaf-wash:   #EFF5EF;

  --cream:       #FBF8F4;
  --parchment:   #F4EFE7;
  --line:        #E5DDD1;
  --line-soft:   #EFE9E0;
  --white:       #FFFFFF;

  --wrap: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(22, 22, 28, .05), 0 2px 10px rgba(22, 22, 28, .04);
  --shadow-md: 0 4px 12px rgba(22, 22, 28, .07), 0 16px 40px rgba(22, 22, 28, .08);
  --shadow-lg: 0 12px 24px rgba(22, 22, 28, .09), 0 36px 70px rgba(22, 22, 28, .12);

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

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 100px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

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

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

a { color: var(--rose-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); line-height: 1.08; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.42rem); }
h4 { font-size: 1.05rem; }

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

::selection { background: var(--rose); color: #fff; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 14px; top: 14px; }

/* --------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 28px;
}
@media (max-width: 560px) { .wrap { padding-inline: 20px; } }

.section { padding: clamp(60px, 8.5vw, 116px) 0; }
.section--cream { background: var(--cream); }
.section--parchment { background: var(--parchment); }
.section--tight { padding: clamp(44px, 5vw, 68px) 0; }

/* ------------------------------------------------------------- eyebrow -- */

.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.eyebrow--light { color: #C9A9AC; }
.eyebrow--muted { color: var(--slate-light); }

/* A hairline flourish used to open major sections. */
.rule {
  width: 46px;
  height: 2px;
  margin-bottom: 26px;
  background: var(--rose);
  border: 0;
}
.rule--light { background: #B98A8F; }
.rule--center { margin-inline: auto; }
/* Used on a minority of sections so green reads as a deliberate second voice
   rather than a random accent. */
.rule--leaf { background: var(--leaf); }
.eyebrow--leaf { color: var(--leaf); }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--slate); }

.lead {
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
  line-height: 1.62;
  color: var(--slate);
}

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

.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn:active { transform: translateY(0); }

.btn--rose  { --btn-bg: var(--rose-dark); --btn-bd: var(--rose-dark); }
.btn--rose:hover { --btn-bg: var(--rose-deep); --btn-bd: var(--rose-deep); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: #CFC5B6; }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff; }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, .38);
}
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: #fff; }

.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: .02em;
  color: var(--rose-dark);
}
.arrow-link svg { transition: transform .2s var(--ease); }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover svg { transform: translateX(5px); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(22, 22, 28, .07); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 15px; flex-shrink: 0; }
.brand:hover { text-decoration: none; }

/*
 * The supplied logo is a stacked lockup in which "WALTON ROSE" occupies only
 * 15px of a 235px-tall image — 6.4%. At any sane header height that renders
 * around 4-6px and is unreadable, and enlarging it upscales a 15px text band
 * into mush. So the image is cropped to the W-and-rose mark only (source rows
 * 15-185, columns 12-246) and the name is set as live text beside it, which
 * stays sharp at any size and is selectable and indexable.
 *
 * Percentages are derived from the source geometry, so this survives the logo
 * being replaced with a higher-resolution export of the same artwork.
 */
.brand-mark {
  position: relative;
  height: 68px;
  aspect-ratio: 235 / 171;   /* the mark's own proportions */
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  position: absolute;
  height: 137.43%;           /* 235 / 171 */
  width: auto;
  max-width: none;
  top: -8.77%;               /* -15 / 171 */
  left: -5.11%;              /* -12 / 235 */
}

/* Text lockup used where the logo image cannot go (dark backgrounds). */
.wordmark {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.wordmark em { font-style: normal; color: var(--rose); }
.wordmark--light { color: #fff; }
.wordmark--light em { color: #C88E93; }
.wordmark--lg { font-size: 1.6rem; }

.nav { display: flex; align-items: center; gap: 2px; }

.nav a {
  position: relative;
  padding: 11px 15px;
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--ink);
  white-space: nowrap;
  border-radius: var(--radius);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav a:hover { color: var(--rose-dark); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--rose-dark); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1.5px;
  background: var(--rose);
}

/* `.nav a` outranks `.btn` on specificity, so restate the button colours. */
.nav a.btn { color: var(--btn-fg); }
.nav a.btn:hover { background: var(--btn-bg); }
.nav .nav-cta { margin-left: 10px; }
.nav a.nav-cta:hover { --btn-bg: var(--rose-deep); --btn-bd: var(--rose-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 42px;
  padding: 0;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1.8px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

@media (max-width: 1000px) {
  :root { --header-h: 80px; }
  .brand img { height: 52px; }
  .wordmark { font-size: 1.12rem; }
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px 28px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 15px 12px; font-size: 1.04rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--rose-wash); }
  .nav .nav-cta { margin: 12px 0 0; justify-content: center; }
}
@media (max-width: 420px) {
  .brand img { height: 44px; }
  .wordmark { font-size: 1rem; letter-spacing: .1em; }
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 520px at 88% 6%, rgba(161, 22, 33, .07), transparent 62%),
    radial-gradient(620px 460px at 4% 96%, rgba(31, 107, 43, .05), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding: clamp(64px, 9vw, 124px) 0 clamp(60px, 8vw, 112px);
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--rose-dark); }
.hero p { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--slate); max-width: 620px; }

/* Sector list beside the hero headline. */
.hero-aside {
  padding: 30px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero-aside h2 {
  font-size: .76rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 20px;
}
.hero-aside ul { list-style: none; margin: 0; padding: 0; }
.hero-aside li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  font-family: var(--serif);
  font-size: 1.06rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.hero-aside li:last-child { border-bottom: 0; padding-bottom: 0; }
.hero-aside li::before {
  content: "";
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateY(-3px);
}

/* --------------------------------------------------------- credentials -- */

.creds {
  border-top: 1px solid var(--line);
  background: #fff;
}
.creds dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding-block: 34px;
}
.creds > .wrap > dl > div { padding-inline: 30px; }
.creds > .wrap > dl > div:first-child { padding-left: 0; }
.creds > .wrap > dl > div + div { border-left: 1px solid var(--line-soft); }
.creds dt {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.creds dd {
  margin: 7px 0 0;
  font-size: .81rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--slate-light);
}
@media (max-width: 860px) {
  .creds dl { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .creds > .wrap > dl > div:nth-child(odd) { padding-left: 0; border-left: 0; }
}
@media (max-width: 460px) {
  .creds dl { grid-template-columns: 1fr; }
  .creds > .wrap > dl > div { padding-inline: 0; border-left: 0 !important; }
}

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

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0 clamp(50px, 6.5vw, 84px);
  background: var(--cream);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(680px 420px at 92% 0%, rgba(161, 22, 33, .06), transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { margin-bottom: 18px; max-width: 20ch; }
.page-hero p { font-size: clamp(1.06rem, 1.5vw, 1.2rem); color: var(--slate); max-width: 660px; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: .84rem;
  color: var(--slate-light);
}
.crumbs a { color: var(--slate); }
.crumbs span[aria-hidden] { opacity: .45; }

/* ---------------------------------------------------------------- grids -- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 660px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

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

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}
.svc__num {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--slate); font-size: .99rem; margin: 0; }
.svc .arrow-link { margin-top: auto; padding-top: 20px; }
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #D8CCBD;
}

/* Icon variant for supporting cards. */
.card {
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.card h3 { margin-bottom: 11px; }
.card p { color: var(--slate); font-size: .98rem; }

.icon-badge {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--rose-wash);
  color: var(--rose-dark);
  flex-shrink: 0;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge--leaf { background: var(--leaf-wash); color: var(--leaf); }
.icon-badge--ink  { background: var(--ink); color: #fff; }

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split--reverse .split-media { order: -1; }
@media (max-width: 940px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}

.panel {
  padding: clamp(28px, 3.6vw, 44px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.panel--ink {
  background: var(--ink);
  border-color: transparent;
  color: #C7C7D0;
}
.panel--ink h2, .panel--ink h3, .panel--ink h4 { color: #fff; }
.panel--rose { background: var(--rose-wash); border-color: #EBD5D7; }

/* ------------------------------------------------------------ tick list -- */

.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--slate);
  font-size: .99rem;
}
/* Green, from the logo's stem, carries affirmative meaning — checks and
   success. Burgundy stays with identity and action (CTAs, links, numbers), so
   the two never compete for the same job. Note that red/green is the hardest
   pair for the commonest colour-vision deficiency, so neither colour is ever
   the only thing distinguishing meaning here: shape, icon and wording differ
   too. */
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .45em;
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F6B2B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ticks--light li { color: #BFBFC9; }
.ticks--light li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238FC49B' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.ticks--2col { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px 30px; }
@media (max-width: 640px) { .ticks--2col { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------- sector tags -- */

.tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.tags li {
  padding: 9px 17px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.tags--onwhite li { background: var(--cream); }

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

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--slate); margin: 0; }
@media (max-width: 620px) {
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step__num { font-size: 1.6rem; }
}

/* ------------------------------------------------------------- profiles -- */

.profile {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.profile:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) {
  .profile { grid-template-columns: 1fr; gap: 20px; }
}

/* Monogram stands in for a photograph. */
.monogram {
  display: grid;
  place-items: center;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.monogram--rose { background: var(--rose-dark); }
.monogram--leaf { background: var(--leaf); }

.profile__role {
  display: block;
  margin: -2px 0 16px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--rose-dark);
}
.profile h3 { margin-bottom: 4px; }

.facts { margin: 22px 0 0; display: grid; gap: 14px; }
.facts > div {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: .94rem;
}
.facts dt {
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding-top: 2px;
}
.facts dd { margin: 0; color: var(--slate); }
@media (max-width: 560px) {
  .facts > div { grid-template-columns: 1fr; gap: 4px; }
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #B9B9C4;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 85% 110%, rgba(161, 22, 33, .3), transparent 62%);
  pointer-events: none;
}
.cta-band .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-block: clamp(50px, 6.5vw, 82px);
}
.cta-band h2 { color: #fff; margin-bottom: 12px; max-width: 22ch; }
.cta-band p { margin: 0; max-width: 480px; }
.cta-band .btn-row { margin-top: 0; }

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

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 4px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A11621' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 4px 26px; margin: 0; color: var(--slate); max-width: 800px; }

/* ---------------------------------------------------------------- forms -- */

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr);
  gap: clamp(30px, 4.5vw, 60px);
  align-items: start;
}
@media (max-width: 960px) { .form-layout { grid-template-columns: 1fr; } }

.form-card {
  padding: clamp(26px, 3.4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
@media (max-width: 700px) { .field-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .87rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .01em;
}
.field label .req { color: var(--rose); margin-left: 2px; }
.field .hint { font-size: .8rem; color: var(--slate-light); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  font: inherit;
  font-size: .97rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #D8CFC1;
  border-radius: var(--radius);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }

.field select {
  appearance: none;
  padding-right: 42px;
  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='%2355555F' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.field input:hover, .field select:hover, .field textarea:hover { border-color: #C4B9A8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(161, 22, 33, .12);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--rose); background: #FDF6F6; }

.field .error { font-size: .82rem; font-weight: 650; color: var(--rose-dark); }

.check { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--slate); cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--rose-dark); flex-shrink: 0; }

.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.form-foot .note { font-size: .85rem; color: var(--slate-light); margin: 0; }

.form-status {
  display: none;
  gap: 13px;
  padding: 17px 19px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  font-size: .94rem;
  line-height: 1.6;
}
.form-status.is-visible { display: flex; }
.form-status svg { flex-shrink: 0; margin-top: 3px; }
.form-status strong { display: block; margin-bottom: 3px; }
.form-status--ok   { background: var(--leaf-wash); border: 1px solid #C6DCC6; color: #17542A; }
.form-status--err  { background: #FDF1F1; border: 1px solid #EFCFD1; color: #7C1019; }
.form-status--info { background: var(--cream);    border: 1px solid var(--line); color: #52443A; }

.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.spinner {
  width: 16px; height: 16px;
  border: 2.2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------- aside -- */

.aside-card {
  padding: 30px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.aside-card + .aside-card { margin-top: 22px; }
.aside-card h3 { font-size: 1.14rem; margin-bottom: 14px; }
.aside-card p { font-size: .95rem; color: var(--slate); }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li { display: flex; gap: 15px; align-items: flex-start; }
.contact-list .icon-badge { width: 42px; height: 42px; margin: 0; }
.contact-list .icon-badge svg { width: 19px; height: 19px; }
.contact-list .c-label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 3px;
}
.contact-list .c-value { font-weight: 650; color: var(--ink); font-size: 1rem; }
.contact-list .c-value a { color: var(--ink); }
.contact-list .c-value span {
  display: block;
  font-weight: 400;
  color: var(--slate);
  font-size: .92rem;
}

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

.site-footer { background: var(--ink-deep); color: #91919E; font-size: .95rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 44px;
  padding: clamp(50px, 6.5vw, 78px) 0 46px;
}
@media (max-width: 940px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand .wordmark { margin-bottom: 20px; }
.footer-brand p { max-width: 330px; font-size: .94rem; }

.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { color: #91919E; }
.footer-links a:hover { color: #fff; text-decoration: none; }

.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer-contact a { color: #D5D5DE; font-weight: 650; }
.footer-contact span { display: block; color: #7C7C89; font-size: .88rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .86rem;
  color: #74747F;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a { color: #74747F; }
.footer-bottom a:hover { color: #fff; text-decoration: none; }

/* -------------------------------------------------------------- reveal -- */

html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }

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

/* ---------------------------------------------------------------- misc -- */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.measure { max-width: 68ch; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}
