:root {
  --ink: #3a2923;
  --ink-soft: #5b4740;
  --muted: #725f56;
  --paper: #fbf6ed;
  --paper-2: #f3eadc;
  --cream: #fffaf2;
  --card: #fffdf8;
  --line: #e4d5c3;
  --mocha: #8b6b5b;
  --sage: #7d9281;
  --sage-dark: #4f6657;
  --gold: #b9925f;
  --rose: #96594c;
  --shadow: 0 24px 70px rgba(76, 52, 41, .12);
  --shadow-soft: 0 14px 36px rgba(76, 52, 41, .08);
  --radius: 22px;
  --radius-sm: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, #fffaf3 36%, #f7eee2 100%);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, 0) 42%),
    repeating-linear-gradient(90deg, rgba(96, 70, 58, .035) 0 1px, transparent 1px 84px);
}

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

a { color: inherit; }

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.hero p {
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 3.55vw, 3.55rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: .55rem;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 40;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: var(--cream);
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(228, 213, 195, .72);
  background: rgba(251, 246, 237, .86);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1180px;
  min-height: 78px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.site-logo {
  flex: 0 0 auto;
  text-decoration: none;
  background: transparent;
}

.site-logo img {
  display: block;
  width: 185px;
  height: auto;
  max-width: 100%;
  background: transparent;
}

.nav-links {
  gap: 1rem;
  color: var(--ink-soft);
  font-size: .93rem;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--sage-dark);
}

.nav-cta {
  padding: .72rem 1rem;
  border: 1px solid rgba(79, 102, 87, .38);
  border-radius: 999px;
  color: var(--cream);
  background: var(--sage-dark);
  box-shadow: 0 12px 28px rgba(79, 102, 87, .18);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

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

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: min(900px, calc(90vh - 78px));
  padding: clamp(4rem, 7vw, 7rem) 1.25rem;
  display: flex;
  align-items: center;
  background-image: url("assets/clariobase-hero-desktop.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  isolation: isolate;
}

.hero--background {
  background:
    url("assets/clariobase-hero-desktop.webp") center right / cover no-repeat,
    #3a2923;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(36, 24, 18, .82) 0%,
      rgba(36, 24, 18, .68) 36%,
      rgba(36, 24, 18, .34) 66%,
      rgba(36, 24, 18, .10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .24) 0%,
      rgba(0, 0, 0, .06) 46%,
      rgba(0, 0, 0, .22) 100%
    );
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(251, 247, 240, 0), var(--paper));
}

@media (max-width: 768px) {
  .hero {
    background-image: url("assets/clariobase-hero-mobile.webp");
  }

  .hero--background {
    background:
      url("assets/clariobase-hero-mobile.webp") center right / cover no-repeat,
      #3a2923;
  }
}

.hero-inner {
  max-width: 1180px;
  width: min(100%, 1180px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(100%, 690px);
  max-width: 690px;
  padding: clamp(1.8rem, 3.3vw, 3rem);
  display: grid;
  gap: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 32px;
  color: var(--cream);
  background: rgba(42, 29, 22, .58);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
}

.eyebrow,
.section-kicker,
.package-label {
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  color: #fffaf3;
}

.hero .eyebrow {
  color: #f4ddbd;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 250, 243, .86);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  line-height: 1.68;
}

.location-badge {
  max-width: 660px;
  width: fit-content;
  padding: .64rem .9rem;
  border: 1px solid rgba(255, 250, 243, .22);
  border-radius: 999px;
  color: rgba(255, 250, 243, .82);
  background: rgba(255, 250, 243, .08);
  box-shadow: none;
  font-size: .95rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: .4rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .86rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #2a1d16;
  background: #f4ddbd;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .2);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #fff3dd;
}

.button.secondary,
.package-button {
  color: var(--ink);
  border-color: rgba(58, 41, 35, .18);
  background: rgba(255, 253, 248, .64);
  backdrop-filter: blur(12px);
}

.hero .button.secondary {
  color: var(--cream);
  border-color: rgba(255, 250, 243, .28);
  background: rgba(255, 250, 243, .08);
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible {
  border-color: rgba(255, 250, 243, .48);
  background: rgba(255, 250, 243, .16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.button.secondary:hover,
.package-button:hover {
  border-color: rgba(79, 102, 87, .35);
  box-shadow: var(--shadow-soft);
}

.hero-note {
  max-width: 640px;
  color: rgba(255, 250, 243, .72);
  font-size: .94rem;
}

.privacy-page {
  color: #2f211a;
  background: #fbf7f0;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .25rem;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .52rem .78rem;
  border: 1px solid rgba(255, 250, 243, .18);
  border-radius: 999px;
  color: rgba(255, 250, 243, .86);
  background: rgba(255, 250, 243, .09);
  box-shadow: none;
  font-size: .9rem;
  font-weight: 800;
}

.section,
.contact,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: clamp(4.2rem, 8vw, 7rem) 1.25rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
  display: grid;
  gap: .85rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p,
.problem-copy p,
.package-fit,
.recommendation,
.care article p,
.why-grid p,
.about p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.problem {
  padding-top: 2rem;
}

.problem-card {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(280px, .58fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid rgba(228, 213, 195, .95);
  border-radius: 34px;
  background: rgba(255, 253, 248, .82);
  box-shadow: var(--shadow);
}

.problem-card .section-kicker {
  grid-column: 1 / -1;
}

.problem-copy h2 {
  margin-bottom: 1.2rem;
  line-height: 1.08;
}

.problem-copy p {
  margin-top: 0;
  line-height: 1.7;
}

.problem-list {
  padding: 1.2rem;
  border-radius: 22px;
  color: var(--ink-soft);
  background: var(--paper-2);
}

.problem-list p {
  margin-bottom: .7rem;
  color: var(--ink);
  font-weight: 900;
}

.problem-list strong {
  display: block;
  margin-top: 1rem;
  color: var(--sage-dark);
  line-height: 1.45;
}

.value {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  background: rgba(255, 250, 242, .62);
}

.value-grid,
.package-grid,
.care-grid,
.why-grid,
.scope-grid {
  display: grid;
  gap: 1rem;
}

.value-grid {
  max-width: 1180px;
  grid-template-columns: repeat(3, 1fr);
}

.value-grid article,
.package-card,
.care-grid article,
.why-grid article,
.scope-grid article,
.contact-card,
.about {
  border: 1px solid rgba(228, 213, 195, .92);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .9);
  box-shadow: var(--shadow-soft);
}

.value-grid article,
.why-grid article {
  min-height: 245px;
  padding: 1.35rem;
}

.value-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--sage-dark);
  background: #edf1e9;
  font-weight: 900;
}

.value-grid p,
.scope-grid li,
.package-card li {
  color: var(--muted);
}

.packages {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.package-grid {
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.package-card.recommended {
  border-color: rgba(79, 102, 87, .44);
  box-shadow: 0 28px 74px rgba(79, 102, 87, .17);
  transform: translateY(-.7rem);
}

.package-top {
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line);
}

.package-top h3 {
  margin-top: .35rem;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.package-fit {
  padding: .95rem;
  border-radius: 18px;
  background: var(--paper);
  font-size: .95rem;
}

.package-fit strong {
  color: var(--ink);
}

.recommendation {
  padding-left: .9rem;
  border-left: 4px solid var(--sage);
  font-size: .95rem;
  font-weight: 800;
}

.badge {
  align-self: flex-start;
  padding: .45rem .7rem;
  border-radius: 999px;
  color: var(--cream);
  background: var(--sage-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-button {
  margin-top: auto;
}

.care {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  background: linear-gradient(180deg, rgba(243, 234, 220, .72), rgba(255, 250, 242, .6));
}

.care-grid {
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-grid article {
  padding: 1.35rem;
}

.price {
  margin: .65rem 0 .75rem;
  color: var(--sage-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.care-grid ul {
  margin-top: 1rem;
}

.why-grid,
.scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-grid article,
.scope-grid article {
  padding: 1.35rem;
}

.scope {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.scope-grid {
  max-width: 1180px;
}

.scope-grid article:first-child {
  border-top: 6px solid var(--sage);
}

.scope-grid article:last-child {
  border-top: 6px solid var(--gold);
}

.about-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(85, 62, 49, .12);
  border-radius: 32px;
  background: rgba(255, 250, 243, .72);
}

.about-card h2 {
  max-width: 780px;
  margin-top: .8rem;
}

.about-copy {
  max-width: 860px;
  margin-top: 1.4rem;
}

.about-copy p {
  color: rgba(76, 55, 44, .78);
  font-size: 1rem;
  line-height: 1.75;
}

.about-copy p + p {
  margin-top: .85rem;
}

.about-points {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.about-point {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .42);
}

.about-point strong {
  display: block;
  color: #2f211a;
  font-size: .95rem;
  font-weight: 700;
}

.about-point span {
  display: block;
  margin-top: .3rem;
  color: rgba(76, 55, 44, .64);
  font-size: .86rem;
  line-height: 1.45;
}

.process-section,
.proof-section,
.faq-section {
  max-width: none;
  padding-left: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - 1180px) / 2 + 1.25rem));
}

.process-steps,
.proof-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.process-steps {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.process-step,
.proof-item,
.faq-item {
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 22px;
  background: rgba(255, 250, 243, .64);
}

.process-step {
  padding: 1.25rem;
}

.process-number {
  min-width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(238, 220, 195, .72);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.process-step h3,
.proof-item h3,
.faq-item h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.process-step p,
.proof-item p,
.faq-item p {
  margin-top: .65rem;
  color: rgba(76, 55, 44, .72);
  font-size: .95rem;
  line-height: 1.65;
}

.proof-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(220, 188, 148, .22), transparent 34%),
    rgba(255, 250, 243, .72);
}

.proof-card .section-heading {
  margin-left: 0;
  margin-right: 0;
}

.proof-card .section-heading p + p {
  margin-top: .75rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-item,
.faq-item {
  padding: 1.15rem;
}

.faq-grid {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact {
  margin-bottom: 4rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
  gap: 2rem;
  align-items: center;
  border-radius: 34px;
  color: var(--cream);
  background: linear-gradient(135deg, #3a2923, #6f5145);
  box-shadow: var(--shadow);
}

.contact .section-kicker {
  color: #f1c7b8;
}

.contact h2 {
  margin: .55rem 0 1rem;
  max-width: 760px;
}

.contact-copy p {
  max-width: 760px;
  color: rgba(255, 250, 242, .78);
}

.response-note {
  margin-top: 1rem;
  font-weight: 800;
}

.contact-card {
  padding: 1.35rem;
  color: var(--ink);
  background: var(--cream);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.form-field,
.form-field-wide {
  display: grid;
  gap: .4rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.35;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(139, 107, 91, .28);
  border-radius: 14px;
  padding: .8rem .95rem;
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(185, 146, 95, .9);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(185, 146, 95, .16);
}

.form-field input.input-error,
.form-field textarea.input-error {
  border-color: #b65a4a;
  box-shadow: 0 0 0 3px rgba(182, 90, 74, .12);
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-honeypot {
  width: 1px;
  height: 1px;
}

.form-legal-note {
  max-width: 100%;
  margin: 1rem 0 .75rem;
  color: #6f6258;
  font-size: .86rem;
  line-height: 1.6;
}

.form-legal-note a,
.form-consent a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.form-legal-note a {
  color: #6f6258;
}

.form-consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin: .75rem 0 0;
  color: rgba(76, 55, 44, .78);
  font-size: .88rem;
  line-height: 1.55;
}

.form-consent.has-error {
  color: rgba(76, 55, 44, .9);
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .2rem;
  accent-color: var(--sage-dark);
}

.form-consent.has-error input {
  outline: 2px solid rgba(143, 63, 50, .35);
  outline-offset: 2px;
}

.field-error {
  margin: .35rem 0 .85rem 2rem;
  color: #8f3f32;
  font-size: .84rem;
  line-height: 1.45;
}

.form-field .field-error {
  margin: .45rem 0 0;
  color: #9a3f32;
  font-size: .88rem;
  line-height: 1.4;
}

.field-error:empty {
  display: none;
}

.field-error[hidden] {
  display: none;
}

.form-security-note {
  margin: 1.25rem 0 .55rem;
  color: #6f6258;
  font-size: .84rem;
  line-height: 1.45;
  text-align: center;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  padding: .65rem;
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 18px;
  background: rgba(255, 250, 243, .48);
  overflow: hidden;
}

.cf-turnstile {
  max-width: 100%;
  min-height: 65px;
}

.form-status {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  text-align: center;
}

.form-status:empty {
  display: none;
}

.form-status--success,
.form-status.success,
.form-status.is-success {
  padding: .85rem 1rem;
  border: 1px solid rgba(63, 111, 84, .14);
  border-radius: 16px;
  color: #3f6f54;
  background: rgba(63, 111, 84, .08);
}

.form-status--error,
.form-status.error,
.form-status.is-error {
  padding: .85rem 1rem;
  border: 1px solid rgba(143, 63, 50, .13);
  border-radius: 16px;
  color: #8f3f32;
  background: rgba(143, 63, 50, .07);
}

.contact-form .button {
  width: 100%;
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .72;
}

.site-footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  flex-direction: column;
  align-items: stretch;
  gap: .85rem;
  border-top: 1px solid rgba(85, 62, 49, .10);
  color: rgba(76, 55, 44, .68);
  font-size: .9rem;
}

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

.site-footer strong {
  display: block;
  color: var(--ink);
}

.site-footer a {
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

.footer-cookie-button {
  border: 0;
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-footer a:focus-visible,
.footer-cookie-button:focus-visible {
  outline: 2px solid rgba(143, 86, 70, .45);
  outline-offset: 4px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(620px, calc(100% - 36px));
  border: 1px solid #eadfce;
  border-radius: 16px;
  background: #fffaf3;
  box-shadow: 0 12px 32px rgba(47, 33, 26, .12);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
}

.cookie-banner p {
  margin: 0;
  color: #2f211a;
  font-size: .9rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .18em;
}

.cookie-banner__actions {
  display: flex;
  gap: .6rem;
  align-items: center;
}

.cookie-button {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
}

.cookie-button--primary {
  color: #fffaf3;
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}

.cookie-button--secondary {
  color: #4c372c;
  background: #fffaf3;
  border-color: #d8c8b8;
}

.cookie-button:focus-visible {
  outline: 3px solid rgba(143, 86, 70, .35);
  outline-offset: 3px;
}

.legal-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.legal-document {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 28px;
  background: rgba(255, 250, 243, .82);
}

.legal-document h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
}

.legal-meta,
.legal-lead {
  color: rgba(76, 55, 44, .72);
}

.legal-meta {
  margin-bottom: 1.5rem;
  color: rgba(76, 55, 44, .62);
  font-size: .95rem;
}

.legal-lead {
  max-width: 700px;
}

.legal-toc {
  margin: 2rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(85, 62, 49, .10);
  border-radius: 18px;
  background: rgba(255, 253, 248, .72);
}

.legal-toc p {
  margin-bottom: .45rem;
  color: var(--ink);
  font-weight: 850;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-section {
  padding: .1rem 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.legal-section h3 {
  margin: 1.35rem 0 .5rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.legal-section p,
.legal-section li {
  color: rgba(76, 55, 44, .84);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section ul {
  padding-left: 1.25rem;
}

@media (max-width: 1080px) {
  .problem-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 58% center;
  }

  .value-grid,
  .package-grid,
  .care-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card.recommended {
    transform: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .nav {
    min-height: 72px;
  }

  .site-logo img {
    width: 150px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 72px;
    display: none;
    padding: .9rem;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: .75rem;
  }

  .privacy-page .nav-links {
    position: static;
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .privacy-page .nav-links a {
    padding: .35rem 0;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 4.5rem;
    align-items: center;
    background-position: 70% center;
  }

  .hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(34, 22, 16, .84) 0%,
        rgba(34, 22, 16, .68) 55%,
        rgba(34, 22, 16, .40) 100%
      );
  }

  .hero::after {
    height: 92px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .location-badge {
    border-radius: 18px;
    padding: .72rem .85rem;
    font-size: .92rem;
  }

  .hero-lead {
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero-content {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    min-width: 0;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 24px;
    border-color: rgba(255, 250, 243, .18);
    background: rgba(48, 33, 25, .66);
    box-shadow: 0 18px 58px rgba(0, 0, 0, .2);
    backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }

  .hero h1,
  .hero p {
    max-width: 100%;
  }

  .hero-actions,
  .hero .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: .7rem;
  }

  .hero .button {
    min-height: 52px;
    text-align: center;
    justify-content: center;
  }

  .trust-chips {
    display: none;
  }

  .hero-note {
    max-width: 100%;
    margin-top: .15rem;
    color: rgba(255, 250, 243, .74);
    font-size: .88rem;
    line-height: 1.55;
    white-space: normal;
  }

  .section {
    padding: 4rem 1rem;
  }

  .problem {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .problem-card {
    padding: 2rem 1.25rem;
  }

  .problem-copy h2 {
    margin-bottom: 1.35rem;
    font-size: clamp(2.45rem, 11vw, 4rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .problem-copy p {
    max-width: 100%;
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.75;
    transform: none;
  }

  .problem-list {
    padding: 1rem;
  }

  .package-grid {
    gap: 1.25rem;
  }

  .package-card {
    gap: 1rem;
  }

  .package-fit {
    padding: .85rem;
    font-size: .92rem;
    line-height: 1.55;
  }

  .package-button {
    width: 100%;
  }

  .problem-card,
  .contact {
    border-radius: 26px;
  }

  .about-card {
    padding: 2rem 1.25rem;
    border-radius: 26px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .process-section,
  .proof-section,
  .faq-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .process-steps,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .proof-item,
  .faq-item {
    padding: 1rem;
    border-radius: 20px;
  }

  .proof-card {
    padding: 2rem 1.25rem;
    border-radius: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .button {
    width: 100%;
  }

  .turnstile-wrap {
    padding: .65rem .35rem;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    border-radius: 18px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 14px;
  }

  .cookie-banner__actions {
    align-items: stretch;
  }

  .cookie-button {
    flex: 1 1 0;
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-grid,
  .package-grid,
  .care-grid,
  .why-grid,
  .scope-grid,
  .about,
  .process-steps,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .why-grid article {
    min-height: auto;
  }

  .value-grid span {
    margin-bottom: 1.4rem;
  }

  .site-footer {
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 6.2rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    padding: 1.25rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7.6vw, 2.25rem);
  }

  .problem-copy h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 12vw, 3.4rem);
    line-height: 1.1;
  }

  .cf-turnstile {
    transform: scale(.94);
    transform-origin: center;
  }

  .legal-shell {
    padding: 4.5rem 1rem 3.5rem;
  }

  .legal-document {
    padding: 1.25rem;
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
