:root {
  --ink: #16283F;
  --ink-soft: #253C57;
  --slate: #55677A;
  --slate-light: #8A97A5;
  --parchment: #F5F3EF;
  --parchment-deep: #EDEAE2;
  --white: #FFFFFF;
  --brass: #9C8253;
  --brass-light: #C7AD79;
  --line: #DBD6CB;
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-soft: 0 12px 32px rgba(22, 40, 63, 0.08);
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--slate); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: inline-block;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ink);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 2px;
}

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

.main-nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--brass);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover { background: var(--ink-soft); }

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover { background: var(--ink); color: var(--white); }

/* Hero */
.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { margin-bottom: 0.4em; }

.hero-lede {
  font-size: 1.15rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-figure img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,40,63,0) 55%, rgba(22,40,63,0.35) 100%);
}

.stat-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

section { padding: 90px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--parchment-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--brass);
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.5em; }

.card p { margin-bottom: 0; font-size: 0.95rem; }

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.split.reverse .split-media { order: 2; }

.check-list { list-style: none; padding: 0; margin: 24px 0; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.check-list i { color: var(--brass); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

/* Process */
.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-item {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
  position: relative;
}

.process-item .step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

/* Quote / trust */
.quote-block {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 14px;
  line-height: 1.4;
}

.quote-block cite {
  font-style: normal;
  color: var(--brass-light);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* CTA */
.cta-band {
  background: var(--parchment-deep);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
}

.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p { max-width: 50ch; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--slate-light);
  padding: 72px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.footer-brand .brand-logo { background: var(--parchment); }

.footer-brand span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-col p, .footer-col a {
  color: var(--slate-light);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 12px;
}

.footer-col a:hover { color: var(--brass-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item i { color: var(--brass-light); margin-top: 3px; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.8rem; }

.disclaimer-strip {
  background: var(--parchment-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  font-size: 0.82rem;
  color: var(--slate);
  text-align: center;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero p { max-width: 60ch; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-info-card .footer-contact-item i { color: var(--brass); }
.contact-info-card .footer-contact-item { color: var(--ink-soft); }

.map-frame {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 220px;
}

.map-frame iframe { width: 100%; height: 100%; border: 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row { margin-bottom: 20px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--white);
}

.form-note {
  font-size: 0.78rem;
  color: var(--slate-light);
  margin-top: 16px;
}

.form-success {
  display: none;
  background: var(--parchment-deep);
  border: 1px solid var(--brass-light);
  padding: 16px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-success.visible { display: flex; gap: 10px; align-items: center; }

/* Legal pages */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2.2em;
  font-size: 1.4rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content ul { color: var(--slate); padding-left: 1.2em; }
.legal-content li { margin-bottom: 0.5em; }

.legal-updated {
  color: var(--slate-light);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.toc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  margin-bottom: 48px;
}

.toc h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-light);
  margin-bottom: 14px;
}

.toc ol { margin: 0; padding-left: 1.1em; color: var(--ink-soft); }
.toc a { color: var(--ink-soft); }
.toc a:hover { color: var(--brass); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card { text-align: left; }

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  filter: grayscale(18%);
}

.team-card h3 { margin-bottom: 0.15em; font-size: 1.1rem; }
.team-card .role {
  color: var(--brass);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--parchment);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  z-index: 1000;
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p { color: var(--slate-light); font-size: 0.86rem; margin-bottom: 18px; }
.cookie-banner h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; font-family: var(--font-display); }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-actions .btn-primary { background: var(--brass); }
.cookie-actions .btn-primary:hover { background: var(--brass-light); }
.cookie-actions .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--parchment); }
.cookie-actions .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--brass); transition: transform 0.2s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; margin-bottom: 0; }

/* Utility */
.mt-0 { margin-top: 0; }
.center-text { text-align: center; }

@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .card-grid, .process-list, .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .quote-block { grid-template-columns: 1fr; padding: 40px; }
  .cta-band { padding: 40px; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--parchment); flex-direction: column; justify-content: flex-start; padding: 40px 32px; gap: 26px; transform: translateX(100%); transition: transform 0.3s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .card-grid, .process-list, .team-grid { grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: 1fr 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .quote-block blockquote { font-size: 1.2rem; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
