*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1a17;
  --muted: #5c5a55;
  --accent: #3d7a5c;
  --accent-dark: #2c5f45;
  --sand: #f6f0e6;
  --cream: #fffaf3;
  --terracotta: #c56b4a;
  --pebble: #ece4d8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 20px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 36px 0;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--pebble);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid #e6dfd2;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  background: none;
  border: 1px solid #cfc6b8;
  border-radius: 22px;
  padding: 8px 14px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: absolute;
  right: 5vw;
  top: 72px;
  min-width: 200px;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-size: 0.98rem;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.hero {
  padding: 72px 0 36px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-panel {
  background: var(--white);
  padding: 26px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid transparent;
  font-weight: 600;
  gap: 8px;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.feature-list,
.card-list,
.stats,
.team-grid,
.testimonial-grid,
.service-grid,
.insight-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card,
.feature,
.stat,
.testimonial,
.service-card,
.insight,
.info-panel {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

.stat {
  background: var(--accent);
  color: var(--white);
}

.stat p {
  color: rgba(255, 255, 255, 0.8);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight {
  background: var(--terracotta);
  color: var(--white);
  border-radius: 18px;
  padding: 24px;
}

.highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step span {
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e7ddcf;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid #e2d7c8;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--accent);
  color: var(--white);
  padding: 28px;
  border-radius: 22px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer {
  background: #12110f;
  color: #e9e2d7;
  padding: 36px 0 18px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #e9e2d7;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 18px;
  width: min(560px, 92vw);
  display: none;
  z-index: 50;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.cookie-modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-panel {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(520px, 92vw);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #efe6da;
}

.toggle-row:last-child {
  border-bottom: none;
}

.toggle-button {
  border: 1px solid #d9cfc1;
  background: var(--sand);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.toggle-button.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.notice {
  background: var(--pebble);
  padding: 16px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: none;
    padding: 0;
    box-shadow: none;
    min-width: auto;
  }

  .hero-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .feature-list,
  .card-list,
  .stats,
  .team-grid,
  .testimonial-grid,
  .service-grid,
  .insight-list,
  .contact-grid,
  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature,
  .card,
  .stat,
  .testimonial,
  .service-card,
  .insight,
  .info-panel {
    flex: 1 1 240px;
  }

  .hero-panel {
    flex: 1 1 45%;
  }

  .cta-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
