@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #0c0f12;
  --bg-soft: #141a20;
  --bg-light: #f4f2ef;
  --accent: #f05a3c;
  --accent-soft: #ffb39b;
  --text: #101418;
  --muted: #66707a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 8vw 16px;
  position: relative;
  z-index: 2;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
  color: var(--text);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 8vw 40px;
  position: relative;
}

.hero .hero-frame {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}

.hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--text);
}

.btn.ghost {
  background: var(--white);
  border: 1px dashed var(--accent);
  color: var(--text);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 3;
}

.sticky-cta a {
  background: var(--bg);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.section {
  padding: 48px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section.dark {
  background: var(--bg);
  color: var(--white);
}

.section.soft {
  background: var(--bg-soft);
  color: var(--white);
}

.section.accent {
  background: var(--accent-soft);
}

.section .kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.section.dark .kicker,
.section.soft .kicker {
  color: var(--accent-soft);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offset-card {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  margin-left: auto;
  width: min(520px, 100%);
}

.offset-card.dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-item {
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-item strong {
  font-size: 1.1rem;
}

.quote-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  font-style: italic;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
}

.service-action {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}

.form-shell {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-shell label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6dbe0;
  font-family: inherit;
}

.form-shell textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg);
  color: var(--white);
  padding: 24px;
  border-radius: 18px;
}

.cta-strip a {
  color: var(--accent-soft);
  font-weight: 600;
}

.footer {
  margin-top: auto;
  background: var(--bg);
  color: var(--white);
  padding: 32px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--accent-soft);
}

.legal {
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
}

.two-up {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.note {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 18px;
}

@media (min-width: 820px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-item {
    flex: 1;
  }

  .two-up {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .hero {
    padding-bottom: 72px;
  }
}
