:root {
  --ink: #1f2233;
  --muted: #5a6379;
  --accent: #8d4b2b;
  --accent-soft: #f5e9e3;
  --bg: #f7f6f2;
  --panel: #ffffff;
  --border: #e1ded7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 10;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.menu-toggle {
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.menu-toggle-line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.primary-nav {
  display: none;
  width: 100%;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--muted);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-open .primary-nav {
  display: block;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #fff;
}

.highlight {
  background: var(--accent-soft);
}

.hero {
  background: #fff;
}

.small-hero {
  padding-bottom: 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content p {
  color: var(--muted);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-card.subtle {
  background: #f1f1ed;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
}

.button-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.section-head {
  margin-bottom: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column;
}

.stats-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
}

.feature-list,
.service-grid,
.testimonial-grid,
.values,
.insight-list,
.leadership,
.info-grid,
.comparison,
.process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature,
.service-card,
.testimonial,
.value-card,
.insight,
.leader-card,
.info-card,
.comparison-card,
.process-step {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 1rem;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.comparison-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(141, 75, 43, 0.15);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  background: #fff;
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
}

.quote-panel {
  background: var(--panel);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-panel span {
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-year {
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
}

.bullet-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.cta {
  background: var(--ink);
  color: #fff;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta .button {
  background: #fff;
  color: var(--ink);
}

.site-footer {
  background: #14161f;
  color: #d8dbe6;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-title {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #c6c9d8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #aeb3c6;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  display: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  z-index: 40;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 30, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 560px;
  width: 100%;
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
}

.toggle {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f3f4f6;
  padding: 0.3rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-checked="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.legal h2 {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: block;
    width: auto;
  }

  .nav-links {
    flex-direction: row;
    margin: 0;
    gap: 1.5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content,
  .hero-panel {
    flex: 1;
  }

  .hero-panel {
    align-items: flex-end;
  }

  .split,
  .cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats-block,
  .feature-list,
  .service-grid,
  .testimonial-grid,
  .values,
  .insight-list,
  .leadership,
  .info-grid,
  .comparison,
  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .service-card,
  .testimonial,
  .value-card,
  .insight,
  .leader-card,
  .info-card,
  .comparison-card,
  .process-step {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stats-block .stat {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-banner {
    max-width: 900px;
    margin: 0 auto;
  }

  .cookie-option {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
