/* ═══════════════════════════════════════════════════════════════════════
   Ad Cosmetics — design layer (loaded AFTER theme.css, wins by source order)
   Re-skins the Igris chassis to the editorial beauty look + the homepage.
   Palette: espresso / rosé-porcelain / champagne-gold · Bodoni Moda + Jost.
   Fonts are set in _header.php (inline <style> beats a linked sheet).
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* mandatory Ingrid vars → beauty palette */
  --bg: #ece4df;
  --surface: #f4efea;
  --card: #ffffff;
  --card-alt: #e9e1db;
  --border: rgba(42,33,28,0.14);
  --accent: #9a7636;         /* deep champagne (links, badges, active) */
  --accent-d: #7d5f2b;
  --accent-text: #ffffff;
  --text: #2a211c;
  --muted: #8c7d73;
  --dim: #b4a498;
  --radius: 6px;
  --max-w: 1200px;
  --scrim: rgba(36,28,24,0.55);
  --scrim-full: rgba(36,28,24,0.9);
  --shadow: 0 8px 24px rgba(122,117,108,0.10);
  --shadow-md: 0 16px 40px rgba(43,42,40,0.14);

  /* forge (shop) vars → beauty palette */
  --forge-bg: #ece4df;
  --forge-card: #ffffff;
  --forge-accent: #9a7636;
  --forge-accent-d: #7d5f2b;
  --forge-text: #2a211c;
  --forge-muted: #8c7d73;
  --forge-border: rgba(42,33,28,0.14);
  --forge-radius: 6px;

  /* brand-specific */
  --ac-espresso: #241c18;
  --ac-espresso-2: #2c2119;
  --ac-porcelain: #ece4df;
  --ac-porcelain-2: #f4efea;
  --ac-cream: #f4ece4;
  --ac-gold: #c6a667;
  --ac-gold-deep: #9a7636;
  --ac-muted-dk: #b4a498;
  --ac-line-dk: rgba(244,236,228,0.16);
  --ac-serif: "Bodoni Moda", Didot, Georgia, serif;
  --ac-sans: "Jost", system-ui, -apple-system, sans-serif;
  --ac-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body { background: var(--ac-porcelain); color: var(--text); }

/* ── Chrome: navbar ──────────────────────────────────────────────────── */
.navbar { background: color-mix(in srgb, var(--ac-porcelain) 90%, transparent); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.nav-logo { font-family: var(--ac-serif); font-weight: 500; font-size: 1.42rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text); }
.nav-links .nav-link { font-family: var(--ac-sans); font-size: 0.82rem; letter-spacing: 0.06em; color: var(--text); }
.nav-links .nav-link:hover, .nav-links .nav-link.active { color: var(--ac-gold-deep); }
.nav-right .social-icon, .nav-search-btn { color: var(--text); }

/* Header "Termin buchen" CTA */
.ac-book-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ac-sans); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ac-espresso); color: var(--ac-cream);
  padding: 11px 20px; border-radius: 999px; white-space: nowrap;
  transition: background .35s var(--ac-ease), transform .35s var(--ac-ease);
}
.ac-book-btn:hover { background: #150f0c; transform: translateY(-1px); color: var(--ac-cream); }

/* ── Buttons (homepage) ──────────────────────────────────────────────── */
.ac-btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--ac-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; padding: 15px 28px; border: 1px solid transparent; cursor: pointer; transition: background .4s var(--ac-ease), color .4s var(--ac-ease), border-color .4s var(--ac-ease), transform .4s var(--ac-ease); }
.ac-btn-solid { background: var(--ac-espresso); color: var(--ac-cream); }
.ac-btn-solid:hover { background: #150f0c; transform: translateY(-2px); color: var(--ac-cream); }
.ac-btn-cream { background: var(--ac-cream); color: var(--ac-espresso); }
.ac-btn-cream:hover { background: #fff; transform: translateY(-2px); }
.ac-btn-line { background: transparent; color: var(--text); border-color: var(--border); }
.ac-btn-line:hover { border-color: var(--text); }
.ac-btn-line.on-dark { color: var(--ac-cream); border-color: var(--ac-line-dk); }
.ac-btn-line.on-dark:hover { border-color: var(--ac-gold); color: var(--ac-gold); }
.ac-btn .arw { transition: transform .4s var(--ac-ease); }
.ac-btn:hover .arw { transform: translateX(4px); }

/* ── Shared bits ─────────────────────────────────────────────────────── */
.ac-wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 28px; }
.ac-eyebrow { font-family: var(--ac-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ac-gold-deep); display: inline-flex; align-items: center; gap: 12px; }
.ac-eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--ac-gold); display: inline-block; }
.ac-eyebrow.on-dark { color: var(--ac-gold); }
.ac-section { padding-block: clamp(64px, 9vw, 108px); }
.ac-serif { font-family: var(--ac-serif); font-weight: 400; }
.ac-lashes { display: inline-block; }
.ac-lashes svg, svg.ac-lashes { fill: none; }
.ac-lashes path, .ac-lash-svg path { fill: none; stroke: var(--ac-gold); stroke-width: 1; stroke-linecap: round; }

.ac-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
.ac-sec-head h2 { font-family: var(--ac-serif); font-weight: 400; font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.02; max-width: 16ch; margin: 14px 0 0; color: var(--text); }
.ac-sec-head .aside { max-width: 34ch; color: var(--muted); font-weight: 300; font-size: 0.98rem; }

/* ── Hero ────────────────────────────────────────────────────────────── */
.ac-hero { background: var(--ac-espresso); color: var(--ac-cream); position: relative; overflow: hidden; }
.ac-hero .ac-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-top: 92px; padding-bottom: 92px; }
.ac-hero h1 { font-family: var(--ac-serif); font-weight: 400; color: var(--ac-cream); font-size: clamp(3.2rem, 7.5vw, 6.1rem); line-height: 0.98; letter-spacing: -0.015em; margin: 26px 0 0; }
.ac-hero h1 em { font-style: italic; color: var(--ac-gold); }
.ac-hero .ac-lead { color: var(--ac-muted-dk); max-width: 46ch; margin-top: 26px; font-weight: 300; font-size: 1.06rem; line-height: 1.7; }
.ac-hero .ac-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.ac-hero .ac-meta { display: flex; gap: 30px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--ac-line-dk); }
.ac-hero .ac-meta .k { font-family: var(--ac-serif); font-size: 1.5rem; }
.ac-hero .ac-meta .v { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ac-muted-dk); margin-top: 4px; }
.ac-portrait { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--ac-line-dk); background: radial-gradient(120% 90% at 70% 15%, rgba(198,166,103,0.20), transparent 55%), linear-gradient(155deg, #4a372c 0%, #2c2019 55%, #211812 100%); display: flex; align-items: flex-end; justify-content: space-between; padding: 22px; overflow: hidden; }
.ac-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ac-portrait .tag { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ac-muted-dk); align-self: flex-start; position: relative; z-index: 1; }
.ac-portrait .lashwrap { position: absolute; inset: 0; display: grid; place-items: center; }
.ac-portrait .lashwrap svg { width: 62%; }
.ac-portrait .num { font-family: var(--ac-serif); font-size: 2.4rem; color: var(--ac-gold); line-height: 1; position: relative; z-index: 1; }

/* ── Services ────────────────────────────────────────────────────────── */
.ac-services { background: var(--ac-porcelain); }
.ac-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); }
.ac-svc { padding: 40px 34px 34px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); background: var(--ac-porcelain); transition: background .5s var(--ac-ease); display: flex; flex-direction: column; min-height: 250px; }
.ac-svc:nth-child(3n) { border-right: none; }
.ac-svc:hover { background: var(--ac-porcelain-2); }
.ac-svc .idx { font-size: 0.66rem; letter-spacing: 0.22em; color: var(--ac-gold-deep); text-transform: uppercase; }
.ac-svc h3 { font-family: var(--ac-serif); font-weight: 400; font-size: 1.72rem; margin: 16px 0 0; line-height: 1.08; color: var(--text); }
.ac-svc p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 12px 0 0; font-weight: 300; }
.ac-svc .go { margin-top: auto; padding-top: 22px; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; }
.ac-svc .go .arw { transition: transform .4s var(--ac-ease); color: var(--ac-gold-deep); }
.ac-svc:hover .go .arw { transform: translateX(5px); }

/* ── Philosophy ──────────────────────────────────────────────────────── */
.ac-philosophy { background: var(--ac-espresso-2); color: var(--ac-cream); text-align: center; }
.ac-philosophy .ac-wrap { max-width: 940px; }
.ac-philosophy .mark { display: grid; place-items: center; margin-bottom: 30px; }
.ac-philosophy .mark svg { width: 96px; }
.ac-philosophy blockquote { margin: 0; font-family: var(--ac-serif); font-weight: 400; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.28; letter-spacing: -0.01em; }
.ac-philosophy blockquote em { font-style: italic; color: var(--ac-gold); }
.ac-pillars { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 46px; margin-top: 44px; }
.ac-pillars span { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ac-muted-dk); }
.ac-pillars span::before { content: "◦"; color: var(--ac-gold); margin-right: 12px; }

/* ── Shop teaser ─────────────────────────────────────────────────────── */
.ac-shop { background: var(--ac-porcelain); }
.ac-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }
.ac-cat { position: relative; min-height: 220px; padding: 30px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--ac-cream); overflow: hidden; border: 1px solid var(--ac-line-dk); }
.ac-cat.speed { background: linear-gradient(150deg, #3a2c22, #241c18); }
.ac-cat.diy { background: linear-gradient(150deg, #6b4b52, #3d2a2f); }
.ac-cat .kind { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ac-gold); }
.ac-cat h3 { font-family: var(--ac-serif); font-weight: 400; font-size: 2rem; margin: 8px 0 0; color: var(--ac-cream); }
.ac-cat p { color: var(--ac-muted-dk); font-size: 0.9rem; font-weight: 300; margin: 10px 0 0; max-width: 34ch; }
.ac-cat .shop-lash { position: absolute; top: -10px; right: -10px; width: 150px; opacity: 0.5; }
.ac-prod-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ac-prod { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.ac-prod .img { aspect-ratio: 1; border: 1px solid var(--border); background: radial-gradient(120% 100% at 60% 20%, #f6f0eb, #e6dbd2); display: grid; place-items: center; transition: transform .5s var(--ac-ease); overflow: hidden; }
.ac-prod .img img { width: 100%; height: 100%; object-fit: cover; }
.ac-prod:hover .img { transform: translateY(-4px); }
.ac-prod .img svg { width: 34%; opacity: 0.55; }
.ac-prod .nm { font-family: var(--ac-serif); font-size: 1.06rem; margin-top: 14px; color: var(--text); }
.ac-prod .pr { color: var(--muted); font-size: 0.82rem; margin-top: 2px; font-variant-numeric: tabular-nums; }

/* ── Schulungen ──────────────────────────────────────────────────────── */
.ac-schulungen { background: var(--ac-espresso); color: var(--ac-cream); }
.ac-schulungen .ac-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.ac-schulungen .panel { aspect-ratio: 5 / 4; border: 1px solid var(--ac-line-dk); background: radial-gradient(110% 90% at 30% 20%, rgba(198,166,103,0.18), transparent 55%), linear-gradient(150deg,#3a2c22,#221913); display: grid; place-items: center; overflow: hidden; }
.ac-schulungen .panel img { width: 100%; height: 100%; object-fit: cover; }
.ac-schulungen .panel svg { width: 46%; }
.ac-schulungen h2 { font-family: var(--ac-serif); font-weight: 400; font-size: clamp(2rem, 4vw, 3.1rem); color: var(--ac-cream); line-height: 1.04; margin: 16px 0 0; }
.ac-schulungen h2 em { font-style: italic; color: var(--ac-gold); }
.ac-schulungen p { color: var(--ac-muted-dk); font-weight: 300; margin: 22px 0 0; max-width: 44ch; line-height: 1.7; }
.ac-schulungen .ac-cta-row { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Booking band ────────────────────────────────────────────────────── */
.ac-booking { background: var(--ac-porcelain-2); text-align: center; border-block: 1px solid var(--border); }
.ac-booking h2 { font-family: var(--ac-serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1; margin: 20px 0 0; color: var(--text); }
.ac-booking h2 em { font-style: italic; color: var(--ac-gold-deep); }
.ac-booking p { color: var(--muted); margin: 22px auto 0; max-width: 40ch; font-weight: 300; }
.ac-booking .ac-btn { margin-top: 36px; }
.ac-booking .via { margin-top: 18px; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* ── Kontakt ─────────────────────────────────────────────────────────── */
.ac-kontakt { background: var(--ac-porcelain-2); }
.ac-contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.ac-contact-item { background: var(--ac-porcelain-2); padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; transition: background .4s var(--ac-ease); }
a.ac-contact-item:hover { background: var(--ac-porcelain); }
.ac-contact-item .l { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ac-gold-deep); }
.ac-contact-item .v { font-family: var(--ac-serif); font-size: 1.14rem; color: var(--text); word-break: break-word; }
@media (max-width: 820px) { .ac-contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ac-contact-grid { grid-template-columns: 1fr; } }

/* ── Footer restyle (Igris .footer markup) ───────────────────────────── */
.footer { background: var(--ac-espresso); color: var(--ac-muted-dk); }
.footer .footer-brand .logo, .footer .logo { font-family: var(--ac-serif); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ac-cream); }
.footer .footer-col h4 { font-family: var(--ac-sans); color: var(--ac-gold); letter-spacing: 0.2em; text-transform: uppercase; }
.footer a { color: var(--ac-muted-dk); }
.footer a:hover { color: var(--ac-cream); }
.follow-section { background: var(--ac-espresso-2); }
.follow-title { font-family: var(--ac-serif); color: var(--ac-cream); }

/* ── Legal / content pages (page body HTML) ──────────────────────────── */
.ac-legal { max-width: 760px; margin: 0 auto; }
.ac-legal .ac-legal-eyebrow { font-family: var(--ac-sans); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ac-gold-deep); margin: 0 0 14px; }
.ac-legal h1 { font-family: var(--ac-serif); font-weight: 400; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.05; color: var(--text); margin: 0; }
.ac-legal h2 { font-family: var(--ac-serif); font-weight: 400; font-size: 1.4rem; color: var(--text); margin: 38px 0 0; }
.ac-legal p, .ac-legal li { font-family: var(--ac-sans); font-size: 1rem; line-height: 1.75; color: var(--muted); margin: 14px 0 0; }
.ac-legal strong { color: var(--text); font-weight: 500; }
.ac-legal ul { padding-left: 20px; margin-top: 6px; }
.ac-legal a { color: var(--ac-gold-deep); text-decoration: underline; }
.ac-legal .ac-legal-note { margin-top: 18px; padding: 14px 18px; border-radius: 8px; background: var(--ac-porcelain); font-size: 0.9rem; color: var(--muted); border: 1px solid var(--border); }
.ac-legal .ac-legal-eff { margin-top: 34px; font-size: 0.8rem; color: var(--muted); }

/* ── Reveal ──────────────────────────────────────────────────────────── */
.ac-reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ac-ease), transform .9s var(--ac-ease); }
.ac-reveal.in { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ac-hero .ac-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ac-portrait { aspect-ratio: 16 / 11; }
  .ac-svc-grid { grid-template-columns: 1fr 1fr; }
  .ac-svc:nth-child(3n) { border-right: 1px solid var(--border); }
  .ac-svc:nth-child(2n) { border-right: none; }
  .ac-schulungen .ac-wrap { grid-template-columns: 1fr; gap: 36px; }
  .ac-schulungen .panel { order: 2; aspect-ratio: 16/9; }
  .ac-prod-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .ac-svc-grid { grid-template-columns: 1fr; }
  .ac-svc, .ac-svc:nth-child(2n) { border-right: none; }
  .ac-cats { grid-template-columns: 1fr; }
  .ac-sec-head { flex-direction: column; align-items: flex-start; }
  .ac-wrap { padding-inline: 22px; }
  .ac-book-btn { display: none; } /* on mobile, booking lives in the drawer + page */
}
@media (prefers-reduced-motion: reduce) {
  .ac-reveal { opacity: 1; transform: none; transition: none; }
  .ac-btn, .ac-svc, .ac-prod .img { transition: none; }
}
