* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --ink: #151515;
  --muted: #5a5a5a;
  --accent: #ea4b31;
  --soft: #f7f2ec;
  --line: #e6ded6;
  --dark: #111111;
  --paper: #ffffff;
}

body {
  font-family: "Sora", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 10px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(247, 242, 236, 0.9)),
    url("https://images.unsplash.com/photo-1462331940025-496dfbfc7564?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  background: #d53a22;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: var(--soft);
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.story-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

.story-card h3 {
  margin-bottom: 12px;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
  color: var(--muted);
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mag-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mag-panel img {
  border-radius: 16px;
}

.numbers {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.number-box {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 12px;
  background: #fff;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrap label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  width: 100%;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 14px;
  max-width: 340px;
  z-index: 12;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.14);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-aside {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .split .wide {
    flex: 1.4;
  }

  .split .narrow {
    flex: 0.6;
  }

  .mag-grid {
    flex-direction: row;
  }

  .mag-grid .mag-panel {
    flex: 1;
  }

  .numbers {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .form-row {
    flex-direction: row;
  }
}
[hidden] {
  display: none !important;
}