/* ==========================================================================
   FINE LINE — Permanent Make-up Studio Priska Lanthaler
   Design system: Off-White / Light Grey / Dusty Pink / Anthracite
   Typography: Beau Rivage (signature script) + Cormorant Garamond (serif)
   + Jost (sans)
   ========================================================================== */

@font-face {
  font-family: "Beau Rivage";
  src: url("../assets/fonts/beau-rivage.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --off-white: #faf7f4;
  --white: #ffffff;
  --grey-50: #f4f1ee;
  --grey-100: #e9e4e0;
  --grey-300: #cfc7c0;
  --grey-500: #a89f97;
  --grey-700: #6b625b;
  --pink-50: #f7ece8;
  --pink-100: #eeded9;
  --pink-300: #dcb9b0;
  --pink-500: #c69a8e;
  --pink-700: #a97a6c;
  --ink: #211d1a;
  --ink-soft: #322c28;
  --charcoal: #1c1815;

  --font-script: "Beau Rivage", cursive;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Jost", sans-serif;

  --container: 1240px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--pink-700);
  font-weight: 500;
}

.signature {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.serif {
  font-family: var(--font-serif);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-mask {
  position: relative;
  overflow: hidden;
}

.reveal-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--off-white);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.05s var(--ease);
  z-index: 2;
}

.reveal-mask.is-visible::after {
  transform: scaleX(0);
}

.reveal-mask img,
.reveal-mask .frame-fill {
  transform: scale(1.16);
  transition: transform 1.3s var(--ease);
}

.reveal-mask.is-visible img,
.reveal-mask.is-visible .frame-fill {
  transform: scale(1);
}

.reveal-line path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.8s var(--ease);
}

.reveal-line.is-visible path {
  stroke-dashoffset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale,
  .reveal-mask::after,
  .reveal-mask img,
  .reveal-mask .frame-fill,
  .reveal-line path {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 244, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(33, 29, 26, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--ink);
  line-height: 1;
  z-index: 110;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2.4vw, 2.6rem);
  }
}

.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--pink-700);
  transition: width 0.4s var(--ease);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--ink);
  padding: 0.55rem 1.3rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--off-white);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  z-index: 110;
}

@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--off-white);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ink);
}

.mobile-menu .nav-cta {
  margin-top: 1rem;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 7.5rem var(--gutter) 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, var(--pink-50) 0%, transparent 60%),
    linear-gradient(180deg, var(--off-white) 0%, var(--grey-50) 100%);
}

.hero-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.hero-line path {
  fill: none;
  stroke: var(--pink-300);
  stroke-width: 1;
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  animation: draw 3.2s var(--ease) 0.3s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-line path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-script);
  font-size: clamp(4.2rem, 15vw, 9.5rem);
  line-height: 0.95;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.45s forwards;
  padding-bottom: 0.1em;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  color: var(--ink-soft);
  margin-top: 1.2rem;
  max-width: 30ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.75s forwards;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--grey-700);
  margin-top: 1.1rem;
  max-width: 40ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.95s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-title,
  .hero-subtitle,
  .hero-desc,
  .hero-ctas {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-ctas {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.15s forwards;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--ink);
  color: var(--off-white);
  box-shadow: 0 12px 26px -12px rgba(28, 24, 21, 0.5);
}

.btn-primary:hover {
  background: var(--charcoal);
  box-shadow: 0 16px 32px -12px rgba(28, 24, 21, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink-soft);
  padding: 1rem 0.2rem;
}

.btn-ghost span.arrow {
  transition: transform 0.4s var(--ease);
}

.btn-ghost:hover span.arrow {
  transform: translateX(5px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   Section shells
   ========================================================================== */

section {
  position: relative;
}

.section {
  padding: clamp(5rem, 11vw, 9rem) 0;
}

.section-light {
  background: var(--off-white);
}

.section-grey {
  background: var(--grey-50);
}

.section-dark {
  background: var(--charcoal);
  color: var(--grey-100);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 400;
  margin-top: 0.7rem;
  color: var(--ink);
  line-height: 1.15;
}

.section-dark .section-title {
  color: var(--off-white);
}

.section-title .accent {
  font-family: var(--font-script);
  font-size: 1.5em;
  color: var(--pink-700);
  padding: 0 0.05em;
}

.section-dark .section-title .accent {
  color: var(--pink-300);
}

.section-lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  color: var(--grey-700);
  line-height: 1.85;
}

.section-dark .section-lede {
  color: var(--grey-300);
}

/* ==========================================================================
   Philosophy / Manifesto
   ========================================================================== */

.manifesto {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.manifesto-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.5;
  color: var(--ink);
}

.manifesto-text em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.5em;
  color: var(--pink-700);
  padding: 0 0.08em;
  vertical-align: -0.08em;
}

.manifesto-divider {
  width: 46px;
  height: 1px;
  background: var(--pink-500);
  margin: 2.4rem auto;
}

.manifesto-sub {
  font-size: 0.98rem;
  color: var(--grey-700);
  max-width: 52ch;
  margin: 0 auto;
}

/* ==========================================================================
   Priska / About
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 5rem;
  }
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  background: linear-gradient(155deg, var(--pink-50) 0%, var(--grey-100) 55%, var(--pink-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-frame .frame-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--pink-50) 0%, var(--grey-100) 55%, var(--pink-100) 100%);
}

.portrait-frame svg {
  position: relative;
  width: 46%;
  z-index: 1;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(33, 29, 26, 0.14);
  z-index: 1;
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  left: 34px;
  bottom: 28px;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-copy .eyebrow {
  margin-bottom: 0.9rem;
}

.about-name {
  font-family: var(--font-script);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--ink);
  line-height: 1;
}

.about-role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pink-700);
  margin-top: 0.6rem;
}

.about-text {
  margin-top: 1.6rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.9;
  max-width: 48ch;
}

.about-text + .about-text {
  margin-top: 1.1rem;
}

.about-links {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.about-links a {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 3px;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.about-links a:hover {
  border-color: var(--ink);
  color: var(--pink-700);
}

/* ==========================================================================
   Services
   ========================================================================== */

.service-list {
  border-top: 1px solid var(--grey-300);
}

.service-row {
  border-bottom: 1px solid var(--grey-300);
  padding: clamp(1.6rem, 3.4vw, 2.6rem) 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.service-row-head {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.service-index {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--pink-500);
  width: 2ch;
  flex-shrink: 0;
}

.service-name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  color: var(--ink);
  flex: 1;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-row:hover .service-name,
.service-row.is-active .service-name {
  color: var(--pink-700);
  transform: translateX(6px);
}

.service-techniques {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-700);
  flex-shrink: 0;
  text-align: right;
}

@media (min-width: 640px) {
  .service-techniques {
    display: block;
  }
}

.service-toggle {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  position: relative;
}

.service-toggle::before,
.service-toggle::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transition: transform 0.45s var(--ease), background 0.4s var(--ease);
}

.service-toggle::before {
  width: 14px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.service-toggle::after {
  width: 1px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.service-row.is-active .service-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.service-row.is-active .service-toggle::before,
.service-row.is-active .service-toggle::after {
  background: var(--pink-700);
}

.service-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}

.service-body-inner {
  overflow: hidden;
}

.service-row.is-active .service-body {
  grid-template-rows: 1fr;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding-top: 1.6rem;
  padding-left: calc(2ch + clamp(1rem, 3vw, 2.4rem));
}

@media (min-width: 720px) {
  .service-detail {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.service-detail p {
  color: var(--grey-700);
  font-size: 0.98rem;
  max-width: 52ch;
  line-height: 1.85;
}

.service-detail-icon {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  opacity: 0.85;
}

.services-cta {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--pink-50);
  border-radius: 4px;
}

.services-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 40ch;
}

/* ==========================================================================
   Craft / detail strip (image placeholders)
   ========================================================================== */

.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

@media (min-width: 760px) {
  .craft-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
  .craft-grid > *:nth-child(2) {
    margin-top: 3rem;
  }
}

.craft-card {
  position: relative;
  aspect-ratio: 3 / 4;
}

.craft-card .frame-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, var(--grey-50), var(--pink-50) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.craft-card svg {
  width: 42%;
}

.craft-caption {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.craft-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
}

.craft-caption span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  white-space: nowrap;
}

/* ==========================================================================
   Process / Ablauf
   ========================================================================== */

.process-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: step;
}

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

.process-step {
  position: relative;
  padding: 2.2rem 1.6rem 2.2rem 0;
  border-top: 1px solid var(--grey-300);
}

@media (min-width: 900px) {
  .process-step {
    padding: 0 1.6rem 0 0;
    border-top: none;
    border-left: 1px solid var(--grey-300);
    padding-left: 1.8rem;
    padding-top: 0.2rem;
  }
  .process-step:first-child {
    border-left: none;
    padding-left: 0;
  }
}

.process-num {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--pink-500);
  line-height: 1;
  display: block;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-top: 0.9rem;
  color: var(--ink);
}

.process-text {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--grey-700);
  max-width: 34ch;
}

/* ==========================================================================
   Trust / Dark band
   ========================================================================== */

.trust-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.trust-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  line-height: 1.6;
  color: var(--off-white);
}

.trust-points {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (min-width: 720px) {
  .trust-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-points h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--pink-300);
  margin-bottom: 0.6rem;
}

.trust-points p {
  font-size: 0.88rem;
  color: var(--grey-300);
  line-height: 1.75;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  border-top: 1px solid var(--grey-300);
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--grey-300);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.faq-question .service-toggle {
  width: 22px;
  height: 22px;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-item.is-active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding-bottom: 1.7rem;
  font-size: 0.96rem;
  color: var(--grey-700);
  max-width: 60ch;
  line-height: 1.85;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
}

.contact-info dl {
  margin: 2.2rem 0 0;
  display: grid;
  gap: 1.6rem;
}

.contact-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.contact-info dd {
  margin: 0.4rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.contact-info dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.contact-info dd a:hover {
  border-color: var(--ink);
}

.contact-card {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: 4px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(198, 154, 142, 0.28), transparent 70%);
}

.contact-card-title {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  position: relative;
  z-index: 1;
}

.contact-card p {
  color: var(--grey-300);
  font-size: 0.96rem;
  max-width: 38ch;
  position: relative;
  z-index: 1;
}

.contact-card .btn {
  position: relative;
  z-index: 1;
}

.contact-card .btn-primary {
  background: var(--off-white);
  color: var(--charcoal);
}

.contact-card .btn-primary:hover {
  background: var(--pink-300);
  color: var(--charcoal);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--charcoal);
  color: var(--grey-300);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 760px) {
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand .signature {
  font-size: 2.4rem;
  color: var(--off-white);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--grey-500);
  max-width: 32ch;
}

.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--grey-300);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover {
  color: var(--pink-300);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--grey-500);
}

.footer-legal a {
  transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
  color: var(--pink-300);
}

/* ==========================================================================
   Legal pages (Impressum / Datenschutz)
   ========================================================================== */

.legal-header {
  position: relative;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(33, 29, 26, 0.06);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--grey-300);
  padding-bottom: 3px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.legal-back:hover {
  color: var(--pink-700);
  border-color: var(--pink-700);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 3rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-top: 1rem;
  color: var(--grey-700);
  font-size: 0.98rem;
  line-height: 1.85;
}

.legal-content dl {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.legal-content dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.legal-content dd {
  margin: 0.25rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.legal-content dd a {
  border-bottom: 1px solid var(--grey-300);
  transition: border-color 0.3s var(--ease);
}

.legal-content dd a:hover {
  border-color: var(--ink);
}

.legal-note {
  margin-top: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--pink-50);
  border-radius: 4px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ==========================================================================
   Floating WhatsApp (mobile)
   ========================================================================== */

.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(28, 24, 21, 0.55);
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.3s var(--ease);
  pointer-events: none;
}

.float-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.float-whatsapp:hover {
  background: var(--pink-700);
}

.float-whatsapp svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 900px) {
  .float-whatsapp {
    display: none;
  }
}

/* ==========================================================================
   Utility
   ========================================================================== */

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--off-white);
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  z-index: 200;
  transition: top 0.3s var(--ease);
  font-size: 0.85rem;
}

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

::selection {
  background: var(--pink-300);
  color: var(--ink);
}
