/* ==========================================================================
   Grunvale — Wabi-Sabi Digital
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --clay: #b5654a;
  --sage: #6f7c5c;
  --ochre: #c68a35;
  --ink: #2b241d;
  --paper: #f7f1e6;
  --paper-alt: #efe6d4;
  --white: #fffaf3;

  --primary: var(--clay);
  --secondary: var(--sage);
  --accent: var(--ochre);

  --primary-light: color-mix(in oklch, var(--primary), white 35%);
  --primary-lighter: color-mix(in oklch, var(--primary), white 60%);
  --primary-dark: color-mix(in oklch, var(--primary), black 22%);
  --primary-pale: color-mix(in oklch, var(--primary), white 85%);

  --secondary-light: color-mix(in oklch, var(--secondary), white 35%);
  --secondary-dark: color-mix(in oklch, var(--secondary), black 22%);
  --secondary-pale: color-mix(in oklch, var(--secondary), white 85%);

  --accent-light: color-mix(in oklch, var(--accent), white 35%);
  --accent-dark: color-mix(in oklch, var(--accent), black 18%);
  --accent-pale: color-mix(in oklch, var(--accent), white 85%);

  --ink-soft: color-mix(in oklch, var(--ink), white 28%);
  --ink-softer: color-mix(in oklch, var(--ink), white 50%);
  --border-soft: color-mix(in oklch, var(--ink), white 86%);
  --border-strong: color-mix(in oklch, var(--ink), white 70%);

  --shadow-sm: 0 1px 2px color-mix(in oklch, var(--ink), transparent 88%), 0 3px 8px color-mix(in oklch, var(--ink), transparent 92%);
  --shadow-md: 0 6px 14px color-mix(in oklch, var(--ink), transparent 86%), 0 16px 32px color-mix(in oklch, var(--ink), transparent 90%);
  --shadow-lg: 0 14px 30px color-mix(in oklch, var(--ink), transparent 82%), 0 34px 64px color-mix(in oklch, var(--ink), transparent 88%);
  --shadow-clay: 0 16px 36px color-mix(in oklch, var(--primary), transparent 68%);
  --shadow-accent: 0 12px 28px color-mix(in oklch, var(--accent), transparent 70%);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 38px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

body {
  margin: 0;
  font-family: 'Red Hat Text', sans-serif;
  color: var(--ink-soft);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(color-mix(in oklch, var(--ink), transparent 96%) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

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


.lang-badge {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 500;
  background: color-mix(in oklch, var(--white), transparent 8%);
  border: 1px solid var(--border-soft);
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
@media (min-width: 860px) {
  .lang-badge { bottom: 20px; left: 20px; }
}


.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; }
.logo-text {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.4s ease;
}
.nav-desktop { display: none; gap: 1.9rem; align-items: center; }
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link--active::after { width: 100%; }
.nav-link--active { color: var(--primary-dark); }

.site-header.theme-light .logo-text,
.site-header.theme-light .nav-link { color: var(--ink); }

.site-header.theme-dark .logo-text,
.site-header.theme-dark .nav-link { color: var(--white); }
.site-header.theme-dark .nav-link--active { color: var(--accent-light); }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 80%);
  background: color-mix(in oklch, var(--white), transparent 15%);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.hamburger:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.site-header.theme-dark .hamburger { color: var(--white); border-color: color-mix(in oklch, var(--white), transparent 70%); background: color-mix(in oklch, var(--ink), transparent 40%); }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .hamburger { display: none; }
}


.tabbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  display: flex;
  justify-content: space-around;
  background: color-mix(in oklch, var(--white), transparent 6%);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 30px color-mix(in oklch, var(--ink), transparent 88%);
  padding: 0.5rem 0.3rem calc(0.5rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.tabbar.is-open { transform: translateY(0); }
.tabbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-softer);
  padding: 0.4rem 0.2rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  justify-content: center;
  transition: color 0.3s ease, background 0.3s ease;
}
.tabbar__item i { font-size: 1.05rem; }
.tabbar__item:hover { color: var(--primary); background: var(--primary-pale); }
.tabbar__item--active { color: var(--primary-dark); background: var(--primary-pale); }

@media (min-width: 900px) {
  .tabbar { display: none !important; }
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Red Hat Display', sans-serif;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  min-height: 48px;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-clay);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-3px); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary-dark); transform: translateY(-3px); }

.btn--outline-light { color: var(--white); border-color: color-mix(in oklch, var(--white), transparent 40%); }
.btn--outline-light:hover { border-color: var(--white); background: color-mix(in oklch, var(--white), transparent 88%); color: var(--white); }


.section {
  padding: var(--space-6) 0;
  position: relative;
}
.section--tint { background: var(--paper-alt); }
.section--dark { background: var(--ink); color: var(--white); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}
.eyebrow--light { color: var(--accent-light); }

.section__title {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.9rem);
  margin-bottom: 0.4rem;
  max-width: 46ch;
}
.section__title--light { color: var(--white); }

.underline-squiggle {
  display: block;
  width: 120px;
  height: 16px;
  margin: 0 0 1.6rem;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 16'><path d='M2 9 Q 20 2 40 9 T 78 9 T 118 9' stroke='%23c68a35' stroke-width='3' fill='none' stroke-linecap='round'/></svg>");
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, color-mix(in oklch, var(--ink), transparent 15%) 0%, color-mix(in oklch, var(--ink), transparent 30%) 55%, color-mix(in oklch, var(--ink), transparent 5%) 100%);
}
.hero__overlay--solid { background: var(--ink); }
.hero__inner { position: relative; z-index: 2; padding: 7rem 0 4rem; max-width: 780px; }

.hero__title {
  font-size: clamp(2.3rem, 4.6vw + 1rem, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  animation: heroFade 0.9s ease both;
}
.hero__rotate {
  display: inline-grid;
  position: relative;
  vertical-align: bottom;
  color: var(--accent-light);
}
.hero__rotate span {
  grid-area: 1 / 1;
  opacity: 0;
  animation: rotateFade 9s ease-in-out infinite;
}
.hero__rotate span:nth-child(1) { animation-delay: 0s; }
.hero__rotate span:nth-child(2) { animation-delay: 2.25s; }
.hero__rotate span:nth-child(3) { animation-delay: 4.5s; }
.hero__rotate span:nth-child(4) { animation-delay: 6.75s; }

@keyframes rotateFade {
  0%, 3% { opacity: 0; transform: translateY(8px); }
  8%, 20% { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__lead { font-size: 1.1rem; max-width: 60ch; color: color-mix(in oklch, var(--white), transparent 12%); animation: heroFade 1.1s ease both; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; animation: heroFade 1.3s ease both; }


.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.page-hero--short { min-height: 46vh; align-items: center; }
.page-hero__inner { position: relative; z-index: 2; padding: 8rem 0 3.5rem; max-width: 700px; }
.page-hero--short .page-hero__inner { padding: 6.5rem 0 2rem; }
.page-hero__title { font-size: clamp(2.1rem, 3.6vw + 1rem, 3.3rem); font-weight: 800; color: var(--white); }


.intro__grid, .offer__grid, .guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .intro__grid, .offer__grid, .guide__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .intro__grid--reverse .intro__media,
  .offer__grid--reverse .offer__media,
  .guide__grid--reverse .guide__media { order: 2; }
}
.intro__media img, .offer__media img, .guide__media img { width: 100%; height: 340px; object-fit: cover; box-shadow: var(--shadow-lg); }

.img-organic--1 { border-radius: 63% 37% 54% 46% / 42% 47% 53% 58%; }
.img-organic--2 { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
.img-organic--3 { border-radius: 50% 50% 34% 66% / 60% 40% 60% 40%; }

.offer__num {
  display: inline-block;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  background: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}


.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .benefits__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

.benefit {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50% 40% 50% 45% / 45% 50% 45% 55%;
  background: var(--secondary-pale);
  color: var(--secondary-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.benefit__icon--muted { background: color-mix(in oklch, var(--ink), white 88%); color: var(--ink-softer); }
.benefit h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.benefit p { font-size: 0.95rem; color: var(--ink-softer); margin: 0; }


.topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 2.2rem;
}
@media (min-width: 700px) { .topics__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .topics__grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { height: 190px; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem; }
.card__body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card__body p { font-size: 0.94rem; color: var(--ink-softer); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.92rem;
  transition: gap 0.3s ease, color 0.3s ease;
}
.card__link:hover { gap: 0.7rem; color: var(--primary); }


.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) { .process__grid { grid-template-columns: 0.8fr 1.2fr; } }
.process__list { display: flex; flex-direction: column; gap: 1.6rem; }
.process__list li { display: flex; gap: 1.2rem; align-items: flex-start; }
.process__num {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent-dark);
  min-width: 46px;
}
.process__list h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.process__list p { margin: 0; color: var(--ink-softer); font-size: 0.94rem; }


.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .steps__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps__grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary-dark);
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 800;
  margin-bottom: 1rem;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.93rem; color: var(--ink-softer); margin: 0; }


.quote-card {
  background: var(--white);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 2.4rem 2.2rem;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
}
.quote-card__icon { font-size: 1.6rem; color: var(--accent-dark); margin-bottom: 1rem; display: block; }
.quote-card p { font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.35rem); color: var(--ink); font-family: 'Red Hat Display', sans-serif; font-weight: 600; line-height: 1.5; }
.quote-card cite { font-style: normal; font-size: 0.88rem; color: var(--ink-softer); }
.quote-card--center { text-align: center; }
.quote-card--center .quote-card__icon { margin: 0 auto 1rem; }


.cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) { .cta__inner { grid-template-columns: 0.9fr 1.1fr; } }
.cta__media img { width: 100%; height: 320px; object-fit: cover; box-shadow: var(--shadow-lg); }
.cta__lead { color: color-mix(in oklch, var(--white), transparent 15%); max-width: 52ch; }


.limits__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .limits__grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; } }
.limits__list { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 640px) { .limits__list { grid-template-columns: 1fr 1fr; } }


.checklist { display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.checklist i { color: var(--secondary-dark); margin-top: 0.2rem; }

.guide__cta {
  max-width: 700px;
  text-align: left;
  background: var(--white);
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}


.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 940px) { .contact__grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact__list { display: flex; flex-direction: column; gap: 1rem; margin: 1.6rem 0 2rem; }
.contact__list li { display: flex; gap: 0.8rem; align-items: center; font-size: 0.98rem; }
.contact__list i { color: var(--primary-dark); width: 20px; text-align: center; }
.contact__langs { background: var(--paper-alt); padding: 1.4rem 1.6rem; border-radius: var(--radius-md); margin-bottom: 1.8rem; }
.contact__langs h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.contact__langs p { margin: 0; font-size: 0.94rem; color: var(--ink-softer); }
.contact__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.contact__map iframe { display: block; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.form-progress { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 2rem; }
.form-progress__step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 700; color: var(--ink-softer); }
.form-progress__step span { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--border-soft); color: var(--ink); font-size: 0.8rem; }
.form-progress__step--active { color: var(--primary-dark); }
.form-progress__step--active span { background: var(--primary); color: var(--white); }
.form-progress__bar { flex: 1; height: 4px; background: var(--border-soft); border-radius: 4px; overflow: hidden; }
.form-progress__bar span { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 0.4s ease; }

.form-step { display: none; flex-direction: column; gap: 1.3rem; }
.form-step--active { display: flex; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.form-field input[type="text"], .form-field input[type="email"], .form-field textarea {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  font-family: 'Red Hat Text', sans-serif;
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-pale);
}
.form-field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.form-field--checkbox input { width: 20px; height: 20px; margin-top: 0.2rem; accent-color: var(--primary); }
.form-field--checkbox label { font-weight: 500; font-size: 0.9rem; }
.form-field--checkbox a { color: var(--primary-dark); font-weight: 700; }
.form-actions { display: flex; gap: 1rem; flex-wrap: wrap; }


.section--thanks { min-height: 80vh; display: flex; align-items: center; }
.thanks__wrap { text-align: center; max-width: 720px; margin: 0 auto; }
.thanks__title { margin-top: 2rem; font-size: clamp(1.8rem, 2.6vw + 1rem, 2.6rem); }
.thanks__text { color: var(--ink-softer); max-width: 55ch; margin-left: auto; margin-right: auto; }


.legal-section { padding-top: var(--space-5); }
.legal-stack { display: flex; flex-direction: column; gap: 1.6rem; max-width: 860px; margin: 0 auto; }
.legal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.legal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.legal-card h2 { font-size: 1.25rem; margin-bottom: 0.7rem; }
.legal-card p { margin: 0; color: var(--ink-softer); font-size: 0.97rem; }


.footer { position: relative; background: var(--ink); color: color-mix(in oklch, var(--white), transparent 8%); padding-top: 4px; }
.footer__accent { height: 5px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary)); }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding: 3.5rem 1.5rem 2.5rem;
}
@media (min-width: 720px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer__col a { display: block; color: color-mix(in oklch, var(--white), transparent 25%); font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.3s ease, padding-left 0.3s ease; }
.footer__col a:hover { color: var(--accent-light); padding-left: 4px; }
.footer__col--brand p { color: color-mix(in oklch, var(--white), transparent 30%); font-size: 0.92rem; max-width: 32ch; }
.logo-link--footer { margin-bottom: 1rem; }
.logo-link--footer .logo-text { color: var(--white); }
.footer__col p { display: flex; gap: 0.6rem; align-items: center; color: color-mix(in oklch, var(--white), transparent 25%); font-size: 0.9rem; margin-bottom: 0.7rem; }
.footer__col p i { color: var(--accent-light); }
.footer__bottom { border-top: 1px solid color-mix(in oklch, var(--white), transparent 88%); padding: 1.4rem 1.5rem 2rem; }
.footer__bottom p { margin: 0; font-size: 0.82rem; color: color-mix(in oklch, var(--white), transparent 40%); }


.cookie-overlay {
  position: fixed; inset: 0;
  background: color-mix(in oklch, var(--ink), transparent 45%);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cookie-overlay.is-visible { opacity: 1; pointer-events: auto; }

.cookie-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 300px;
  max-width: 88vw;
  background: var(--white);
  z-index: 950;
  box-shadow: -14px 0 40px color-mix(in oklch, var(--ink), transparent 80%);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  overflow-y: auto;
}
.cookie-panel.is-visible { transform: translateX(0); }
.cookie-panel__icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.8rem; }
.cookie-panel h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.cookie-panel p { font-size: 0.87rem; color: var(--ink-softer); }
.cookie-panel__cats { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.4rem 0; }
.cookie-cat { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-soft); }
.cookie-cat__label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.cookie-cat__desc { font-size: 0.78rem; color: var(--ink-softer); margin-top: 0.2rem; }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch__track { position: absolute; inset: 0; background: var(--border-strong); border-radius: 999px; cursor: pointer; transition: background 0.3s ease; }
.switch__track::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform 0.3s ease; box-shadow: var(--shadow-sm); }
.switch input:checked + .switch__track { background: var(--secondary); }
.switch input:checked + .switch__track::before { transform: translateX(20px); }
.switch input:disabled + .switch__track { background: var(--primary-light); cursor: not-allowed; }
.cookie-panel__actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.8rem; padding-top: 1.4rem; }
.cookie-panel__actions .btn { width: 100%; justify-content: center; }


@media (max-width: 640px) {
  .section { padding: var(--space-5) 0; }
  .hero__inner, .page-hero__inner { padding-top: 6rem; }
  .form-card { padding: 1.8rem; }
  .guide__cta { padding: 1.8rem; }
  .legal-card { padding: 1.6rem 1.4rem; }
}

@media (min-width: 1400px) {
  .container { max-width: 1280px; }
}