:root {
  --bg: #fff8f0;
  --bg-soft: #fff1e0;
  --surface: #ffffff;
  --ink: #1c2a32;
  --ink-soft: #4a5b66;
  --accent: #ff6b6b;
  --accent-deep: #e84c4c;
  --mint: #1f8a70;
  --mint-soft: #d8f3ea;
  --sun: #ffe66d;
  --sun-deep: #f4d03f;
  --line: rgba(28, 42, 50, 0.12);
  --shadow: 0 12px 32px rgba(28, 42, 50, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.85rem;
  --radius-pill: 999px;
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shell: min(1120px, calc(100% - 2rem));
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 230, 109, 0.35), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(31, 138, 112, 0.18), transparent 32%),
    radial-gradient(circle at 70% 40%, rgba(255, 107, 107, 0.12), transparent 35%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: var(--mint);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 240, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 30% 35%, var(--sun) 0 38%, transparent 40%),
    radial-gradient(circle at 70% 65%, var(--accent) 0 42%, transparent 44%),
    var(--mint);
  box-shadow: 0 4px 0 rgba(28, 42, 50, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 0 rgba(232, 76, 76, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(232, 76, 76, 0.35);
  color: white !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.35rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 7px 0 rgba(232, 76, 76, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: white;
}

.btn-secondary {
  background: var(--mint);
  color: white;
  box-shadow: 0 7px 0 rgba(17, 110, 90, 0.35);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: white;
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--mint-soft);
  color: var(--ink);
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--mint);
  background: var(--mint-soft);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 42rem;
}

.hero {
  padding: 3.5rem 0 2rem;
}

.hero-spread {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--ink);
}

.hero-copy .lead {
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float-in 0.8s ease both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero-blob {
  position: absolute;
  inset: auto auto 1.25rem 1.25rem;
  background: rgba(255, 248, 240, 0.94);
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  max-width: 16rem;
  box-shadow: var(--shadow);
}

.hero-blob strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.hero-blob span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.panel-mint {
  background: linear-gradient(160deg, var(--mint-soft), #fff);
}

.panel-sun {
  background: linear-gradient(160deg, #fff6c8, #fff);
}

.offer-grid,
.card-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.offer-card,
.post-card,
.story-card,
.rate-block {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}

.offer-card:hover,
.post-card:hover {
  transform: translateY(-4px);
}

.offer-card img,
.post-card img,
.detail-hero img,
.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-body,
.post-body,
.story-body,
.rate-body {
  padding: 1.25rem 1.35rem 1.45rem;
}

.offer-body h3,
.post-body h3,
.story-body h3,
.rate-body h3 {
  font-size: 1.25rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  background: var(--bg-soft);
  color: var(--ink-soft);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.75rem;
  font-size: 0.85rem;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

.page-hero-media {
  margin-top: 1.5rem;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 360px;
}

.page-hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.prose {
  max-width: 46rem;
}

.prose h2 {
  margin-top: 2rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--mint-soft);
  color: var(--ink);
}

.quote {
  background: var(--surface);
  border-left: 6px solid var(--sun);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.4rem;
  margin: 0 0 1.25rem;
  box-shadow: var(--shadow);
}

.quote p {
  color: var(--ink);
  font-size: 1.05rem;
}

.quote footer {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 0.6rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
}

.cta-band {
  margin: 1rem 0 4rem;
  background: linear-gradient(135deg, var(--mint), #146952);
  color: white;
  border-radius: 2rem;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  color: white;
}

.cta-band p {
  opacity: 0.92;
  max-width: 36rem;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.8rem 0.95rem;
  background: var(--surface);
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 138, 112, 0.28);
  border-color: var(--mint);
}

.field-error {
  color: var(--accent-deep);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.is-success {
  display: block;
  background: var(--mint-soft);
  color: #0f5d4a;
}

.form-status.is-error {
  display: block;
  background: #ffe0e0;
  color: #8d1f1f;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.site-footer {
  background: #173038;
  color: #d7e4ea;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 1fr 0.8fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.4rem;
}

.footer-tag,
.site-footer p,
.site-footer a {
  color: #c5d5dd;
}

.footer-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sun);
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(28, 42, 50, 0.96);
  color: #fff8f0;
  padding: 1rem 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  color: #fff8f0;
  margin: 0;
}

.cookie-banner a {
  color: var(--sun);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
}

.sticky-aside {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  align-self: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
}

.list-clean {
  list-style: none;
  padding: 0;
}

.list-clean li {
  margin-bottom: 0.55rem;
  padding-left: 1.3rem;
  position: relative;
  color: var(--ink-soft);
}

.list-clean li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.error-page {
  text-align: center;
  padding: 6rem 0;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--accent);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise 0.7s ease both;
}

.animate-rise-delay {
  animation: rise 0.7s ease 0.15s both;
}

@media (max-width: 900px) {
  .hero-spread,
  .split,
  .offer-grid,
  .card-grid,
  .post-grid,
  .contact-grid,
  .detail-layout,
  .footer-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0.4rem;
  }

  .nav-cta {
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 280px;
  }

  .page-hero h1,
  .hero-copy h1 {
    max-width: none;
  }
}
