/* ============================================================
   Alexandra Seyfferle – Nagelstudio & med. Fußpflege
   Premium-Stylesheet · Mobile First · DSGVO-konform (lokale Fonts)
   Palette: Porzellan + Plum-Ink, Altrosa × Eukalyptus-Salbei, zarter Goldakzent
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg: #FBF7F4;
  --surface: #FFFFFF;
  --surface-2: #F4ECE5;
  --ink: #2A2126;
  --ink-2: #6A5E64;
  --wine: #6E3046;
  --wine-700: #5A2639;
  --rose: #B6727E;
  --rose-tint: #F6E7E6;
  --sage: #5E6F58;
  --sage-deep: #44513F;
  --sage-tint: #E7ECE2;
  --gold: #B08A5A;
  --line: #EADFD7;
  --line-soft: #F1E8E1;

  /* Typo */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  /* Maße */
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 5vw, 2.5rem);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(42, 33, 38, 0.05);
  --shadow: 0 14px 40px -18px rgba(42, 33, 38, 0.22);
  --shadow-lg: 0 34px 70px -28px rgba(42, 33, 38, 0.30);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 74px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--wine); text-decoration-color: color-mix(in srgb, var(--wine) 35%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }

::selection { background: var(--rose-tint); color: var(--wine-700); }

:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--wine); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(3.6rem, 9vw, 7rem); }

.section__head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section__head.reveal { }
.section__title { font-size: clamp(1.85rem, 5.2vw, 3rem); }
.section__intro { margin-top: 0.9rem; color: var(--ink-2); font-size: 1.075rem; max-width: 40rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--wine);
  margin-bottom: 0.85rem;
}
.eyebrow__line { width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow--center { }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--wine);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.97rem; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  min-height: 48px;
  transition: transform 0.22s var(--ease), background-color 0.22s var(--ease),
              box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; }
.btn--primary { background: var(--btn-bg); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--wine-700); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; min-height: 54px; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header[data-scrolled] { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; flex: none;
  background: var(--wine); color: var(--bg); border-radius: 13px;
  font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.brand__sub { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }

.nav { display: none; }
.header__actions { display: flex; align-items: center; gap: 0.7rem; }
.header__cta { display: none; }

.status-pill {
  display: none; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 600; color: var(--sage-deep);
  background: var(--sage-tint); padding: 0.4rem 0.75rem; border-radius: 999px;
}
.status-pill[data-open="false"] { color: var(--ink-2); background: var(--surface-2); }
.status-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 color-mix(in srgb, var(--sage) 60%, transparent); }
.status-pill[data-open="true"] .status-pill__dot { animation: pulse 2.4s var(--ease) infinite; }
.status-pill[data-open="false"] .status-pill__dot { background: var(--ink-2); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--sage) 55%, transparent); } 70% { box-shadow: 0 0 0 8px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 0 12px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 13px; cursor: pointer;
}
.burger span { display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-scrim { position: fixed; inset: 0; background: rgba(42, 33, 38, 0.5); z-index: 90; opacity: 0; transition: opacity 0.3s var(--ease); }
.nav-scrim.is-visible { opacity: 1; }

@media (max-width: 899px) {
  .nav {
    position: fixed; top: 0; right: 0; z-index: 95;
    height: 100dvh; width: min(86vw, 360px);
    background: var(--surface); box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; justify-content: flex-start; gap: 0.5rem;
    padding: calc(var(--header-h) + 1.4rem) 1.6rem 2rem;
    transform: translateX(100%); transition: transform 0.36s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.2rem; }
  .nav__list a {
    display: block; padding: 0.95rem 0.6rem; font-weight: 600; font-size: 1.1rem;
    color: var(--ink); text-decoration: none; border-radius: 12px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__list a:hover, .nav__list a:focus-visible { background: var(--rose-tint); color: var(--wine); }
  .nav__cta { margin-top: 1.2rem; }
  .nav__cta .btn { width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: clamp(2rem, 6vw, 4rem) clamp(2.5rem, 7vw, 5rem); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 70%;
  background: radial-gradient(120% 90% at 80% 0%, var(--rose-tint) 0%, transparent 55%),
              radial-gradient(90% 80% at 0% 20%, var(--sage-tint) 0%, transparent 50%);
  z-index: -1; opacity: 0.8;
}
.hero__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }

.hero__title { font-size: clamp(2.4rem, 9vw, 4.3rem); font-weight: 600; margin-block: 0.4rem 1.1rem; }
.hero__title em { font-style: italic; color: var(--wine); font-weight: 500; }
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.22rem); color: var(--ink-2); max-width: 34rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }

.hero__trust { list-style: none; padding: 0; margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.hero__trust .icon { width: 26px; height: 26px; flex: none; padding: 5px; border-radius: 8px; background: var(--wine); fill: #fff; }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero__img {
  width: 100%; height: auto; border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  filter: drop-shadow(var(--shadow-lg));
}
.hero__badge {
  position: absolute; right: -6px; bottom: 18px;
  background: var(--surface); border-radius: var(--radius); padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow); display: grid; gap: 0.1rem; text-align: center;
  border: 1px solid var(--line);
}
.hero__badge-num { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--wine); line-height: 1; }
.hero__badge-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.8rem; }
.hero__badge-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-2); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { border-block: 1px solid var(--line); background: var(--surface); }
.trustbar__inner { display: grid; grid-template-columns: 1fr; gap: 1.2rem; padding-block: 1.8rem; }
.trustbar__item { display: flex; align-items: center; gap: 0.85rem; }
.trustbar__item .icon { width: 42px; height: 42px; flex: none; padding: 9px; border-radius: 12px; background: var(--sage-tint); fill: var(--sage-deep); }
.trustbar__item strong { display: block; font-size: 0.97rem; color: var(--ink); }
.trustbar__item span { font-size: 0.86rem; color: var(--ink-2); }

/* ============================================================
   SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem;
  box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--rose) 40%, var(--line)); }
.card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: var(--rose-tint); color: var(--wine); margin-bottom: 1.1rem; }
.card__icon svg { width: 30px; height: 30px; }
.card__title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-2); font-size: 0.97rem; }
.card--feature { background: linear-gradient(165deg, var(--sage-tint), var(--surface)); border-color: color-mix(in srgb, var(--sage) 35%, var(--line)); }
.card--feature .card__icon { background: var(--sage); color: #fff; }
.card__badge {
  position: absolute; top: 1.4rem; right: 1.4rem; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-deep);
  background: var(--surface); border: 1px solid color-mix(in srgb, var(--sage) 40%, var(--line));
  padding: 0.3rem 0.65rem; border-radius: 999px;
}
.services__note { margin-top: 2rem; color: var(--ink-2); font-size: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about__media { position: relative; max-width: 460px; justify-self: center; width: 100%; }
.framed { width: 100%; border-radius: var(--radius-xl); border: 1px solid var(--line); box-shadow: var(--shadow); }
.framed--wide { border-radius: var(--radius-lg); }
.about__media .framed { border-radius: 180px 180px var(--radius-lg) var(--radius-lg); }
.about__chip {
  position: absolute; left: 50%; bottom: -18px; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0.75rem 1.2rem; text-align: center; width: max-content; max-width: 92%;
}
.about__chip strong { display: block; font-family: var(--font-display); color: var(--wine); font-size: 1.05rem; }
.about__chip span { font-size: 0.78rem; color: var(--ink-2); }
.about__copy p { color: var(--ink-2); margin-top: 1rem; }
.about__copy .btn { margin-top: 1.7rem; }

.checklist { list-style: none; padding: 0; margin-top: 1.4rem; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  background: var(--sage-tint); border-radius: 50%;
}
.checklist li::after {
  content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 4px;
  border-left: 2px solid var(--sage-deep); border-bottom: 2px solid var(--sage-deep);
  transform: rotate(-45deg);
}

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--surface); border-block: 1px solid var(--line); }
.why .section__head { margin-inline: auto; text-align: center; }
.why .eyebrow { justify-content: center; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.why__item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why__num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--rose); display: block; margin-bottom: 0.5rem; }
.why__item h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.why__item p { color: var(--ink-2); font-size: 0.95rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 1.4rem; counter-reset: step; }
.steps__item { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem 1.7rem; box-shadow: var(--shadow-sm); }
.steps__num {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--wine); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 1rem; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--wine) 70%, transparent);
}
.steps__item h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.steps__item p { color: var(--ink-2); font-size: 0.96rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: linear-gradient(180deg, var(--bg), var(--rose-tint)); }
.reviews .section__head { text-align: center; margin-inline: auto; }
.reviews .eyebrow { justify-content: center; }
.rating-line { margin-top: 1rem; color: var(--ink-2); font-size: 1.02rem; }
.rating-line strong { color: var(--ink); font-size: 1.2rem; }
.rating-line__stars { color: var(--gold); letter-spacing: 2px; margin-right: 0.4rem; }
.quotes { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; }
.quote blockquote { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote figcaption { margin-top: 1rem; font-size: 0.85rem; font-weight: 600; color: var(--wine); }
.reviews__note { text-align: center; margin-top: 1.6rem; color: var(--ink-2); font-size: 0.86rem; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion { display: grid; gap: 0.8rem; max-width: 50rem; }
.accordion__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  padding: 1.15rem 1.3rem; min-height: 56px;
}
.accordion__trigger:hover { color: var(--wine); }
.accordion__chevron { width: 22px; height: 22px; flex: none; color: var(--wine); transition: transform 0.3s var(--ease); }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.34s var(--ease); }
.accordion__panel p { padding: 0 1.3rem 1.25rem; color: var(--ink-2); }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--surface); border-top: 1px solid var(--line); }
.location__inner { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.location__map { position: relative; }
.location__route { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); box-shadow: var(--shadow); }
.info-list { list-style: none; padding: 0; display: grid; gap: 1.3rem; margin-top: 0.5rem; }
.info-list li { display: flex; gap: 1rem; }
.info-list .icon { width: 44px; height: 44px; flex: none; padding: 10px; border-radius: 12px; background: var(--rose-tint); color: var(--wine); }
.info-list strong { display: block; font-size: 1.02rem; }
.info-list span { color: var(--ink-2); font-size: 0.96rem; }
.info-list a { font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--bg), var(--sage-tint)); }
.contact__inner { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: start; }
.contact__intro p { color: var(--ink-2); margin-top: 0.9rem; }
.contact__direct { display: grid; gap: 0.7rem; margin-top: 1.6rem; }
.contact__direct-item { display: flex; align-items: center; gap: 0.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1.1rem; text-decoration: none; color: var(--ink); font-weight: 600; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.contact__direct-item:hover { border-color: var(--wine); transform: translateX(3px); }
.contact__direct-item .icon { width: 38px; height: 38px; flex: none; padding: 9px; border-radius: 10px; background: var(--wine); fill: #fff; }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem); box-shadow: var(--shadow); }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.05rem; }
.field-row { display: grid; gap: 1.05rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field__opt { font-weight: 400; color: var(--ink-2); }
.req { color: var(--rose); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0.85rem 0.95rem; min-height: 48px; width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wine); background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--wine) 14%, transparent);
}
.field[data-invalid] input, .field[data-invalid] select, .field[data-invalid] textarea { border-color: #C0392B; }
.field__error { color: #C0392B; font-size: 0.82rem; min-height: 1em; }

.field--check { margin-top: 0.4rem; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; cursor: pointer; font-weight: 400; }
.checkbox input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.checkbox__box {
  width: 26px; height: 26px; flex: none; border: 1.5px solid var(--line); border-radius: 8px;
  background: var(--bg); display: grid; place-items: center; color: #fff;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.checkbox__box svg { width: 18px; height: 18px; opacity: 0; transform: scale(0.6); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.checkbox input:checked + .checkbox__box { background: var(--wine); border-color: var(--wine); }
.checkbox input:checked + .checkbox__box svg { opacity: 1; transform: scale(1); }
.checkbox input:focus-visible + .checkbox__box { outline: 3px solid var(--wine); outline-offset: 3px; }
.checkbox__text { font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; }
.checkbox__text a { font-weight: 600; }

.form__status { margin-top: 1rem; font-weight: 600; font-size: 0.95rem; min-height: 1.2em; }
.form__status[data-state="success"] { color: var(--sage-deep); }
.form__status[data-state="error"] { color: #C0392B; }
.form__hint { margin-top: 0.8rem; font-size: 0.8rem; color: var(--ink-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: color-mix(in srgb, #fff 78%, var(--ink)); }
.footer__inner { display: grid; gap: 1.8rem; padding-block: clamp(2.4rem, 6vw, 3.4rem); }
.footer__brand { display: flex; gap: 0.9rem; align-items: center; }
.footer__brand .brand__mark { background: var(--rose); color: var(--ink); }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.footer__brand span { display: block; font-size: 0.86rem; color: color-mix(in srgb, #fff 62%, var(--ink)); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer__nav a { color: color-mix(in srgb, #fff 80%, var(--ink)); text-decoration: none; font-size: 0.95rem; padding-block: 0.3rem; }
.footer__nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer__bottom { border-top: 1px solid color-mix(in srgb, #fff 14%, var(--ink)); }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; text-align: center; padding-block: 1.4rem; }
.footer__copy { font-size: 0.84rem; color: color-mix(in srgb, #fff 58%, var(--ink)); }
.footer__powered { font-size: 0.9rem; color: color-mix(in srgb, #fff 62%, var(--ink)); }
.wowobot { color: #22b8e0; font-weight: 700; text-decoration: none; letter-spacing: 0.01em; }
.wowobot:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   TO TOP
   ============================================================ */
.to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 80;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--wine); color: #fff; border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.2s var(--ease);
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--wine-700); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 560px) {
  .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  :root { --header-h: 84px; }
  .nav { display: flex; align-items: center; gap: 1.6rem; }
  .nav__list { list-style: none; display: flex; gap: 0.4rem; padding: 0; }
  .nav__list a { display: inline-block; padding: 0.5rem 0.85rem; font-weight: 500; font-size: 0.96rem; color: var(--ink); text-decoration: none; border-radius: 10px; transition: color 0.2s var(--ease), background-color 0.2s var(--ease); }
  .nav__list a:hover { color: var(--wine); background: var(--rose-tint); }
  .nav__cta { display: none; }
  .header__cta { display: inline-flex; }
  .status-pill { display: inline-flex; }
  .burger { display: none; }

  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero__media { max-width: none; }
  .trustbar__inner { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 0.9fr 1.1fr; }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps__item::after {
    content: ""; position: absolute; top: 46px; right: -1.1rem; width: 1.4rem; height: 2px;
    background: var(--line);
  }
  .steps__item:last-child::after { display: none; }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .location__inner { grid-template-columns: 1.2fr 0.8fr; }
  .contact__inner { grid-template-columns: 0.9fr 1.1fr; }

  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer__nav { justify-content: flex-end; }
  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1100px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
