/* =====================================================================
   Elektroladen Eckert — shared design system
   Warm & local · gold accents · elegant serif headlines
   ===================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, picture, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* warm neutrals */
  --cream:      #FBF6EC;
  --cream-2:    #F4EADA;
  --card:       #FFFDF8;
  --ink:        #211B12;   /* warm near-black */
  --ink-2:      #2C251A;
  --ink-soft:   #4C4432;
  --muted:      #766B54;
  --line:       rgba(33,27,18,.10);
  --line-2:     rgba(33,27,18,.16);

  /* gold */
  --gold:       #C9A25A;
  --gold-hi:    #F0DCAB;
  --gold-soft:  #E4CE93;
  --gold-deep:  #9A7327;
  --gold-ink:   #7A5A1E;   /* gold dark enough for text on cream */
  --grad-gold:  linear-gradient(120deg,#8A6A2F 0%,#C9A25A 32%,#F4E4B8 52%,#C9A25A 70%,#8A6A2F 100%);
  --grad-gold-btn: linear-gradient(135deg,#D8B063 0%,#C29A4C 48%,#A97F30 100%);

  /* accents */
  --green:      #2F7D5B;   /* success / whatsapp-ish */
  --whatsapp:   #25D366;

  /* effects */
  --shadow-sm:  0 2px 10px rgba(74,55,20,.07);
  --shadow:     0 14px 36px -16px rgba(74,55,20,.22);
  --shadow-lg:  0 40px 80px -28px rgba(60,44,16,.34);
  --shadow-gold:0 18px 40px -16px rgba(154,115,39,.45);

  --r-xs: 8px; --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --container: 1200px;
  --header-h: 84px;

  --font-head: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }
p  { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

::selection { background: var(--gold-soft); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--ink); color: var(--cream); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.74); }
.section--cream2 { background: var(--cream-2); }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-ink);
}
.eyebrow::before { content: ""; width: 30px; height: 1.5px; background: var(--grad-gold); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 30px; height: 1.5px; background: var(--grad-gold); border-radius: 2px; }
.section--dark .eyebrow { color: var(--gold-hi); }

.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .5rem; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; }

/* gold ink accent used inside headings.
   Default is the richer/darker gold so it stays readable on the light cream backgrounds. */
.gold-text {
  background: linear-gradient(120deg,#8a6a2f 0%,#c9a25a 50%,#8a6a2f 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* on dark backgrounds use the bright gradient so it glows instead of muddying */
.section--dark .gold-text, .hero .gold-text, .page-hero .gold-text, .cta-band .gold-text {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
}

/* ---------- Accessibility: keyboard focus + skip link ---------- */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff;
  padding: .7em 1.1em; border-radius: 10px; font-weight: 700; font-size: .9rem; transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Map consent gate (privacy) ---------- */
.map-consent {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line);
  background: var(--cream-2); display: grid; place-items: center; text-align: center; padding: 2.5rem 1.5rem;
}
.map-consent .mc-inner { max-width: 460px; }
.map-consent h3 { font-size: 1.4rem; }
.map-consent p { margin-top: .7rem; font-size: .95rem; }
.map-consent .mc-ico { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1rem; display: grid; place-items: center; background: linear-gradient(150deg,rgba(201,162,90,.18),rgba(201,162,90,.05)); color: var(--gold-ink); border: 1px solid rgba(201,162,90,.25); }
.map-consent .mc-ico svg { width: 28px; height: 28px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: .95em; --pad-x: 1.5em;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  border-radius: 100px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s;
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.99); }

.btn--gold { background: var(--grad-gold-btn); color: #2a2008; box-shadow: var(--shadow-gold); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg,transparent 20%,rgba(255,255,255,.55) 50%,transparent 80%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn--gold:hover::after { transform: translateX(120%); }

.btn--dark { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--dark:hover { background: var(--ink-2); }

.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold); background: rgba(201,162,90,.08); }
.section--dark .btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--gold-hi); background: rgba(240,220,171,.1); }

.btn--wa { background: var(--whatsapp); color: #04310f; box-shadow: 0 14px 30px -14px rgba(37,211,102,.7); }
.btn--wa:hover { background: #1fc45d; }

.btn--lg { --pad-y: 1.1em; --pad-x: 1.9em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .5em 1em; border-radius: 100px; font-size: .85rem; font-weight: 600;
  background: rgba(201,162,90,.12); color: var(--gold-ink); border: 1px solid rgba(201,162,90,.25);
}
.chip svg { width: 1.05em; height: 1.05em; }

/* =====================================================================
   HEADER
   ===================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease), background-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.header::before {
  content:""; position:absolute; inset:0; background: rgba(251,246,236,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .4s; border-bottom: 1px solid transparent;
}
.header.scrolled { height: 68px; }
.header.scrolled::before { opacity: 1; border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; position: relative; }

.brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.brand img { height: 64px; width: auto; transition: height .4s var(--ease); }
.header.scrolled .brand img { height: 50px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b { font-family: var(--font-head); font-size: 1.12rem; letter-spacing: .01em; }
.brand-txt span { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  position: relative; padding: .5rem .85rem; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85);
  border-radius: 8px; transition: color .25s; text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.nav a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem; height: 2px;
  background: var(--grad-gold); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
/* once scrolled the header has a cream background → switch text to dark */
.header.scrolled .nav a { color: var(--ink-soft); text-shadow: none; }
.header.scrolled .nav a:hover, .header.scrolled .nav a.active { color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: .7rem; z-index: 2; }

/* language switcher */
.lang { position: relative; }
.lang-btn { display: flex; align-items: center; gap: .4em; padding: .5em .8em; border-radius: 100px; font-weight: 700; font-size: .85rem; color: rgba(255,255,255,.9); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.32); transition: box-shadow .25s,color .25s; }
.lang-btn:hover { box-shadow: inset 0 0 0 1.5px var(--gold-hi); color: #fff; }
.header.scrolled .lang-btn { color: var(--ink-soft); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.header.scrolled .lang-btn:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--ink); }
.lang-btn svg { width: 1.1em; height: 1.1em; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 168px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow); padding: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .28s var(--ease); z-index: 50;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: .6em; padding: .6em .8em; border-radius: 8px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); transition: background .2s,color .2s; }
.lang-menu a:hover { background: rgba(201,162,90,.12); color: var(--ink); }
.lang-menu a.current { color: var(--gold-ink); }
.lang-menu a span.flag { font-size: 1.05rem; }

/* burger */
.burger { display: none; width: 46px; height: 46px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.32); position: relative; }
.header.scrolled .burger { box-shadow: inset 0 0 0 1.5px var(--line-2); }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.header.scrolled .burger span { background: var(--ink); }
body.menu-open .burger { box-shadow: inset 0 0 0 1.5px var(--line-2); }
body.menu-open .burger span { background: var(--ink); }
.burger span:nth-child(1){ top: 16px; } .burger span:nth-child(2){ top: 22px; } .burger span:nth-child(3){ top: 28px; }
body.menu-open .burger span:nth-child(1){ top: 22px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 22px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--cream);
  padding: calc(var(--header-h) + 20px) clamp(24px,7vw,48px) 40px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a.m-link { font-family: var(--font-head); font-size: 1.7rem; padding: .55rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.mobile-nav a.m-link span { color: var(--gold); font-family: var(--font-body); font-size: 1rem; }
.mobile-cta { margin-top: auto; padding-top: 28px; display: grid; gap: 12px; }

/* language selector inside the mobile drawer (the header switcher is hidden < 1080px) */
.mobile-lang { display: none; flex-wrap: wrap; align-items: center; gap: .55rem; margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.mobile-lang .ml-globe { display: inline-flex; color: var(--gold-ink); margin-right: .15rem; }
.mobile-lang .ml-globe svg { width: 20px; height: 20px; }
.mobile-lang a { display: inline-flex; align-items: center; gap: .45em; padding: .5em .9em; border-radius: 100px; font-weight: 600; font-size: .95rem; color: var(--ink-soft); box-shadow: inset 0 0 0 1.5px var(--line-2); transition: box-shadow .2s, color .2s, background-color .2s; }
.mobile-lang a .flag { font-size: 1.05rem; }
.mobile-lang a:hover { box-shadow: inset 0 0 0 1.5px var(--gold); color: var(--ink); }
.mobile-lang a.current { color: var(--gold-ink); background: rgba(201,162,90,.1); box-shadow: inset 0 0 0 1.5px var(--gold); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(40px,7vw,90px)); padding-bottom: clamp(60px,8vw,110px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(24,19,12,.92) 0%, rgba(28,22,14,.78) 40%, rgba(30,23,14,.34) 72%, rgba(30,23,14,.1) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.hero-copy { color: #fff; position: relative; }
.hero-copy .eyebrow { color: var(--gold-hi); }
.hero h1 { color: #fff; margin-top: 1rem; }
.hero h1 .gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { color: rgba(255,255,255,.82); font-size: clamp(1.05rem,1.6vw,1.28rem); margin-top: 1.4rem; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 2.4rem; }
.hero-meta div { color: #fff; }
.hero-meta b { font-family: var(--font-head); font-size: 1.9rem; display: block; line-height: 1; color: var(--gold-hi); }
.hero-meta span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.66); }

/* hero rating card (floating) */
.hero-card {
  position: relative; background: var(--card); border-radius: var(--r-lg); padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
  animation: floaty 6s ease-in-out 1s infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floaty-sm { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* hero copy entrance on load */
.hero-copy > * { animation: heroUp .85s var(--ease-out) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .15s; }
.hero-copy > *:nth-child(3) { animation-delay: .25s; }
.hero-copy > *:nth-child(4) { animation-delay: .35s; }
.hero-copy > *:nth-child(5) { animation-delay: .45s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-card .rating-top { display: flex; align-items: center; gap: 1rem; }
.rating-num { font-family: var(--font-head); font-size: 3rem; line-height: 1; color: var(--ink); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 20px; height: 20px; }
.hero-card .rating-sub { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.hero-card .g-badge { display: inline-flex; align-items: center; gap: .5em; margin-top: 1rem; font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.hero-card .g-badge img, .hero-card .g-badge svg { width: 20px; height: 20px; }
.hero-card .mini-quote { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); font-style: italic; }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.page-hero { position: relative; padding-top: calc(var(--header-h) + clamp(52px,8vw,96px)); padding-bottom: clamp(52px,8vw,96px); overflow: hidden; color: #fff; }
.page-hero .hero-bg::after { background: linear-gradient(180deg, rgba(22,17,10,.78), rgba(22,17,10,.6)), linear-gradient(100deg, rgba(22,17,10,.9), rgba(22,17,10,.35)); }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .eyebrow { color: var(--gold-hi); }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-top: 1.1rem; max-width: 56ch; }
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.breadcrumb { display: flex; align-items: center; gap: .5em; font-size: .85rem; color: rgba(255,255,255,.66); margin-bottom: 1.1rem; }
.breadcrumb a { color: rgba(255,255,255,.66); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-hi); }
.breadcrumb span { opacity: .5; }

/* numbered steps */
.step-num { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: #2a2008; background: var(--grad-gold-btn); flex: none; }

/* category / price list */
.cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,22px); }
.cat { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.3rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,162,90,.4); }
.cat .cat-ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(150deg,rgba(201,162,90,.16),rgba(201,162,90,.05)); color: var(--gold-ink); border: 1px solid rgba(201,162,90,.22); flex: none; }
.cat .cat-ico svg { width: 26px; height: 26px; }
.cat b { display: block; font-size: 1.02rem; }
.cat span { font-size: .85rem; color: var(--muted); }

/* info tiles (contact) */
.info-tile { display: flex; gap: 1rem; padding: 1.4rem 1.5rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--r); }
.info-tile .it-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: linear-gradient(150deg,rgba(201,162,90,.16),rgba(201,162,90,.05)); color: var(--gold-ink); border: 1px solid rgba(201,162,90,.22); flex: none; }
.info-tile .it-ico svg { width: 24px; height: 24px; }
.info-tile h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.info-tile a, .info-tile p { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.info-tile a:hover { color: var(--gold-ink); }
.info-tile .it-sub { font-weight: 400; font-size: .9rem; color: var(--muted); margin-top: .2rem; }

.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }

.hours-list { display: grid; gap: .2rem; }
.hours-row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours-row.today { color: var(--gold-ink); font-weight: 700; }
.hours-row b { font-weight: 700; }
.hours-row .closed { color: var(--muted); }

/* alert / success */
.form-ok { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r-sm); background: rgba(47,125,91,.12); color: var(--green); font-weight: 600; font-size: .95rem; border: 1px solid rgba(47,125,91,.3); }

/* pill row */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { padding: .55em 1.05em; border-radius: 100px; background: var(--cream-2); border: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.section--dark .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.86); }

/* lead paragraph */
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* =====================================================================
   TRUST STRIP / STATS
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,3vw,40px); }
.stat { text-align: center; position: relative; }
.stat b { font-family: var(--font-head); font-size: clamp(2.8rem,5vw,4rem); line-height: 1; display: block; color: var(--gold-deep); font-weight: 800; }
/* stronger, darker gold so numbers read clearly on the cream background */
.stat b .gold-text { background: linear-gradient(120deg,#7a5a1e,#b7862c 55%,#8a6a2f); -webkit-background-clip: text; background-clip:text; -webkit-text-fill-color: transparent; }
.stat span { display: block; margin-top: .7rem; font-size: .98rem; color: var(--ink-soft); font-weight: 600; letter-spacing: .01em; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 10%; height: 80%; width: 1px; background: var(--line); transform: translateX(-50%); }

/* =====================================================================
   CARDS — services
   ===================================================================== */
.grid { display: grid; gap: clamp(18px,2.4vw,28px); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem,2.4vw,2.1rem);
  position: relative; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card::before { content:""; position:absolute; inset:0 0 auto 0; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.2rem;
  background: linear-gradient(150deg,rgba(201,162,90,.16),rgba(201,162,90,.05)); color: var(--gold-ink);
  border: 1px solid rgba(201,162,90,.22); transition: transform .5s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.3rem; }
.card p { margin-top: .6rem; font-size: .98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: .4em; margin-top: 1.1rem; font-weight: 700; color: var(--gold-ink); font-size: .95rem; }
.card .card-link svg { width: 1.05em; height: 1.05em; transition: transform .3s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* feature list */
.feat-list { display: grid; gap: .9rem; }
.feat-list li { display: flex; gap: .8rem; align-items: flex-start; }
.feat-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(47,125,91,.12); color: var(--green); display: grid; place-items: center; margin-top: 2px; }
.feat-list .tick svg { width: 15px; height: 15px; }
.feat-list b { display: block; }
.feat-list p { font-size: .95rem; margin: 0; }
.section--dark .feat-list .tick { background: rgba(240,220,171,.14); color: var(--gold-hi); }

/* split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split-media { position: relative; }   /* stable containing block for floating badges */
.split--rev .split-media { order: 2; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame.tall img { aspect-ratio: 4/5; }
.media-badge {
  position: absolute; background: var(--card); border-radius: var(--r); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .8rem;
}
.media-badge.br { right: -14px; bottom: 24px; animation: floaty-sm 5.5s ease-in-out 1.4s infinite; }
.media-badge.bl { left: -14px; bottom: 24px; animation: floaty-sm 5.5s ease-in-out 1.4s infinite; }
.media-badge .mb-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-gold-btn); color: #2a2008; display: grid; place-items: center; }
.media-badge .mb-ico svg { width: 22px; height: 22px; }
.media-badge b { display: block; font-family: var(--font-head); font-size: 1.15rem; line-height: 1.1; color: var(--ink); }
.media-badge span { display: block; font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* =====================================================================
   BRAND MARQUEE
   ===================================================================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image: linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track { display: flex; gap: clamp(40px,6vw,84px); width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-head); font-size: clamp(1.4rem,2.4vw,2rem); font-weight: 700; color: var(--ink); opacity: .34; white-space: nowrap; transition: opacity .3s, color .3s; letter-spacing: .02em; }
.marquee-track span:hover { opacity: 1; color: var(--gold-ink); }
@keyframes marquee { to { transform: translateX(-50%); } }
.section--dark .marquee-track span { color: #fff; opacity: .4; }
.section--dark .marquee-track span:hover { color: var(--gold-hi); opacity: 1; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.rev-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.rev-score { display: flex; align-items: center; gap: 1.2rem; }
.rev-score .big { font-family: var(--font-head); font-size: 4rem; line-height: .9; color: var(--ink); }
.rev-score .stars svg { width: 22px; height: 22px; }
.rev-score .sub { color: var(--muted); font-size: .92rem; margin-top: .35rem; }

.reviews-grid { columns: 3; column-gap: clamp(18px,2.4vw,26px); }
.review {
  break-inside: avoid; margin-bottom: clamp(18px,2.4vw,26px); background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review .stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: .8rem; }
.review .stars svg { width: 17px; height: 17px; }
.review-text { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; }
.review-foot { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #2a2008; background: var(--grad-gold-btn); font-size: 1rem; flex: none; }
.review-foot b { display: block; font-size: .95rem; }
.review-foot span { font-size: .78rem; color: var(--muted); }
.review .src { margin-left: auto; opacity: .6; }
.review .src svg { width: 20px; height: 20px; }
.review .translated { font-size: .72rem; color: var(--muted); font-style: italic; margin-top: .7rem; opacity: .8; }

/* =====================================================================
   FORM (repair request)
   ===================================================================== */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.6rem,3vw,2.6rem); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95em 1.1em; border-radius: var(--r-sm); border: 1.5px solid var(--line-2); background: #fff;
  font-size: 1rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,90,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .4rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 0; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; box-shadow: inset 0 0 0 1.5px var(--line-2); transition: .35s var(--ease); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--gold-ink); border-radius: 2px; }
.faq-q .pm::before { width: 13px; height: 2px; } .faq-q .pm::after { width: 2px; height: 13px; transition: transform .35s var(--ease); }
.faq-item.open .pm { background: var(--grad-gold-btn); box-shadow: none; }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #2a2008; }
.faq-item.open .pm::after { transform: rotate(90deg) scaleX(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--ink-soft); max-width: 68ch; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(2.4rem,5vw,4rem); background: var(--ink); color: #fff; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(120% 140% at 100% 0%, rgba(201,162,90,.28), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.76); margin-top: .8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.8rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: clamp(56px,7vw,88px); }
.footer a { color: rgba(255,255,255,.7); transition: color .25s; }
.footer a:hover { color: var(--gold-hi); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 54px; margin-bottom: 1.2rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.footer ul { display: grid; gap: .7rem; font-size: .95rem; }
.footer .contact-line { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; margin-bottom: .8rem; }
.footer .contact-line svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 26px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); }

/* subtle studio credit */
.footer-credit { text-align: center; padding: 0 clamp(20px,5vw,48px) 24px; font-size: .76rem; letter-spacing: .02em; color: rgba(255,255,255,.32); }
.footer-credit a { color: rgba(255,255,255,.5); font-weight: 600; transition: color .25s; }
.footer-credit a:hover { color: var(--gold-hi); }

/* =====================================================================
   STICKY MOBILE ACTION BAR
   ===================================================================== */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-2); box-shadow: 0 -8px 30px -12px rgba(0,0,0,.25); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5em; padding: 1em; font-weight: 700; font-size: .95rem; background: var(--card); }
.mobile-bar a svg { width: 1.2em; height: 1.2em; }
.mobile-bar a.call { color: var(--ink); }
.mobile-bar a.wa { background: var(--whatsapp); color: #04310f; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d,0ms); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d,0ms); }
.reveal-r.in { opacity: 1; transform: none; }
.reveal-sc { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d,0ms); }
.reveal-sc.in { opacity: 1; transform: none; }

/* gold shimmer for hero heading accent */
.shimmer { position: relative; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  /* contain any horizontal overflow (reveal slide-ins, brand marquee, off-canvas
     drawer) so phones/tablets never scroll sideways. clip (not hidden) keeps the
     fixed header + sticky behaviour intact and does not add a scroll container. */
  html { overflow-x: clip; }
  .nav { display: none; }
  .burger { display: block; }
  .lang { display: none; }
  .mobile-lang { display: flex; }   /* language switcher moves into the drawer */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 420px; }
  .reviews-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }   /* was fixed 3-up → overflowed */
  .cat { min-width: 0; }                          /* let cards shrink, no sideways spill */
  .split, .hero-grid { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .stat:nth-child(3)::before { display: none; }
  .reviews-grid { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; }
  .rev-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .stats { gap: 28px 12px; }
  .brand-txt { display: none; }
  .hero-meta b { font-size: 1.6rem; }
  .media-badge { display: none; }
}

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