* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #121417;
  --muted: #4b5563;
  --accent: #ff6b35;
  --accent-dark: #e85b29;
  --surface: #f6f4ef;
  --surface-strong: #ffffff;
  --shadow: rgba(18, 20, 23, 0.12);
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  gap: 20px;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 28px 40px;
}

.hero-copy h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.asymm-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 28px;
}

.asymm-section.light {
  background: var(--surface);
}

.asymm-section.dark {
  background: #1c1f26;
  color: #f9fafb;
}

.offset-card {
  background: var(--surface-strong);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 16px 40px var(--shadow);
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.quote-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff6f0;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #ffd6c7;
}

.quote-strip span {
  font-style: italic;
  color: #6b4b3e;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 14px 30px var(--shadow);
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d5d5d5;
  font-size: 1rem;
}

.form-shell button {
  border: none;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1d1f27;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin-top: auto;
  padding: 28px;
  background: #111318;
  color: #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.content-narrow {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.split-pair {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-panel {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 18px 32px var(--shadow);
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f1f1;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .hero-split {
    flex-direction: row;
    align-items: center;
  }

  .hero-copy,
  .hero-visual {
    flex: 1;
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .offset-row {
    flex-direction: row;
    align-items: center;
  }

  .split-pair {
    flex-direction: row;
    align-items: stretch;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .story-grid {
    flex-direction: row;
  }
}
