/* ==========================================================================
   Reader & Moon — readerandmoon.com
   Brand stylesheet
   ========================================================================== */

/* --------------------------------------------------------------- Tokens */
:root {
  --navy:        #192e46;
  --navy-deep:   #11202f;
  --navy-soft:   #2c4762;
  --sage:        #6c7e66;
  --sage-dark:   #566450;
  --sage-light:  #9aab8f;
  --sage-mid:    #768b67;   /* AA-safe on light backgrounds at large sizes */
  --sage-wash:   #eef1ea;
  --cream:       #faf9f5;
  --paper:       #ffffff;
  --ink:         #1c2833;
  --body:        #4a5763;
  --muted:       #646e79;
  --line:        #e3e4dd;
  --line-soft:   #eeefe9;

  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --wrap-narrow: 800px;
  --header-h: 84px;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(25,46,70,.06), 0 4px 14px rgba(25,46,70,.05);
  --shadow-md: 0 2px 6px rgba(25,46,70,.07), 0 18px 44px rgba(25,46,70,.09);
  --shadow-lg: 0 4px 10px rgba(25,46,70,.08), 0 30px 70px rgba(25,46,70,.13);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------- Reset */
*, *::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;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
svg { max-width: 100%; }
a { color: var(--navy); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--sage-dark); }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.15em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: .005em;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.1rem); letter-spacing: -.008em; }
h2 { font-size: clamp(2.05rem, 3.7vw, 2.95rem); }
h3 { font-size: clamp(1.4rem, 2.1vw, 1.7rem); line-height: 1.28; }
h4 { font-size: 1.18rem; line-height: 1.35; font-weight: 600; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--sage-light); color: var(--navy-deep); }

/* --------------------------------------------------------------- Utility */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(68px, 9vw, 118px) 0; }
.section--tight { padding: clamp(52px, 6vw, 84px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--wash  { background: var(--sage-wash); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,.82); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.center { text-align: center; }
.lede {
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.68;
  color: var(--body);
}
.section--navy .lede { color: rgba(255,255,255,.8); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: ""; width: 30px; height: 1px; background: var(--sage-light); flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 30px; height: 1px; background: var(--sage-light); flex: none;
}
.section--navy .eyebrow { color: var(--sage-light); }
.section--navy .eyebrow::before, .section--navy .eyebrow::after { background: rgba(154,171,143,.5); }

.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background-color .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease),
              box-shadow .28s var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
.btn .arw { transition: transform .3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(25,46,70,.28); }
.btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: var(--sage-wash); border-color: var(--sage-wash); color: var(--navy); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; transform: translateY(-2px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .82rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--sage-dark);
}
.textlink .arw { transition: transform .3s var(--ease); }
.textlink:hover { color: var(--navy); }
.textlink:hover .arw { transform: translateX(4px); }

/* --------------------------------------------------------------- Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(250,249,245,0);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              height .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-solid,
.site-header.is-open {
  background: rgba(250,249,245,.94);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(25,46,70,.05);
}
.site-header.is-solid { height: 70px; }

.header-inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img {
  height: 52px; width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-solid .brand img { height: 43px; }

/* --------------------------------------------------------------- Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 10px 15px;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
}
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px;
  height: 1.5px; background: var(--sage);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--sage-dark); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { margin-left: 12px; padding: 12px 22px; }
.nav .btn::after { display: none; }
.nav .btn--primary { color: #fff; }
.nav .btn--primary:hover { color: #fff; }
.nav .btn--ghost { color: var(--navy); }
.nav .btn--ghost:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: transparent; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; position: relative;
  width: 19px; height: 1.6px; background: var(--navy);
  transition: background-color .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.6px; background: var(--navy);
  transition: transform .32s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 24px 26px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 15px 2px; border-bottom: 1px solid var(--line-soft); font-size: .86rem; }
  .nav a::after { display: none; }
  .nav .btn { margin: 20px 0 0; width: 100%; padding: 16px; }
  .site-header.is-solid { height: var(--header-h); }
  .site-header.is-solid .brand img { height: 42px; }
  .brand img { height: 42px; }
}

/* --------------------------------------------------------------- Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(56px, 8vw, 104px)) 0 clamp(64px, 8vw, 110px);
  background: linear-gradient(168deg, #ffffff 0%, var(--cream) 46%, var(--sage-wash) 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: linear-gradient(to bottom, rgba(250,249,245,0), var(--cream));
  pointer-events: none;
}
.hero-mark {
  position: absolute; top: 50%; right: -6%;
  width: min(560px, 52vw); transform: translateY(-50%);
  opacity: .085; pointer-events: none; user-select: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { margin-bottom: .38em; }
.hero h1 em {
  font-style: italic; color: var(--sage-dark);
}
.hero .lede { max-width: 620px; margin-bottom: 2.1rem; }
.hero .btn-row { margin-bottom: 2.6rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px 34px;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .82rem; letter-spacing: .05em; color: var(--muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: .55em; }
.hero-meta svg { flex: none; width: 17px; height: 17px; color: var(--sage); }

@media (max-width: 800px) { .hero-mark { display: none; } }

/* Interior page hero */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(48px, 6vw, 78px)) 0 clamp(46px, 6vw, 74px);
  background: var(--navy);
  color: rgba(255,255,255,.8);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 130% at 88% 8%, rgba(108,126,102,.34) 0%, rgba(25,46,70,0) 58%);
}
.page-hero-mark {
  position: absolute; top: 50%; right: -4%; width: min(400px, 42vw);
  transform: translateY(-50%); opacity: .11; pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 15ch; }
.page-hero .lede { color: rgba(255,255,255,.78); max-width: 620px; margin-top: 1rem; }
.page-hero .eyebrow { color: var(--sage-light); }
.page-hero .eyebrow::before { background: rgba(154,171,143,.55); }
@media (max-width: 800px) { .page-hero-mark { display: none; } }

.breadcrumb {
  font-size: .78rem; letter-spacing: .08em; color: rgba(255,255,255,.5);
  margin-bottom: 1.4rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 .5em; }

/* --------------------------------------------------------------- Grid + cards */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 30px 32px;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-light); }
.card h3 { font-size: 1.42rem; margin-bottom: .45em; }
.card p { font-size: .97rem; line-height: 1.72; margin-bottom: 0; color: var(--body); }
.card .textlink { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }

.card-icon {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-wash); color: var(--sage-dark);
  margin-bottom: 22px;
  transition: background-color .38s var(--ease), color .38s var(--ease);
}
.card:hover .card-icon { background: var(--navy); color: #fff; }
.card-icon svg { width: 25px; height: 25px; flex: none; }

.card--num { padding-top: 30px; }
.card-num {
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--sage-mid); margin-bottom: .3em; display: block;
}

/* --------------------------------------------------------------- Split rows */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 6vw, 82px); align-items: center;
}
.split--text-first > *:first-child { order: 0; }
@media (min-width: 901px) {
  .split--aside { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.figure-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(38px, 5vw, 62px);
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
.figure-frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(110% 120% at 80% 12%, rgba(108,126,102,.4) 0%, rgba(25,46,70,0) 62%);
}
.figure-frame img { position: relative; z-index: 1; width: min(320px, 76%); }

/* --------------------------------------------------------------- Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
}
.stat { background: var(--paper); padding: 34px 24px; text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.3rem, 3.6vw, 3rem); line-height: 1; color: var(--navy); margin-bottom: .25em;
}
.stat span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.section--navy .stats { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.16); }
.section--navy .stat { background: var(--navy); }
.section--navy .stat b { color: #fff; }
.section--navy .stat span { color: var(--sage-light); }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .stats { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Timeline */
.timeline { position: relative; margin-top: 10px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px;
  width: 1px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 46px 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--sage);
}
.tl-item.is-current::before { background: var(--sage); box-shadow: 0 0 0 5px rgba(108,126,102,.16); }
.tl-date {
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage-dark); display: block; margin-bottom: .5rem;
}
.tl-item h3 { font-size: 1.42rem; margin-bottom: .12em; }
.tl-role {
  font-size: .92rem; font-style: italic; color: var(--muted);
  font-family: var(--font-display); font-size: 1.12rem; display: block; margin-bottom: .9rem;
}
.tl-item p { font-size: .99rem; }

/* --------------------------------------------------------------- Service detail */
.svc { padding: clamp(52px, 6.5vw, 88px) 0; border-top: 1px solid var(--line); }
.svc:first-of-type { border-top: 0; }
.svc-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(32px, 5vw, 70px); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; gap: 26px; } }
.svc-index {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .2em;
  color: var(--sage-dark); display: block; margin-bottom: 1rem;
}
.svc h2 { font-size: clamp(1.75rem, 2.8vw, 2.35rem); }

.ticks { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 32px; font-size: .99rem; line-height: 1.62; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 15px; height: 9px; border-left: 1.8px solid var(--sage); border-bottom: 1.8px solid var(--sage);
  transform: rotate(-45deg);
}
.section--navy .ticks li::before { border-color: var(--sage-light); }

/* --------------------------------------------------------------- Quote / spotlight */
.spotlight {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 58px);
  box-shadow: var(--shadow-sm);
}
.spotlight .tag {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: var(--sage-wash); color: var(--sage-dark);
  font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
blockquote {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem); line-height: 1.42; color: var(--navy);
  font-style: italic;
}
blockquote + .attrib { margin-top: 1.3rem; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* --------------------------------------------------------------- Values */
.value-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.value-item {
  display: grid; grid-template-columns: 0.7fr 2fr; gap: clamp(20px, 4vw, 56px);
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.value-item h3 { margin: 0; font-size: 1.5rem; }
.value-item p { margin: 0; }
@media (max-width: 760px) { .value-item { grid-template-columns: 1fr; gap: 10px; } }

/* --------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--navy); }
.cta-band .btn-row { flex: none; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 140% at 15% 100%, rgba(108,126,102,.4) 0%, rgba(25,46,70,0) 60%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner > div { max-width: 620px; }
.cta-inner h2 { margin-bottom: .35em; }

/* --------------------------------------------------------------- Contact */
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(36px, 5vw, 68px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy);
  margin-bottom: .55rem;
}
.field label .req { color: var(--sage-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236c7e66' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--paper);
  border-color: var(--sage); box-shadow: 0 0 0 3px rgba(108,126,102,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1.1rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-msg { padding: 15px 18px; border-radius: var(--r-sm); font-size: .95rem; margin-bottom: 22px; }
.form-msg--ok  { background: var(--sage-wash); border: 1px solid var(--sage-light); color: var(--sage-dark); }
.form-msg--err { background: #fdf1ee; border: 1px solid #e8bfb3; color: #9a442c; }

.info-block { border-top: 1px solid var(--line); padding: 24px 0; }
.info-block:first-of-type { border-top: 0; padding-top: 0; }
.info-block h3 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  line-height: 1.4; letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage-dark); margin: 0 0 .6rem;
}
.info-block p, .info-block a { font-size: 1.02rem; color: var(--ink); margin: 0; }
.info-block a:hover { color: var(--sage-dark); }
.info-block .small { font-size: .9rem; color: var(--muted); }

/* Company-details grid: even spacing, no ragged first-row rules */
.info-grid { gap: 22px 40px; }
.info-grid .info-block { border-top: 0; padding: 0; }
.info-block--wide { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }

/* --------------------------------------------------------------- FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px;
  border-right: 1.6px solid var(--sage); border-bottom: 1.6px solid var(--sage);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq .faq-body { padding: 0 0 24px; font-size: 1rem; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.62); padding: clamp(56px, 7vw, 82px) 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand img { height: 148px; width: auto; margin: 0 0 24px -6px; }
.footer-brand p { font-size: .96rem; max-width: 380px; color: rgba(255,255,255,.62); }
.footer-col h3 {
  font-family: var(--font-body); color: #fff; font-size: .74rem; font-weight: 700;
  line-height: 1.4; letter-spacing: .16em; text-transform: uppercase; margin: 0 0 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.62); font-size: .96rem; }
.footer-col a:hover { color: var(--sage-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13);
  padding: 26px 0 34px;
  display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between;
  font-size: .84rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--sage-light); }

/* --------------------------------------------------------------- Reveal */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.d1.is-in { transition-delay: .08s; }
.reveal.d2.is-in { transition-delay: .16s; }
.reveal.d3.is-in { transition-delay: .24s; }
.reveal.d4.is-in { transition-delay: .32s; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; border: 0;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .3s var(--ease);
}
.to-top.is-vis { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--sage-dark); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r-sm) 0;
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* Print */
@media print {
  .site-header, .to-top, .cta-band, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
