/* ============================================================
   S1 HAIRCUT & BEAUTY SCHABA — München Haidhausen
   Design: Dark Elegance — Warm Gold + Deep Charcoal
   ============================================================ */

/* --- Font: Inter (lokal, DSGVO-konform) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

:root {
  /* Brand — Warm Gold + Dark Charcoal */
  --gold: #c8a55a;
  --gold-light: #e0c882;
  --gold-dark: #a08338;
  --gold-text: #7a6528;  /* WCAG AA contrast on light backgrounds */
  --dark: #0f0f17;
  --dark2: #171721;
  --dark3: #1e1e2c;

  /* Surfaces */
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface2: #f2efe8;
  --surface3: #e8e3d9;

  /* Text */
  --text: #1a1520;
  --text-inv: #f0ebe3;
  --muted: #6b5e52;
  --muted-inv: #9a9aaa;

  /* Functional */
  --line: #e0d9cc;
  --line-dark: #2a2a3a;
  --shadow: 0 4px 24px rgba(15,15,23,.08);
  --shadow-lg: 0 12px 48px rgba(15,15,23,.12);
  --shadow-gold: 0 4px 20px rgba(200,165,90,.2);

  /* Layout */
  --max: 1100px;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 72px;
  --ease: cubic-bezier(.22,1,.36,1);

  /* Font */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: Georgia, 'Times New Roman', 'Palatino Linotype', serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--dark); padding: 8px 16px;
  border-radius: var(--radius-sm); font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 12px; }

/* --- Container --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER — Transparent → Solid, Auto-Hide
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: transform .35s var(--ease), background .3s, box-shadow .3s;
  will-change: transform;
}
.site-header.scrolled {
  background: rgba(250,248,244,.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.hidden { transform: translateY(-100%); }
.site-header .header-row {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.brand img { width: 40px; height: 40px; border-radius: 8px; }
.brand .name { font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.site-header:not(.scrolled) .brand { color: #fff; }

/* Nav */
nav { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.75); }
.site-header:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }

/* CTA Button */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 50px;
  background: var(--gold); color: var(--dark);
  font-size: .88rem; font-weight: 600; letter-spacing: -.01em;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Burger */
.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  display: block; position: absolute; left: 8px;
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: .3s var(--ease);
}
.site-header:not(.scrolled) .burger span { background: #fff; }
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 26px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.mobile-menu:not([hidden]) { display: flex; }
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--text);
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--surface2); }
.mobile-menu .nav-cta {
  margin-top: 8px; text-align: center; justify-content: center;
}

/* ============================================================
   HERO — Full-screen dark with centered text
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg picture, .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,15,23,.55) 0%, rgba(15,15,23,.2) 40%, rgba(15,15,23,.65) 100%),
    linear-gradient(135deg, rgba(15,15,23,.3) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 720px; padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(200,165,90,.15);
  border: 1px solid rgba(200,165,90,.3);
  color: var(--gold-light); font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: var(--gold); color: var(--dark);
  font-size: .95rem; font-weight: 600;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  font-size: .95rem; font-weight: 500;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }

.hero-trust {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 96px 0; }
.section-dark { background: var(--dark); color: var(--text-inv); }
.section-dark .muted { color: var(--muted-inv); }
.section-dark .section-label { color: var(--gold); }
.section-dark .section-label::before { background: var(--gold); }
.section-alt { background: var(--surface2); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 24px; height: 1.5px; background: var(--gold-text);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: var(--muted-inv); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Gold divider */
.gold-divider {
  width: 48px; height: 2px; background: var(--gold);
  margin: 20px 0;
  border: none;
}
.center .gold-divider { margin: 20px auto; }

/* ============================================================
   SERVICE CARDS — Horizontal alternating layout
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
a.service-card, .service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 28px; }
.service-card-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 700;
  margin-bottom: 10px;
}
.service-card-body p {
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 18px;
  line-height: 1.65;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-text); font-weight: 600; font-size: .88rem;
  text-decoration: none;
  transition: gap .2s, color .2s;
}
.service-card-link:hover { gap: 10px; color: var(--gold-dark); }
.service-card-link svg { width: 16px; height: 16px; }

/* ============================================================
   SERVICE SHOWCASE — Alternating image + text rows
   ============================================================ */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-img { order: 2; }
.showcase-row.reverse .showcase-text { order: 1; }
.showcase-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase-img img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/3;
}
.showcase-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.showcase-text p {
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}
.showcase-text ul {
  margin: 16px 0 24px;
}
.showcase-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .94rem;
}
.showcase-text ul li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 10px; height: 1.5px;
  background: var(--gold);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--dark2);
  border: 1px solid var(--line-dark);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 1.05rem; font-weight: 600;
  color: var(--text-inv);
  margin-bottom: 8px;
}
.step p {
  color: var(--muted-inv);
  font-size: .9rem;
  line-height: 1.6;
}

/* ============================================================
   TRUST / USP SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.trust-item {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color .3s, box-shadow .3s;
}
.trust-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.trust-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200,165,90,.12), rgba(200,165,90,.04));
  color: var(--gold);
}
.trust-icon svg { width: 24px; height: 24px; }
.trust-item h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.trust-item p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ============================================================
   FAQ — Accordion
   ============================================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.section-dark .faq-item { border-color: var(--line-dark); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 16px;
  font-size: 1rem; font-weight: 600; text-align: left;
  color: var(--text); background: none; border: none; cursor: pointer;
  transition: color .2s;
}
.section-dark .faq-q { color: var(--text-inv); }
.faq-q:hover { color: var(--gold); }
.faq-q svg {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform .3s var(--ease);
  color: var(--muted);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p {
  color: var(--muted); font-size: .92rem; line-height: 1.7;
}
.section-dark .faq-a p { color: var(--muted-inv); }

/* ============================================================
   CTA CALLOUT
   ============================================================ */
.cta-box {
  position: relative;
  padding: 64px 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  text-align: center;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(200,165,90,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.cta-box p {
  color: var(--muted-inv);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 520px; margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-box .btn-gold { position: relative; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-info-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(200,165,90,.12), rgba(200,165,90,.04));
  color: var(--gold);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail strong { display: block; font-size: .85rem; margin-bottom: 2px; }
.contact-detail span, .contact-detail a {
  color: var(--muted); font-size: .92rem;
  text-decoration: none; transition: color .2s;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: .92rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,90,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   PAGE HERO — Smaller for inner pages
   ============================================================ */
.page-hero {
  padding: 140px 0 64px;
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; right: -10%; width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(200,165,90,.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 560px;
  position: relative;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-text h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}
.value-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; }
.value-card p { color: var(--muted); font-size: .85rem; line-height: 1.6; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 740px;
  padding: 48px 0;
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 40px 0 12px;
  color: var(--text);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  margin: 28px 0 8px;
}
.legal-content p, .legal-content li {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: .94rem;
}
.legal-content ul { padding-left: 20px; }
.legal-content ul li { list-style: disc; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.error-page h1 {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.error-page p { color: var(--muted); margin-bottom: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: var(--text-inv);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid strong {
  display: block;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  color: var(--muted-inv);
  font-size: .9rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color .2s;
}
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid span {
  display: block;
  color: var(--muted-inv);
  font-size: .9rem;
  margin-bottom: 6px;
  line-height: 1.6;
}
.social-links {
  display: flex; gap: 12px; margin-top: 8px;
}
.social-links a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--muted-inv);
  transition: background .2s, color .2s;
  margin: 0;
}
.social-links a:hover { background: rgba(200,165,90,.15); color: var(--gold-light); }
.social-links svg { width: 18px; height: 18px; fill: currentColor; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: .8rem;
  color: var(--muted-inv);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .showcase-row { grid-template-columns: 1fr; gap: 32px; }
  .showcase-row.reverse .showcase-img { order: 0; }
  .showcase-row.reverse .showcase-text { order: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 64px 0; }
  .nav-links, nav > .nav-cta { display: none; }
  .burger { display: block; }
  .hero-content { padding: 100px 20px 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 110px 0 48px; }
}

@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
}
