:root {
  --clay: #b5622f;
  --moss: #4a5d3a;
  --cream: #f7f1e6;
  --ink: #2b2420;

  --clay-50: color-mix(in oklch, var(--clay) 8%, white);
  --clay-100: color-mix(in oklch, var(--clay) 16%, white);
  --clay-200: color-mix(in oklch, var(--clay) 32%, white);
  --clay-300: color-mix(in oklch, var(--clay) 50%, white);
  --clay-400: color-mix(in oklch, var(--clay) 72%, white);
  --clay-500: var(--clay);
  --clay-600: color-mix(in oklch, var(--clay) 85%, black);
  --clay-700: color-mix(in oklch, var(--clay) 68%, black);

  --moss-50: color-mix(in oklch, var(--moss) 8%, white);
  --moss-100: color-mix(in oklch, var(--moss) 18%, white);
  --moss-200: color-mix(in oklch, var(--moss) 35%, white);
  --moss-300: color-mix(in oklch, var(--moss) 55%, white);
  --moss-400: color-mix(in oklch, var(--moss) 75%, white);
  --moss-500: var(--moss);
  --moss-600: color-mix(in oklch, var(--moss) 85%, black);
  --moss-700: color-mix(in oklch, var(--moss) 68%, black);

  --ink-soft: color-mix(in oklch, var(--ink) 78%, white);
  --ink-faint: color-mix(in oklch, var(--ink) 48%, white);
  --cream-dark: color-mix(in oklch, var(--cream) 92%, black);
  --cream-darker: color-mix(in oklch, var(--cream) 80%, black);

  --shadow-sm: 0 1px 3px color-mix(in oklch, var(--ink) 12%, transparent), 0 1px 2px color-mix(in oklch, var(--ink) 8%, transparent);
  --shadow-md: 0 10px 26px color-mix(in oklch, var(--ink) 14%, transparent), 0 2px 8px color-mix(in oklch, var(--ink) 8%, transparent);
  --shadow-lg: 0 32px 64px -18px color-mix(in oklch, var(--clay) 32%, transparent), 0 12px 24px color-mix(in oklch, var(--ink) 10%, transparent);

  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 40px;
  --radius-organic: 63% 37% 54% 46% / 55% 48% 52% 45%;
  --radius-organic-2: 40% 60% 55% 45% / 48% 40% 60% 52%;

  --font-body: 'Instrument Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.03;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 780px; }

.section { padding: var(--space-section, clamp(4rem, 8vw, 7rem)) 0; }
.section--tint { background: var(--cream-dark); }
.section--wide { padding-left: 0; padding-right: 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in oklch, white 85%, var(--clay-200));
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--clay-600); }
.eyebrow--on-color { color: color-mix(in oklch, white 90%, var(--cream)); }

.section__heading { max-width: 640px; margin-bottom: 3rem; }
.section__heading--on-color h2 { color: var(--cream); }
.section__lede { margin-top: 1rem; color: var(--ink-faint); font-size: 1.05rem; }

.scribble { display: block; width: 110px; height: 14px; margin-top: 0.4rem; color: var(--clay-500); }
.scribble svg { width: 100%; height: 100%; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 44px;
}
.btn--primary {
  background: var(--clay-500);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--clay-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--clay-600);
  border: 2px solid var(--clay-300);
}
.btn--outline:hover {
  background: var(--clay-50);
  border-color: var(--clay-500);
  transform: translateY(-2px);
}
.btn--on-dark {
  color: white;
  border-color: color-mix(in oklch, white 55%, transparent);
}
.btn--on-dark:hover { background: color-mix(in oklch, white 15%, transparent); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.85rem; min-height: 38px; }
.btn--send { align-self: flex-start; }


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header--solid {
  background: color-mix(in oklch, var(--cream) 96%, white);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo__text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  transition: color 0.4s ease;
}
.logo__sub { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }

.site-header:not(.site-header--solid) .logo__text { color: white; }
.site-header:not(.site-header--solid) .logo__sub { color: color-mix(in oklch, white 75%, transparent); }

.nav-desktop ul { display: flex; gap: 2.2rem; }
.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: white;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.site-header--solid .nav-desktop a { color: var(--ink-soft); }
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--clay-500);
  transition: width 0.3s ease;
}
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { font-weight: 700; }

.nav-cta { display: inline-flex; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.hamburger span {
  display: block; width: 24px; height: 2px; border-radius: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.site-header--solid .hamburger span { background: var(--ink); }
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.mobile-tabbar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  display: none;
  background: color-mix(in oklch, var(--cream) 97%, white);
  box-shadow: 0 -8px 24px color-mix(in oklch, var(--ink) 14%, transparent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--cream-darker);
}
.mobile-tabbar.is-open { transform: translateY(0); }
.mobile-tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0.55rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-faint);
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background-color 0.25s ease;
  min-height: 48px;
  justify-content: center;
}
.mobile-tabbar__item i { font-size: 1.05rem; }
.mobile-tabbar__item.is-active { color: var(--clay-600); background: var(--clay-50); }


.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--moss-600), var(--ink));
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, color-mix(in oklch, var(--ink) 55%, transparent) 0%, color-mix(in oklch, var(--ink) 78%, transparent) 100%);
}
.hero__blob {
  position: absolute;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.hero__blob--1 {
  width: 340px; height: 340px;
  background: var(--clay-300);
  border-radius: var(--radius-organic);
  top: -70px; right: -90px;
  filter: blur(2px);
}
.hero__blob--2 {
  width: 220px; height: 220px;
  background: var(--moss-300);
  border-radius: var(--radius-organic-2);
  bottom: -50px; left: -60px;
}
.hero__inner { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 3rem; max-width: 760px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  color: white;
  margin-bottom: 1.3rem;
}
.hero__title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: char-in 0.7s ease forwards;
  animation-delay: calc(var(--char-index) * 0.02s);
}
@keyframes char-in { to { opacity: 1; transform: translateY(0); } }
.hero__sub { color: color-mix(in oklch, white 85%, var(--cream)); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero--page { min-height: 52vh; background: linear-gradient(150deg, var(--clay-600), var(--moss-700)); }
.hero__inner--page { padding-top: 8rem; padding-bottom: 3rem; }
.hero__title--page { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.hero--legal { min-height: 38vh; }

.indicator-bar {
  position: relative;
  z-index: 2;
  background: color-mix(in oklch, var(--ink) 88%, black);
  border-top: 1px solid color-mix(in oklch, white 15%, transparent);
}
.indicator-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding: 1.4rem 1.5rem;
  justify-content: space-between;
}
.indicator { display: flex; align-items: center; gap: 0.7rem; color: color-mix(in oklch, white 88%, var(--cream)); font-size: 0.92rem; font-weight: 500; }
.indicator i { color: var(--clay-300); font-size: 1.1rem; }


.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card--service .card__image { width: 100%; height: 190px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card__body p { color: var(--ink-faint); font-size: 0.95rem; margin-top: 0.5rem; }

.card--package {
  padding: 1.8rem;
  border: 2px solid var(--cream-darker);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card--package p { color: var(--ink-faint); font-size: 0.95rem; }
.card__link { color: var(--clay-600); font-weight: 600; font-size: 0.9rem; display: inline-flex; gap: 0.4rem; align-items: center; margin-top: 0.4rem; transition: gap 0.25s ease; }
.card__link:hover { gap: 0.7rem; }

.card--featured {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--clay-200);
  box-shadow: var(--shadow-md);
}
.card--featured h3 { margin-bottom: 0.6rem; }
.card--featured > p { color: var(--ink-faint); margin-bottom: 1.2rem; }

.check-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.check-list i { color: var(--moss-500); margin-top: 3px; }


.section--gradient-scroll {
  background-color: var(--clay-500);
  transition: background-color 0.1s linear;
  padding: var(--space-section, clamp(4rem, 8vw, 7rem)) 0;
}
.cycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cycle-card {
  background: color-mix(in oklch, white 14%, transparent);
  border: 1px solid color-mix(in oklch, white 25%, transparent);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  backdrop-filter: blur(6px);
}
.cycle-card__season { display: block; font-weight: 700; font-size: 1.2rem; color: white; margin-bottom: 0.8rem; }
.cycle-card p { color: color-mix(in oklch, white 90%, var(--cream)); font-size: 0.95rem; }


.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--clay-300), var(--moss-300));
}
.timeline__item { position: relative; padding: 0 0 2.6rem 2rem; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.5px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clay-500);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--clay-300);
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__date { display: inline-block; font-weight: 700; color: var(--clay-600); font-size: 0.95rem; margin-bottom: 0.35rem; }
.timeline__content h3 { margin-bottom: 0.4rem; }
.timeline__content p { color: var(--ink-faint); font-size: 0.95rem; }


.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-bottom: 2.5rem; }
.process-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.process-step__number { font-size: 1.6rem; font-weight: 700; color: var(--clay-300); }
.process-step h3 { margin: 0.6rem 0 0.5rem; }
.process-step p { color: var(--ink-faint); font-size: 0.92rem; }
.process-images { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.2rem; }
.process-images__img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.process-images__img:nth-child(2) { border-radius: var(--radius-organic-2); }


.reason-card { background: white; padding: 1.8rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.reason-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.reason-card i { font-size: 1.5rem; color: var(--moss-500); margin-bottom: 0.9rem; }
.reason-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.reason-card p { color: var(--ink-faint); font-size: 0.9rem; }


.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-block--reverse { direction: rtl; }
.split-block--reverse > * { direction: ltr; }
.split-block__text p { color: var(--ink-faint); margin-top: 1rem; }
.split-block__image { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }


.quick-facts, .facts-strip { background: var(--ink); padding: 2.2rem 0; }
.quick-facts__inner, .facts-strip__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.2rem; }
.quick-fact, .fact { display: flex; align-items: center; gap: 0.7rem; color: color-mix(in oklch, white 88%, var(--cream)); font-size: 0.9rem; font-weight: 500; }
.quick-fact i, .fact i { color: var(--clay-300); font-size: 1.1rem; }


.addon-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.addon-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.addon-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.addon-item i { font-size: 1.3rem; color: var(--clay-500); }
.addon-item span { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }

.pricing-note { padding: 1rem 0 3rem; }
.pricing-note__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--moss-50);
  border: 1px solid var(--moss-200);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.6rem;
}
.pricing-note__inner i { color: var(--moss-600); font-size: 1.3rem; }
.pricing-note__inner p { color: var(--ink-soft); font-size: 0.95rem; }


.cta-banner { background: linear-gradient(120deg, var(--moss-600), var(--clay-600)); padding: 3.5rem 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-banner h2 { color: white; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-banner p { color: color-mix(in oklch, white 85%, var(--cream)); margin-top: 0.4rem; }


.site-footer { background: var(--ink); padding-top: 4.5rem; }
.footer__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; padding-bottom: 3rem; }
.footer__brand img { margin-bottom: 1rem; }
.footer__brand h3 { color: white; margin-bottom: 0.9rem; font-size: 1.3rem; }
.footer__brand p { color: color-mix(in oklch, white 70%, transparent); font-size: 0.95rem; margin-bottom: 1.4rem; max-width: 380px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col h4 { color: white; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { color: color-mix(in oklch, white 68%, transparent); font-size: 0.92rem; transition: color 0.25s ease; }
.footer__col a:hover { color: var(--clay-300); }
.footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; color: color-mix(in oklch, white 68%, transparent); font-size: 0.9rem; }
.footer__contact i { color: var(--clay-300); margin-top: 3px; }
.footer__bottom { border-top: 1px solid color-mix(in oklch, white 12%, transparent); padding: 1.4rem 1.5rem; text-align: center; }
.footer__bottom p { color: color-mix(in oklch, white 48%, transparent); font-size: 0.82rem; }


.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.chat-form { display: flex; flex-direction: column; gap: 0.9rem; }
.chat-bubble { max-width: 85%; padding: 1rem 1.3rem; border-radius: var(--radius-md); font-size: 0.95rem; }
.chat-bubble--bot {
  background: var(--moss-50);
  color: var(--ink-soft);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}
.chat-bubble--user {
  background: var(--clay-500);
  align-self: flex-end;
  border-bottom-right-radius: 6px;
  width: 85%;
}
.chat-bubble--user input,
.chat-bubble--user textarea {
  width: 100%;
  border: none;
  background: color-mix(in oklch, white 92%, var(--clay-100));
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: box-shadow 0.25s ease;
  resize: vertical;
}
.chat-bubble--user input:focus, .chat-bubble--user textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in oklch, white 40%, var(--clay-300));
}
.chat-bubble--check { background: color-mix(in oklch, var(--clay-500) 90%, black); }
.privacy-check { display: flex; align-items: flex-start; gap: 0.6rem; color: white; font-size: 0.9rem; cursor: pointer; }
.privacy-check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--moss-600); }
.privacy-check a { text-decoration: underline; color: white; }
.btn--send { margin-top: 0.3rem; }

.contact-side { display: flex; flex-direction: column; gap: 1.3rem; }
.contact-side__image { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-side__card { background: white; border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.contact-side__card h3 { margin-bottom: 1rem; }
.contact-side__card ul { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-side__card li { display: flex; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-soft); align-items: flex-start; }
.contact-side__card i { color: var(--clay-500); margin-top: 3px; }
.contact-side__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }


.accordion-item {
  border-bottom: 1px solid var(--cream-darker);
}
.accordion-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0.3rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.accordion-item__header i { transition: transform 0.3s ease; color: var(--clay-500); }
.accordion-item.is-open .accordion-item__header i { transform: rotate(180deg); }
.accordion-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0.3rem;
}
.accordion-item.is-open .accordion-item__body { max-height: 600px; padding: 0 0.3rem 1.4rem; }
.accordion-item__body p { color: var(--ink-faint); font-size: 0.95rem; margin-bottom: 0.8rem; }
.accordion-item__body p:last-child { margin-bottom: 0; }


.thanks-section { padding: 10rem 0 6rem; min-height: 70vh; display: flex; align-items: center; }
.thanks-section__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.quote-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
  position: relative;
}
.quote-card i { font-size: 1.6rem; color: var(--clay-300); margin-bottom: 1rem; }
.quote-card__text { font-size: 1.3rem; font-weight: 600; color: var(--ink); line-height: 1.5; margin-bottom: 1rem; }
.quote-card__author { color: var(--ink-faint); font-size: 0.9rem; }
.thanks-section h1 { margin-bottom: 1rem; }
.thanks-section p { color: var(--ink-faint); margin-bottom: 2rem; }


.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: color-mix(in oklch, var(--ink) 96%, black);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -10px 30px color-mix(in oklch, var(--ink) 30%, transparent);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-bar__text { color: color-mix(in oklch, white 80%, transparent); font-size: 0.88rem; max-width: 560px; }
.cookie-bar__text a { color: var(--clay-300); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-bar .btn--outline { color: white; border-color: color-mix(in oklch, white 40%, transparent); }
.cookie-bar .btn--outline:hover { background: color-mix(in oklch, white 12%, transparent); }
.cookie-bar__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
}
.cookie-bar.is-expanded .cookie-bar__panel { max-height: 320px; margin-top: 1.2rem; }
.cookie-toggle { display: flex; align-items: flex-start; gap: 0.7rem; color: color-mix(in oklch, white 82%, transparent); font-size: 0.85rem; margin-bottom: 0.8rem; cursor: pointer; }
.cookie-toggle input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--clay-500); }
.cookie-toggle small { display: block; color: color-mix(in oklch, white 55%, transparent); font-weight: 400; margin-top: 2px; }


.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .addon-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-desktop, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-tabbar { display: flex; }
  .split-block, .split-block--reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-block__image { height: 260px; }
  .grid--2 { grid-template-columns: 1fr; }
  .process-images { grid-template-columns: 1fr; }
  .contact-side__image { height: 180px; }
  body { padding-bottom: 70px; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .grid--4, .grid--5, .addon-list { grid-template-columns: repeat(2, 1fr); }
  .cycle-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .indicator-bar__inner { justify-content: flex-start; gap: 1.2rem 2rem; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .quick-facts__inner, .facts-strip__inner { justify-content: flex-start; }
  .chat-bubble--user { width: 100%; }
}

@media (max-width: 420px) {
  .grid--4, .grid--5, .addon-list { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
}