/* =============================================================
   Friseurmeisterin Katharina Klimburg
   ============================================================= */

/* --- Local fonts ---------------------------------------------- */
@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Young Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/young-serif-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Design tokens -------------------------------------------- */
:root {
  /* Color */
  --c-bg:            oklch(96.5% 0.008 70);
  --c-bg-elevated:   oklch(98.5% 0.005 70);
  --c-surface:       oklch(89% 0.022 65);
  --c-surface-deep:  oklch(78% 0.028 60);
  --c-ink:           oklch(22% 0.012 60);
  --c-ink-muted:     oklch(40% 0.014 60);
  --c-line:          oklch(82% 0.015 65);
  --c-line-soft:     oklch(88% 0.012 65);
  --c-accent:        oklch(45% 0.11 30);
  --c-accent-hover:  oklch(38% 0.12 30);
  --c-accent-soft:   oklch(92% 0.025 30);

  /* Typography */
  --ff-display: "Young Serif", "Hoefler Text", Georgia, "Times New Roman", serif;
  --ff-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --fs-xs:    0.8125rem;
  --fs-sm:    0.9375rem;
  --fs-base:  1.0625rem;
  --fs-lg:    1.1875rem;
  --fs-xl:    clamp(1.5rem, 2.4vw, 2rem);
  --fs-2xl:   clamp(2rem, 3.8vw, 3rem);
  --fs-3xl:   clamp(2.75rem, 7vw, 5.5rem);

  --lh-tight: 1.05;
  --lh-snug:  1.2;
  --lh-base:  1.55;
  --lh-loose: 1.7;

  /* Spacing */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: clamp(4rem, 9vw, 7rem);
  --space-3xl: clamp(6rem, 14vw, 11rem);

  --container:        72rem;
  --container-narrow: 48rem;
  --gutter:           clamp(1.25rem, 4vw, 2.5rem);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-soft: 0 2px 8px -2px oklch(22% 0.012 60 / 0.08),
                 0 8px 24px -8px oklch(22% 0.012 60 / 0.12);
  --shadow-lift: 0 4px 12px -3px oklch(22% 0.012 60 / 0.14),
                 0 16px 40px -10px oklch(22% 0.012 60 / 0.20);

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 640ms;
}

/* --- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: 5rem;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- Typography ---------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: -0.012em;
  color: var(--c-ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); line-height: var(--lh-tight); letter-spacing: -0.025em; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
p  { max-width: 65ch; text-wrap: pretty; }

.kicker {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-ink-muted);
}

.lead { font-size: var(--fs-lg); line-height: var(--lh-base); color: var(--c-ink-muted); max-width: 56ch; }

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

section { padding-block: var(--space-2xl); position: relative; }
section.has-surface { background: var(--c-bg-elevated); }

.stack > * + * { margin-block-start: var(--space-sm); }
.stack-md > * + * { margin-block-start: var(--space-md); }
.stack-lg > * + * { margin-block-start: var(--space-lg); }

.hairline { border: 0; height: 1px; background: var(--c-line); margin-block: var(--space-2xl); }

/* --- Top bar -------------------------------------------------- */
.topbar {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  padding-block: var(--space-xs);
  background: oklch(96.5% 0.008 70 / 0.92);
  border-block-end: 1px solid oklch(82% 0.015 65 / 0.55);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); }
.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  min-block-size: 44px;
  text-decoration: none; color: var(--c-ink);
}
.brand-tool {
  flex: 0 0 auto;
  width: auto;
  object-fit: contain;
}
.brand-scissors { height: 22px; }
.brand-comb { height: 14px; }
.brand-text {
  font-family: var(--ff-body);
  display: flex; flex-direction: column; gap: 0.05em;
  line-height: 1;
  min-width: max-content;
}
.brand-text small {
  font-size: 0.57rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  font-weight: 600;
}
.brand-text strong {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 0.83rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .brand { gap: 0.4rem; }
  .brand-scissors { height: 18px; }
  .brand-comb { height: 11px; }
  .brand-text small { font-size: 0.5rem; letter-spacing: 0.22em; }
  .brand-text strong { font-size: 0.72rem; letter-spacing: 0.14em; }
}
@media (max-width: 360px) {
  .brand-scissors { height: 16px; }
  .brand-comb { height: 9px; }
  .brand-text small { font-size: 0.45rem; letter-spacing: 0.18em; }
  .brand-text strong { font-size: 0.64rem; letter-spacing: 0.1em; }
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-md);
  margin-inline-start: auto;
}
.topbar nav { display: none; }
@media (min-width: 1040px) {
  .topbar nav {
    display: flex; gap: var(--space-md); align-items: center;
    font-size: var(--fs-sm);
  }
  .topbar nav a {
    display: inline-flex;
    align-items: center;
    min-block-size: 44px;
    text-decoration: none;
    color: var(--c-ink);
    padding-block: 0.4rem;
    border-block-end: 1px solid transparent;
    transition: border-color var(--dur-fast) var(--ease-out-quart);
  }
  .topbar nav a:hover { border-block-end-color: var(--c-accent); }
}
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-block-size: 44px;
  padding: 0.65rem 1rem;
  border-radius: var(--r-pill);
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out-quart),
              transform var(--dur-fast) var(--ease-out-quart);
}
.header-cta:hover { background: var(--c-accent); }
.header-cta:active { transform: translateY(1px); }

@media (max-width: 620px) {
  .topbar-actions { gap: var(--space-sm); }
  .header-cta {
    inline-size: 44px;
    padding-inline: 0;
  }
  .header-cta-label { display: none; }
}

/* --- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  min-block-size: 44px;
  padding: 0.9rem 1.6rem;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease-out-quart),
              color    var(--dur-fast) var(--ease-out-quart),
              border-color var(--dur-fast) var(--ease-out-quart),
              transform var(--dur-fast) var(--ease-out-quart);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.btn-primary:hover { background: var(--c-accent); }

.btn-secondary {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
}
.btn-secondary:hover { background: var(--c-ink); color: var(--c-bg); }

.btn-accent {
  background: var(--c-accent);
  color: var(--c-bg);
}
.btn-accent:hover { background: var(--c-accent-hover); }

.btn-icon { width: 1.05em; height: 1.05em; }

/* --- Hero ---------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 7rem) var(--space-3xl);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.hero-text { display: flex; flex-direction: column; gap: var(--space-md); }
.hero-headline { font-size: var(--fs-3xl); line-height: var(--lh-tight); letter-spacing: -0.025em; }
.hero-headline em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 400;
}
.hero-meta {
  display: flex; flex-wrap: nowrap; align-items: center; gap: var(--space-sm);
  color: var(--c-ink-muted);
  font-size: clamp(0.78rem, 1.1vw, var(--fs-sm));
  white-space: nowrap;
}
.hero-meta span:not(.dot) { min-width: 0; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-ink-muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }

@media (max-width: 899px) {
  .hero-meta {
    display: grid;
    gap: 0.45rem;
    flex-wrap: initial;
    white-space: normal;
    font-size: var(--fs-sm);
  }
  .hero-meta .dot { display: none; }
}

.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-lift);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, oklch(22% 0.012 60 / 0.18) 100%);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  inset-block-end: var(--space-md);
  inset-inline-start: var(--space-md);
  inset-inline-end: var(--space-md);
  color: var(--c-bg);
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.6rem;
}
.hero-tag::before {
  content: ""; flex: 1; height: 1px; background: oklch(98% 0.005 70 / 0.4);
}

/* --- Section header pattern ---------------------------------- */
.section-head { display: flex; flex-direction: column; gap: var(--space-xs); margin-block-end: var(--space-xl); max-width: 56ch; }

/* --- About ---------------------------------------------------- */
.about {
  background: var(--c-surface);
}
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.about-photo {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: visible;
}
.about-photo > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  border-radius: var(--r-md);
}
.about-photo .meister-badge {
  position: absolute;
  inset-block-end: 18px;
  inset-inline-end: 18px;
  width: clamp(96px, 20%, 150px);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.about-photo .meister-badge img {
  object-fit: contain; object-position: center; width: 100%; height: 100%;
}
.about-text h2 { margin-block: var(--space-sm) var(--space-md); }
.about-text p { font-size: var(--fs-lg); line-height: var(--lh-base); color: var(--c-ink); }
.about-text p + p { margin-block-start: var(--space-md); }
.about-signature {
  margin-block-start: var(--space-lg);
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--c-ink);
}

/* --- Services ------------------------------------------------- */
.services .section-head { margin-block-end: var(--space-2xl); }
.services-kicker {
  display: block;
  margin-block-end: var(--space-sm);
  color: var(--c-accent);
}

/* Speisekarten-Style Preisliste */
.menu {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-block-start: 1px solid var(--c-line);
}
.menu li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-sm);
  padding-block: var(--space-md);
  border-block-end: 1px solid var(--c-line-soft);
  font-size: var(--fs-lg);
}
.menu li .item {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.menu li .price {
  font-family: var(--ff-body);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--c-ink);
}
.menu li .note {
  grid-column: 1 / -1;
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  margin-block-start: 0.25rem;
}

.menu-foot {
  margin-block-start: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
}

/* Service blocks (Premium-Treatments) */
.treatments {
  margin-block-start: var(--space-xl);
  display: flex; flex-direction: column;
  border-block-start: 1px solid var(--c-line);
}
.treatment {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: 1fr;
  padding-block: var(--space-lg);
  border-block-end: 1px solid var(--c-line);
  align-items: start;
}
.treatment:last-child { border-block-end: 0; }
@media (min-width: 760px) {
  .treatment { grid-template-columns: 13rem 1fr auto; align-items: start; }
}
.treatment-aside { display: flex; flex-direction: column; gap: var(--space-sm); }
.treatment-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  max-width: 13rem;
}
.treatment-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.treatment-photo--wide { aspect-ratio: 16 / 9; }
.treatment-photo--slider {
  aspect-ratio: auto;
  position: relative;
  overflow: visible;
  background: transparent;
}
.trijuven-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-bg-elevated);
}
.trijuven-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.trijuven-slider img {
  object-fit: contain;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out-quart);
}
.trijuven-slider img.is-active { opacity: 1; }
.slider-dots {
  position: static;
  margin-block-start: var(--space-2xs);
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}
.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-line);
  box-shadow: 0 0 0 1px oklch(22% 0.012 60 / 0.16);
}
.slider-dots span.is-active { background: var(--c-ink); }
.treatment-number {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--c-accent);
  line-height: 1;
}
.treatment-body { display: flex; flex-direction: column; gap: var(--space-xs); }
.treatment h3 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
.treatment-meta {
  font-size: var(--fs-sm);
  color: var(--c-ink-muted);
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
}
.treatment-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--c-ink-muted); align-self: center; }
.treatment-price {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--c-ink);
}
.treatment-price small {
  display: block;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-block-end: 0.3rem;
}

/* Beauty add-ons (smaller, two-up) */
.addons {
  margin-block-start: var(--space-xl);
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .addons { grid-template-columns: 1fr 1fr; }
}
.addon {
  background: var(--c-bg-elevated);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.addon-photo {
  aspect-ratio: 16 / 9;
  background: var(--c-surface);
  overflow: hidden;
}
.addon-photo img { width: 100%; height: 100%; object-fit: cover; }
.addon-photo--panorama {
  aspect-ratio: 885 / 250;
  background: var(--c-bg-elevated);
}
.addon-photo--panorama img { object-fit: contain; }
.addon-photo--hair {
  aspect-ratio: 650 / 289;
  background: var(--c-bg-elevated);
}
.addon-photo--hair img { object-fit: contain; }
.addon-content {
  padding: var(--space-lg);
  display: flex; flex-direction: column; gap: var(--space-xs);
  flex: 1;
}
.addon h4 { font-family: var(--ff-display); font-weight: 400; font-size: var(--fs-xl); line-height: var(--lh-snug); }
.addon p { font-size: var(--fs-sm); color: var(--c-ink-muted); }
.addon-price {
  margin-block-start: auto;
  padding-block-start: var(--space-sm);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* --- Salon gallery ------------------------------------------- */
.salon { background: var(--c-surface); }
.salon-grid {
  display: grid; gap: var(--space-sm);
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(140px, auto);
}
.salon-grid .a, .salon-grid .b, .salon-grid .c {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  background: var(--c-surface-deep);
}
.salon-grid .a {
  grid-column: 1 / -1;
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
.salon-grid .b, .salon-grid .c {
  grid-column: span 6;
  aspect-ratio: 16 / 10;
}
@media (min-width: 760px) {
  .salon-grid .a { grid-column: 1 / 4; grid-row: 1 / 3; aspect-ratio: auto; height: 100%; min-height: 480px; }
  .salon-grid .b { grid-column: 4 / 7; grid-row: 1 / 2; aspect-ratio: 16 / 9; }
  .salon-grid .c {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
    align-self: end;
    aspect-ratio: 16 / 9;
  }
}
.salon-grid img { width: 100%; height: 100%; object-fit: cover; }

.salon-caption { margin-block-start: var(--space-lg); max-width: none; color: var(--c-ink-muted); font-size: var(--fs-lg); }
.salon-caption strong { color: var(--c-ink); font-weight: 500; }

/* --- Policy --------------------------------------------------- */
.policy { padding-block: var(--space-2xl); }
.policy-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .policy-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.policy h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.policy-body p { font-size: var(--fs-lg); }
.policy-body p + p { margin-block-start: var(--space-sm); }

/* --- Contact -------------------------------------------------- */
.contact { background: var(--c-ink); color: var(--c-bg); padding-block: var(--space-2xl); }
.contact * { color: inherit; }
.contact .kicker { color: oklch(78% 0.012 60); }
.contact h2 { color: var(--c-bg); }
.contact-heading { margin-block: var(--space-xs) var(--space-xl); }
.contact-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
.contact-info dl { display: grid; grid-template-columns: 7rem 1fr; gap: 0.85rem var(--space-md); }
.contact-info dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(75% 0.012 60);
  padding-block-start: 0.25rem;
}
.contact-info dd { font-size: var(--fs-lg); font-family: var(--ff-display); font-weight: 400; }
.contact-info dd a { text-decoration: none; border-block-end: 1px solid transparent; }
.contact-info dd a:hover { border-block-end-color: var(--c-bg); }
.contact-hours {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
}
.contact-hours span {
  color: oklch(72% 0.012 60);
  font-size: var(--fs-sm);
}

.contact-cta {
  margin-block-start: var(--space-xl);
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
}
.contact .btn-primary { background: var(--c-bg); color: var(--c-ink); }
.contact .btn-primary:hover { background: var(--c-accent); color: var(--c-bg); }
.contact .btn-secondary { color: var(--c-bg); border-color: var(--c-bg); }
.contact .btn-secondary:hover { background: var(--c-bg); color: var(--c-ink); }

.contact-map {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: oklch(35% 0.012 60);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map .cookie-gate {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: var(--space-lg);
  background: oklch(28% 0.014 60);
  text-align: center;
  gap: var(--space-md);
}
.contact-map .cookie-gate p { max-width: 32ch; margin-inline: auto; color: oklch(82% 0.012 60); font-size: var(--fs-sm); }
.contact-map .cookie-gate .btn { background: var(--c-bg); color: var(--c-ink); }
.contact-map .cookie-gate .btn:hover { background: var(--c-accent); color: var(--c-bg); }

/* --- Footer --------------------------------------------------- */
.footer {
  padding-block: var(--space-xl);
  border-block-start: 1px solid oklch(35% 0.014 60);
  background: var(--c-ink);
  color: oklch(72% 0.012 60);
  font-size: var(--fs-sm);
}
.footer a { color: oklch(85% 0.012 60); text-decoration: none; }
.footer a:hover { color: var(--c-bg); }
.footer-brand {
  color: var(--c-bg);
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--fs-lg);
}
.footer-grid {
  display: grid;
  gap: var(--space-md) var(--space-xl);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1fr auto auto; align-items: center; }
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: var(--space-md);
}
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(40% 0.014 60);
  transition: border-color var(--dur-fast) var(--ease-out-quart),
              background var(--dur-fast) var(--ease-out-quart);
}
.footer-social a:hover { border-color: var(--c-bg); background: oklch(30% 0.014 60); }
.footer-social svg { width: 16px; height: 16px; }

/* --- Hero entrance (CSS-only, on load) ---------------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text, .hero-photo {
  animation: fade-up 900ms var(--ease-out-quint) both;
}
.hero-photo { animation-delay: 120ms; }
.js .hero-text,
.js .hero-photo { animation: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out-quint),
              transform var(--dur-slow) var(--ease-out-quint);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* --- Doc pages (Impressum / Datenschutz) -------------------- */
.doc-page { padding-block: var(--space-2xl) var(--space-3xl); }
.doc-page h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-block-end: var(--space-lg); }
.doc-page h2 { font-size: var(--fs-xl); margin-block: var(--space-xl) var(--space-sm); }
.doc-page p, .doc-page li { font-size: var(--fs-base); line-height: var(--lh-base); }
.doc-page p + p { margin-block-start: var(--space-sm); }
.doc-page ul { padding-inline-start: 1.25rem; }
.doc-page a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.doc-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--c-ink-muted);
  margin-block-end: var(--space-lg);
}
.doc-back:hover { color: var(--c-ink); }
