/* sarahschetty.ch – Stylesheet
   Quelle: "Sarah Schetty v2.dc.html" (Leitdesign) + README.md aus dem Handoff.
   Alle Tokens in :root. Einziger Breakpoint: 900px. */

/* ---------- Schriften (selbst gehostet, variable WOFF2) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/fraunces.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --linen: #F6F4EE;
  --linen-deep: #EFEBE1;
  --surface: rgba(255, 255, 255, .7);
  --sage: #DDEBDA;
  --olive: #5F7038;
  --ink: #26301F;
  --ink-soft: #3F4A36;          /* Fliesstext auf Sage (Kontrast) */
  --beet: #A02C46;              /* einziger Akzent */
  --beet-hover: #862338;
  --muted: #55604C;
  --line: rgba(38, 48, 31, .08);
  --rule: rgba(38, 48, 31, .16);
  --shadow: 0 10px 40px -12px rgba(38, 48, 31, .18);
  --shadow-lift: 0 18px 50px -14px rgba(38, 48, 31, .26);
  --rc: 20px;
  --rp: 999px;
  --arch: 240px 240px 24px 24px;
  --maxw: 1120px;
  --pad: clamp(4rem, 9vw, 8rem);

  /* Tints auf Olive (Buchungs-Sektion). Gegenüber dem Leitdesign aufgehellt,
     weil die Originalwerte (#C9D6BC, #E4EBDA, #DCE6D2, #B9C9AB) unter AA 4.5:1 lagen.
     Auf der Formularkarte (Olive + 8 % Weiss) genügt nur reines Weiss. */
  --on-olive-eyebrow: #EEF3E6;
  --on-olive-text: #F4F7EE;
  --on-olive-label: #FFFFFF;
  --on-olive-todo: #EEF3E6;

  --font-serif: Fraunces, Georgia, serif;
  --font-sans: Inter, system-ui, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Basis ---------- */
html { scroll-behavior: smooth; }
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
:where(a) { color: var(--olive); text-underline-offset: 3px; }
:where(a):hover { color: var(--beet); }
::selection { background: var(--sage); }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; border-radius: 4px; }
[hidden] { display: none !important; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.page {
  position: relative;
  background: var(--linen);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: clip;             /* clip statt hidden: sticky Header bleibt intakt */
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* Kornfilm – reines Dekor */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22180%22 height=%22180%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.8%22 numOctaves=%224%22/><feColorMatrix type=%22saturate%22 values=%220%22/></filter><rect width=%22180%22 height=%22180%22 filter=%22url(%23n)%22 opacity=%220.22%22/></svg>");
}

/* Lesefortschritt */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 80; background: transparent; }
.progress__bar { height: 100%; width: 0; background: var(--beet); transition: width .12s linear; }

/* Skip-Link */
.skip {
  position: absolute;
  left: 16px;
  top: -72px;
  z-index: 100;
  background: var(--olive);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--rp);
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 16px; }
.skip:hover { color: #fff; }

/* ---------- Wiederkehrende Bausteine ---------- */
.eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}
.h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.eyebrow + .h2 { margin-top: 18px; }
.num {
  font-family: var(--font-serif);
  font-size: .875rem;
  color: var(--beet);
}
.todo {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: var(--pad) 24px; }
section[id] { scroll-margin-top: 88px; }
#top { scroll-margin-top: 96px; }

/* Primärbutton – der einzige Button-Stil */
.btn {
  background: var(--beet);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  border-radius: var(--rp);
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform .3s var(--ease), background-color .3s, box-shadow .3s;
}
.btn:hover { background: var(--beet-hover); color: #fff; transform: translateY(-2px); }
.btn__arrow { font-size: 1.125rem; line-height: 1; }
.btn--header { font-size: .9375rem; padding: 14px 26px; min-height: 48px; }
.btn--header:hover { box-shadow: var(--shadow); }
.btn--hero { padding: 19px 36px; min-height: 56px; gap: 12px; box-shadow: var(--shadow); }
.btn--hero:hover { box-shadow: var(--shadow-lift); }
.btn--card { padding: 16px 28px; min-height: 52px; }
.btn--drawer { margin-top: 28px; padding: 16px 28px; min-height: 52px; justify-content: center; }
.btn--cta {
  font-size: 1.0625rem;
  padding: 21px 42px;
  min-height: 60px;
  gap: 12px;
  box-shadow: 0 14px 40px -16px rgba(0, 0, 0, .55);
}
.btn--submit { justify-self: start; font-size: 1rem; padding: 16px 32px; min-height: 52px; }

/* Sekundärer Textlink */
.textlink {
  color: var(--olive);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(95, 112, 56, .4);
  padding: 6px 2px;
}
.textlink:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo:hover { color: var(--ink); }
.logo svg { flex: 0 0 auto; display: block; }
.logo__word { display: flex; align-items: baseline; gap: 8px; }
.logo__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: -.03em;
}
.logo__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--beet); display: block; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 244, 238, .8);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px);
}
.header__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .logo { margin-right: auto; }
.header__line { height: 1px; background: var(--rule); opacity: 0; transition: opacity .35s; }
.header.is-scrolled .header__line { opacity: 1; }

.nav { display: none; align-items: center; gap: 34px; }
.nav__link {
  color: var(--muted);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 8px 0;
}
.nav__link:hover { color: var(--ink); }

.burger {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--rp);
  cursor: pointer;
}
.burger span { display: block; height: 1.5px; background: var(--ink); }
.burger span:first-child { width: 18px; }
.burger span:last-child { width: 12px; }

/* ---------- Mobile-Drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(38, 48, 31, .35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 380px);
  background: var(--linen);
  box-shadow: var(--shadow-lift);
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  margin-top: -12px;
}
.drawer .logo__name { font-size: 1.125rem; }
.drawer__close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--rule);
  border-radius: var(--rp);
  background: transparent;
  font-size: 1.25rem;
  color: var(--ink);
  cursor: pointer;
}
.drawer__link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}
.drawer__link:hover { color: var(--ink); }

/* ---------- Main ---------- */
main { position: relative; z-index: 2; }

/* Hero */
.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem) 24px clamp(3rem, 7vw, 6rem); }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.hero__text { max-width: 62ch; }
.hero .eyebrow { display: flex; align-items: center; gap: 14px; }
.hero .eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--olive); display: block; }
.hero__title {
  margin-top: 28px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--ink);
  opacity: 1;
  text-wrap: balance;
}
.hero__title em { font-weight: 600; font-style: italic; color: var(--olive); }
.hero__lead { margin-top: 28px; font-size: 1.1875rem; line-height: 1.6; color: var(--muted); max-width: 42ch; }
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 30px; }
.hero__visual { position: relative; }
.hero__drift {
  position: absolute;
  left: -10%;
  bottom: 6%;
  width: min(46%, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sage);
  z-index: 0;
}
.hero__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  will-change: transform;
}
.hero__caption {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .9375rem;
  color: var(--muted);
}
.hero__trust {
  margin: clamp(3rem, 6vw, 4.5rem) 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px 32px;
  font-size: .9375rem;
  color: var(--muted);
}
.hero__trust li { display: flex; align-items: baseline; gap: 12px; }

/* Bildplatzhalter / Bilder */
.frame-fill { width: 100%; height: 100%; display: block; object-fit: cover; }
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  background: rgba(127, 127, 127, .08);
  color: var(--muted);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px dashed currentColor;
  opacity: .35;
  border-radius: inherit;
}
.ph span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; max-width: 26ch; }

/* Über mich */
.about { background: var(--linen-deep); }
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__portrait { position: relative; }
.about__shape {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sage);
  border-radius: 58% 42% 47% 53% / 45% 52% 48% 55%;
}
.about__shape .ph { border-radius: inherit; }
.about__portrait .todo { margin-top: 14px; letter-spacing: .14em; }
.about__text { max-width: 62ch; }
.about__text p.about__body { margin-top: 26px; color: var(--muted); }
.about__quote {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

/* Schwerpunkte */
.focus { max-width: var(--maxw); margin: 0 auto; padding: var(--pad) 24px; }
.focus__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
}
.focus__head p.focus__lead { color: var(--muted); max-width: 46ch; }
.focus__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.focus__item { padding: 40px 32px 40px 0; border-bottom: 1px solid var(--line); }
.focus__item:last-child { padding-right: 0; }
.focus__item .num { letter-spacing: .06em; }
.focus__item h3 {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: -.03em;
}
.focus__item p.focus__text { margin-top: 12px; color: var(--muted); font-size: 1rem; max-width: 34ch; }
.focus__item .todo { margin-top: 16px; opacity: .8; }

/* Angebot */
.offer { background: #fff; }
.offer__head { max-width: 62ch; }
.offer__cards {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  align-items: stretch;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: var(--rc);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.75rem;
  letter-spacing: -.03em;
}
.card__desc { margin-top: 14px; color: var(--muted); font-size: 1rem; }
.card__facts {
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
  font-size: .9375rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.card__facts dt {
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
}
.card__facts dd { margin: 5px 0 0; color: var(--muted); }
.card__cta { margin-top: auto; padding-top: 32px; align-self: flex-start; }
.card--featured {
  background: var(--sage);
  border: 1.5px solid var(--olive);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.card--featured:hover { box-shadow: var(--shadow-lift); }
.card--featured .card__desc,
.card--featured .card__facts dd { color: var(--ink-soft); }
.card--featured .card__facts { border-top-color: rgba(38, 48, 31, .14); }
.card__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--olive);
  color: #fff;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--rp);
}

.diary {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.diary__intro { max-width: 34ch; }
.diary__intro h3 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}
.diary__intro p.diary__text { margin-top: 16px; color: var(--muted); font-size: 1rem; }
.diary__dl { margin-top: 22px; display: grid; justify-items: start; gap: 6px; }
.diary__dl span { color: var(--muted); font-size: .875rem; }
.diary__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; }
.diary__list li { display: flex; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.diary__list li:last-child { border-bottom: 1px solid var(--line); }
.diary__list .num { flex: 0 0 auto; font-weight: 600; width: 20px; }
.diary__list strong { font-weight: 600; }
.diary__list .diary__sub { color: var(--muted); font-size: 1rem; }

/* Ablauf */
.steps { max-width: var(--maxw); margin: 0 auto; padding: var(--pad) 24px; }
.steps__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 32px;
  align-items: end;
}
.steps__head p { color: var(--muted); max-width: 40ch; }
.steps__list {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 32px;
}
.steps__list li { padding-top: 28px; border-top: 2px solid var(--sage); }
.steps__list li:first-child { border-top-color: var(--olive); }
.steps__digit {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--olive);
}
.steps__list h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -.03em;
  margin-top: 20px;
}
.steps__list p.steps__text { margin-top: 10px; color: var(--muted); font-size: 1rem; }

/* Stimmen (standardmässig aus) */
.voices { background: var(--linen-deep); }
.voices .wrap p.voices__note { margin-top: 20px; color: var(--muted); max-width: 62ch; }
.voices__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 24px;
}
.voices__grid blockquote {
  background: var(--linen);
  border: 1px dashed rgba(38, 48, 31, .25);
  border-radius: var(--rc);
  padding: 32px;
  color: var(--muted);
  font-size: .9375rem;
}

/* FAQ */
.faq { max-width: var(--maxw); margin: 0 auto; padding: var(--pad) 24px; }
.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq__side { position: sticky; top: 120px; }
.faq__side p.faq__lead { margin-top: 20px; color: var(--muted); max-width: 40ch; }
.faq__item { border-top: 1px solid var(--rule); }
.faq__end { border-top: 1px solid var(--rule); }
.faq__item h3 { margin: 0; }
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 26px 2px;
  min-height: 56px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: normal;
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .25s;
}
.faq__btn:hover { color: var(--beet); }
.faq__sign {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1;
}
.faq__panel { margin: 0; padding: 0 56px 30px 2px; color: var(--muted); max-width: 62ch; }

/* Buchung */
.book { position: relative; background: var(--olive); color: #fff; overflow: hidden; }
.book__deco {
  position: absolute;
  top: -120px;
  right: -80px;
  width: min(46vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.book__in { position: relative; max-width: 860px; margin: 0 auto; padding: var(--pad) 24px; }
.book .eyebrow { color: var(--on-olive-eyebrow); }
.book__title {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
  max-width: 24ch;
}
.book__lead { margin-top: 22px; color: var(--on-olive-text); max-width: 48ch; }
.book__actions { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; }
.book__mail {
  color: #fff;
  font-size: .9375rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  padding: 4px 2px;
}
.book__mail:hover { color: #fff; border-bottom-color: #fff; }
.book .todo { color: var(--on-olive-todo); }
.book__todo { margin-top: 20px; letter-spacing: .12em; }
.book :focus-visible { outline-color: #fff; }

.formcard {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--rc);
  padding: clamp(24px, 4vw, 44px);
}
.form { display: grid; gap: 22px; }
.form__title { font-family: var(--font-serif); font-size: 1.375rem; letter-spacing: -.02em; color: #fff; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 22px; }
.form__field { display: grid; gap: 8px; }
.form__field label {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-olive-label);
}
.form__field input,
.form__field textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
}
.form__field input { min-height: 52px; }
.form__field textarea { resize: vertical; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { color: #fff; font-size: .9375rem; }
.form__status:empty { display: none; }
.formcard .todo { color: #fff; }
.sent { display: grid; gap: 12px; justify-items: start; }
.sent__title { font-family: var(--font-serif); font-style: italic; font-size: 1.625rem; letter-spacing: -.02em; color: #fff; }
.sent p:last-child { color: #fff; }

/* Footer */
.footer { position: relative; z-index: 2; background: var(--linen); }
.footer__in { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) 24px 104px; }
.footer__mark::before { content: "Sarah Schetty"; }
.footer__mark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: .95;
  letter-spacing: -.05em;
  color: var(--ink);
  opacity: .14;
}
.footer__grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 28px;
  align-items: start;
  font-size: .9375rem;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand span { font-weight: 600; }
.footer__grid p.footer__sub { margin-top: 8px; color: var(--muted); }
.footer__contact { display: grid; gap: 6px; color: var(--muted); }
.footer__legal { display: grid; gap: 8px; }
.footer__legal a { color: var(--muted); text-decoration: none; }
.footer__legal a:hover { color: var(--ink); }
.footer__made { font-family: var(--font-serif); font-style: italic; color: var(--olive); }

/* Mobile-Sticky-Bar */
.mbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 65;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(246, 244, 238, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--rule);
}
.mbar .btn { display: flex; justify-content: center; min-height: 52px; width: 100%; }
.mbar .btn:hover { transform: none; }

/* ---------- Breakpoint 900px ---------- */
@media (min-width: 900px) {
  .nav { display: flex; }
  .burger { display: none; }
}
@media (max-width: 899.98px) {
  .mbar.is-visible { display: block; }
}
