* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1f1a17;
  --muted: #4f4540;
  --accent: #b86a3c;
  --accent-dark: #8f4c28;
  --surface: #f7f1eb;
  --surface-alt: #efe4d9;
  --line: #e1d3c5;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
}

.nav-menu {
  position: absolute;
  top: 72px;
  right: 5%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  font-weight: 500;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  background: var(--surface);
  padding: 3.5rem 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.simple-hero .hero-inner {
  gap: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

.hero-card,
.feature-panel,
.quote-card,
.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(184, 106, 60, 0.3);
}

.button.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.button.text {
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 0.75rem;
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--surface);
}

.section.highlight {
  background: var(--surface-alt);
}

.section-heading {
  margin-bottom: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.card-grid,
.case-grid,
.team-grid,
.info-grid,
.insight-grid,
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card,
.case-card,
.team-card,
.info-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--white);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.check-list,
.value-list,
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.2rem;
}

.check-list li::marker,
.value-list li::marker,
.hours-list li::marker {
  color: var(--accent);
}

.trust-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 0;
}

.trust-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trust-metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.metric-label {
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.step-number {
  font-weight: 700;
  color: var(--accent-dark);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.quote-card span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.cta {
  background: var(--text);
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.cta .button.primary {
  background: var(--white);
  color: var(--text);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-item {
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid var(--line);
}

.timeline-year {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label {
  font-weight: 600;
}

.comparison-item {
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: var(--white);
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1rem 1rem;
  display: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question {
  color: var(--accent-dark);
}

.site-footer {
  background: #15110f;
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 30;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.icon-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  align-items: center;
}

.cookie-status {
  font-weight: 600;
  color: var(--accent-dark);
}

.toggle-button {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 600;
}

.toggle-button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--white);
}

.cookie-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    border: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    padding: 0;
    gap: 1.5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid,
  .case-grid,
  .team-grid,
  .info-grid,
  .insight-grid,
  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .case-card,
  .team-card,
  .info-card,
  .service-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .trust-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .trust-metrics {
    flex-direction: row;
    gap: 2rem;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .stats {
    flex-direction: row;
    justify-content: space-between;
  }

  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .comparison-item {
    flex: 1;
  }

  .comparison-label {
    flex: 1.2;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .cookie-modal-footer {
    flex-direction: row;
    justify-content: flex-end;
  }
}
