/* ==========================================================================
   SR Universal Hair — Design System
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --navy:        #0C2A43;
  --navy-deep:   #071B2C;
  --navy-700:    #16395a;
  --navy-100:    #E7EDF3;

  --gold:        #C2A47E;
  --gold-soft:   #E6D8C3;
  --gold-deep:   #A88760;

  --cream:       #FAF8F5;
  --cream-2:     #F3EFE9;
  --white:       #FFFFFF;

  --ink:         #14283A;
  --muted:       #5E7183;
  --line:        rgba(12, 42, 67, .12);

  --shadow-sm:   0 1px 2px rgba(12,42,67,.06), 0 4px 12px rgba(12,42,67,.06);
  --shadow-md:   0 8px 24px rgba(12,42,67,.10), 0 2px 6px rgba(12,42,67,.06);
  --shadow-lg:   0 24px 60px rgba(12,42,67,.16), 0 8px 20px rgba(12,42,67,.08);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --nav-h: 84px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Playfair Display', 'Times New Roman', Georgia, serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0; }

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

::selection { background: var(--navy); color: #fff; }

/* --- Layout helpers ----------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.wrap--narrow { max-width: 860px; }

.section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }
.section--cream { background: var(--cream); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 0; }

/* --- Typography --------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold); flex: none;
}
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before, .eyebrow--light::after { background: var(--gold-soft); opacity: .8; }

.h1 { font-size: clamp(2.9rem, 8.2vw, 6rem); line-height: 1.02; letter-spacing: -.02em; }
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.8;
}

.section__head { max-width: 700px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { margin-inline: auto; }
.section__head .h2 { margin-bottom: 18px; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  --btn-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .84rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold  { --btn-bg: var(--gold); --btn-bd: var(--gold); --btn-fg: #16283a; }
.btn--gold:hover { --btn-bg: var(--gold-deep); --btn-bd: var(--gold-deep); --btn-fg: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy); --btn-bd: var(--navy); }
.btn--ghost:hover { --btn-bg: var(--navy); --btn-fg: #fff; }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }

.btn--block { width: 100%; }

/* --- Navigation --------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease), border-color .4s var(--ease);
}
.nav__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 44px; width: auto; transition: height .4s var(--ease), opacity .3s var(--ease); }
.nav__logo .logo--light { display: none; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy);
  transition: color .3s var(--ease), opacity .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { margin-left: 10px; padding: 12px 26px; font-size: .76rem; }

/* Transparent state over hero */
.nav.is-transparent { background: transparent; }
.nav.is-transparent .nav__link { color: #fff; }
.nav.is-transparent .nav__logo .logo--dark { display: none; }
.nav.is-transparent .nav__logo .logo--light { display: block; }
.nav.is-transparent .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.6); }
.nav.is-transparent .btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--navy); --btn-bd: #fff; }
.nav.is-transparent .burger span { background: #fff; }

/* Scrolled state */
.nav.is-stuck {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px rgba(12,42,67,.07);
  height: 72px;
}
.nav.is-stuck .nav__logo img { height: 38px; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px;
  position: relative; transition: background .3s var(--ease), transform .35s var(--ease);
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: inherit; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.burger span::before { top: -8px; }
.burger span::after  { top: 8px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { background: var(--navy); transform: translateY(8px) rotate(45deg); }
.burger.is-open span::after  { background: var(--navy); transform: translateY(-8px) rotate(-45deg); }
.nav.is-transparent .burger.is-open span::before,
.nav.is-transparent .burger.is-open span::after { background: #fff; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 20px) 32px 48px;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s var(--ease), visibility .5s;
}
.drawer.is-open { transform: translateY(0); visibility: visible; }
.drawer__nav a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 8vw, 2.4rem);
  color: #fff;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0; transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s;
}
.drawer.is-open .drawer__nav a { opacity: 1; transform: none; }
.drawer.is-open .drawer__nav a:nth-child(1) { transition-delay: .12s; }
.drawer.is-open .drawer__nav a:nth-child(2) { transition-delay: .18s; }
.drawer.is-open .drawer__nav a:nth-child(3) { transition-delay: .24s; }
.drawer.is-open .drawer__nav a:nth-child(4) { transition-delay: .30s; }
.drawer.is-open .drawer__nav a:nth-child(5) { transition-delay: .36s; }
.drawer__nav a:hover { color: var(--gold-soft); }
.drawer__foot {
  margin-top: 40px; color: rgba(255,255,255,.6);
  font-size: .8rem; letter-spacing: .1em;
}
.drawer__foot a { color: var(--gold-soft); }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('../bilder/WhatsApp Image 2025-05-15 at 16.21.10.jpeg');
  background-size: cover;
  background-position: center 30%;
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,27,44,.72) 0%, rgba(7,27,44,.38) 34%, rgba(7,27,44,.55) 72%, rgba(7,27,44,.86) 100%),
    radial-gradient(120% 90% at 50% 40%, rgba(7,27,44,0) 30%, rgba(7,27,44,.5) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}

.hero__inner { padding: calc(var(--nav-h) + 40px) 0 130px; text-align: center; width: 100%; }
.hero__title { margin-bottom: 26px; }
.hero__title span { display: block; }
.hero__title .line-2 { font-style: italic; color: var(--gold-soft); }
.hero__text {
  max-width: 660px; margin: 0 auto 40px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.85;
  color: rgba(255,255,255,.9);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
}
.scroll-cue__mouse {
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 14px;
  position: relative;
}
.scroll-cue__mouse::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 7px;
  margin-left: -1.5px; border-radius: 2px; background: #fff;
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0%   { opacity: 0; transform: translateY(0); }
  25%  { opacity: 1; }
  75%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* --- Trust bar ---------------------------------------------------------- */
.trust {
  background: var(--navy);
  color: #fff;
  padding: 26px 0;
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 24px;
  align-items: center;
}
.trust__item {
  display: flex; align-items: center; gap: 12px;
  font-size: .82rem; letter-spacing: .04em;
  color: rgba(255,255,255,.88);
  padding: 8px 0;
}
.trust__item + .trust__item { border-left: 1px solid rgba(255,255,255,.13); padding-left: 24px; }
.trust__item svg { width: 18px; height: 18px; flex: none; color: var(--gold); }

/* --- About -------------------------------------------------------------- */
.about__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center;
}
.about__text p + p { margin-top: 20px; }
.checklist { display: grid; gap: 16px; margin-top: 36px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink); font-size: .97rem; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff; margin-top: 2px;
}
.checklist .tick svg { width: 14px; height: 14px; }

.figure {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,42,67,0) 38%, rgba(12,42,67,.88) 100%);
}
.figure__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 32px;
  color: #fff;
}
.figure__caption h3 { margin-bottom: 8px; }
.figure__caption p { color: rgba(255,255,255,.86); font-size: .95rem; }

.figure-wrap { position: relative; z-index: 0; }
.figure-wrap::before {
  content: ""; position: absolute; inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold); border-radius: var(--r-lg); z-index: -1;
}

.stat-badge {
  position: absolute; left: -22px; top: 38px; z-index: 3;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  text-align: center;
}
.stat-badge strong {
  display: block; font-family: var(--font-display); font-size: 2.1rem; line-height: 1; color: var(--navy);
}
.stat-badge span {
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

/* --- Feature rows (Produkte) -------------------------------------------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  margin-top: clamp(48px, 7vw, 84px);
}
.feature--flip .feature__media { order: 2; }
.feature__media {
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature__media img {
  width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
  transition: transform 1s var(--ease);
}
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__index {
  font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep);
  letter-spacing: .2em; margin-bottom: 14px; display: block;
}
.feature__body h3 { margin-bottom: 18px; }
.feature__body p { color: var(--muted); line-height: 1.85; }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative; isolation: isolate;
  padding: clamp(96px, 13vw, 168px) 0;
  text-align: center; color: #fff;
  background-image: url('../bilder/Carusel.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,27,44,.82), rgba(7,27,44,.66));
}
.cta-band .h2 { margin-bottom: 22px; }
.cta-band .h2 em { font-style: italic; color: var(--gold-soft); display: block; }
.cta-band p { max-width: 620px; margin: 0 auto 38px; color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.85; }

/* --- Gallery ------------------------------------------------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(40px, 5vw, 64px);
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  cursor: zoom-in; background: var(--cream-2);
  box-shadow: var(--shadow-sm);
  border: 0; padding: 0; width: 100%; display: block;
}
.gallery__item img {
  width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .9s var(--ease);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,42,67,0) 45%, rgba(12,42,67,.6) 100%);
  opacity: .7; transition: opacity .45s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item:hover::after { opacity: .3; }
.gallery__item .zoom {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: var(--navy);
  opacity: 0; transform: translateY(8px) scale(.9);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__item:hover .zoom, .gallery__item:focus-visible .zoom { opacity: 1; transform: none; }
.gallery__item .zoom svg { width: 17px; height: 17px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  background: rgba(4,15,25,.94);
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 92vw); max-height: 86vh; width: auto;
  border-radius: var(--r-md); box-shadow: var(--shadow-lg);
  transform: scale(.96); transition: transform .35s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__btn {
  position: absolute; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
  cursor: pointer; transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.22); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.06); }

/* --- Contact ------------------------------------------------------------ */
.contact {
  background: var(--navy);
  color: #fff;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,164,126,.14), transparent 68%);
  top: -220px; right: -180px; pointer-events: none;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start;
  position: relative;
}
.contact__intro p { color: rgba(255,255,255,.82); }
.contact__list { display: grid; gap: 18px; margin-top: 40px; }
.contact__row {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.contact__row:hover { border-color: rgba(194,164,126,.55); background: rgba(255,255,255,.07); transform: translateX(4px); }
.contact__icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(194,164,126,.16); color: var(--gold-soft);
}
.contact__icon svg { width: 19px; height: 19px; }
.contact__row h3 {
  font-family: var(--font-body); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 3px;
}
.contact__row a, .contact__row span { color: #fff; font-size: 1rem; }
.contact__row a:hover { color: var(--gold-soft); }

.card-form {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 3.4vw, 44px);
  color: var(--ink);
}
.card-form h3 { margin-bottom: 6px; }
.card-form > p { color: var(--muted); font-size: .92rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.field input, .field textarea {
  width: 100%;
  font: inherit; font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,42,67,.09);
}
.field input::placeholder, .field textarea::placeholder { color: #9AA9B5; }
.form-note { margin-top: 14px; font-size: .78rem; color: var(--muted); text-align: center; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: clamp(56px, 7vw, 84px) 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px;
}
.footer__logo {
  height: 108px; width: auto; margin-bottom: 22px;
  border-radius: var(--r-md);
  box-shadow: 0 0 0 1px rgba(255,255,255,.09);
}
.footer p { font-size: .93rem; line-height: 1.8; max-width: 44ch; }
.footer h4 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; margin-bottom: 20px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .93rem; transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__links a:hover { color: var(--gold-soft); padding-left: 5px; }

.social {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 6px;
  padding: 11px 18px 11px 12px;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill);
  color: #fff; font-size: .85rem;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.social:hover { border-color: var(--gold); background: rgba(194,164,126,.12); transform: translateY(-2px); }
.social svg { width: 22px; height: 22px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0 32px;
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__legal a { transition: color .3s var(--ease); }
.footer__legal a:hover { color: var(--gold-soft); }
.footer__bottom a.credit { color: var(--gold-soft); }
.footer__bottom a.credit:hover { text-decoration: underline; }

/* --- Legal pages -------------------------------------------------------- */
.page-head {
  background: var(--navy);
  color: #fff;
  padding: calc(var(--nav-h) + 72px) 0 clamp(56px, 7vw, 88px);
  position: relative; overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 15% 0%, rgba(194,164,126,.16), transparent 60%);
}
.page-head .wrap { position: relative; }
.page-head .h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 18px;
}
.crumbs a:hover { color: var(--gold-soft); }

.legal { padding: clamp(56px, 7vw, 88px) 0 clamp(72px, 9vw, 110px); background: var(--cream); }
.legal__card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 60px);
}
.legal__block + .legal__block {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line);
}
.legal__block h2 {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700; letter-spacing: .01em;
  color: var(--navy); margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 12px;
}
.legal__block h2 .num {
  font-family: var(--font-display); font-size: .95rem; color: var(--gold-deep);
}
.legal__block p, .legal__block address {
  color: var(--muted); font-style: normal; font-size: .97rem; line-height: 1.85;
}
.legal__block a { color: var(--navy); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.legal__block a:hover { color: var(--gold-deep); }
.legal__block ul { margin-top: 10px; display: grid; gap: 8px; }
.legal__block ul li {
  position: relative; padding-left: 22px; color: var(--muted); font-size: .97rem;
}
.legal__block ul li::before {
  content: ""; position: absolute; left: 4px; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.legal__back { margin-top: 36px; }

/* --- Reveal animation --------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

body.no-scroll { overflow: hidden; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item + .trust__item { border-left: 0; padding-left: 0; }
  .trust__item:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.13); padding-left: 24px; }
  .about__grid, .feature, .contact__grid { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .figure-wrap::before { inset: 18px -18px -18px 18px; }
  .figure img { aspect-ratio: 3 / 2; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --nav-h: 72px; }
  .nav__menu, .nav__cta { display: none; }
  .burger { display: flex; position: relative; z-index: 101; }
  .cta-band { background-attachment: scroll; }
  .stat-badge { left: auto; right: 16px; top: -22px; }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 20px; }
  .trust__grid { grid-template-columns: 1fr; gap: 0; }
  .trust__item { padding: 11px 0; }
  .trust__item:nth-child(n) { border-left: 0; padding-left: 0; }
  .trust__item + .trust__item { border-top: 1px solid rgba(255,255,255,.12); }
  .gallery { grid-template-columns: 1fr; gap: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { justify-content: flex-start; }
  .hero__actions .btn { width: 100%; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .lightbox__close { top: 12px; right: 12px; }
}

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