/* ==========================================================================
   Film Ethiopia — filmethiopia.com
   Cinematic dark design system. Edit the tokens below to restyle the site.
   ========================================================================== */

:root {
  /* Colour */
  --bg:            #08080a;
  --bg-2:          #0e0e11;
  --surface:       #141418;
  --surface-2:     #1b1b21;
  --line:          rgba(255,255,255,.10);
  --line-strong:   rgba(255,255,255,.20);
  --text:          #ecedf0;
  --text-dim:      #a5a6ae;
  --text-faint:    #74757e;

  --gold:          #d2a441;
  --gold-bright:   #e8bd5c;
  --gold-dim:      rgba(210,164,65,.14);
  --et-green:      #1f8a4c;
  --et-yellow:     #f2c500;
  --et-red:        #d62b2b;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale — fluid */
  --fs-hero:  clamp(2.6rem, 1.35rem + 5.4vw, 6rem);
  --fs-h1:    clamp(2.1rem, 1.35rem + 3.2vw, 4rem);
  --fs-h2:    clamp(1.65rem, 1.2rem + 1.9vw, 2.7rem);
  --fs-h3:    clamp(1.2rem, 1.05rem + .6vw, 1.55rem);
  --fs-lead:  clamp(1.06rem, 1rem + .45vw, 1.32rem);
  --fs-body:  clamp(1rem, .97rem + .17vw, 1.09rem);
  --fs-sm:    .9rem;
  --fs-xs:    .78rem;

  /* Space */
  --gut: clamp(1.15rem, .6rem + 2.2vw, 3rem);
  --sec: clamp(3.6rem, 2rem + 6vw, 8rem);
  --maxw: 1280px;
  --maxw-text: 74ch;

  --r: 4px;
  --r-lg: 8px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.85);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "kern","liga";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: #12100a; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
p  { text-wrap: pretty; }
strong { font-weight: 600; color: #fff; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.15rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }
.eyebrow.is-plain::before { display: none; }

.lead { font-size: var(--fs-lead); color: var(--text-dim); line-height: 1.62; }
.prose { max-width: var(--maxw-text); }
.prose p + p { margin-top: 1.1em; }
.prose h2 { margin: 2.4em 0 .7em; }
.prose h3 { margin: 2em 0 .55em; }
.prose ul { margin: 1.2em 0; padding: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.6rem; margin-bottom: .62rem; color: var(--text-dim); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg);
}
.prose a { color: var(--gold-bright); text-underline-offset: .22em; text-decoration-thickness: 1px; }
.prose a:hover { color: #fff; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 900px; }
.section { padding-block: var(--sec); position: relative; }
.section--tight { padding-block: calc(var(--sec) * .58); }
.section--alt { background: var(--bg-2); }
.section--line { border-top: 1px solid var(--line); }
.grid { display: grid; gap: clamp(1.1rem, .6rem + 1.4vw, 2rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 215px), 1fr)); }
.split { display: grid; gap: clamp(1.8rem, 1rem + 3vw, 4.5rem); align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--wide { grid-template-columns: 1.25fr 1fr; } }
.stack > * + * { margin-top: 1.1rem; }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 1rem + 2.6vw, 3.5rem); }
.section-head .lead { margin-top: 1rem; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: #12100a; padding: .75rem 1.2rem; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck, .hdr.is-open {
  background: rgba(8,8,10,.9);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 1.2rem; height: 74px; }
@media (min-width: 1100px) { .hdr__in { height: 86px; } }

.logo { display: flex; align-items: baseline; gap: .5rem; text-decoration: none; flex: none; }
.logo b { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: -.02em; }
.logo span { font-family: var(--font-display); font-size: 1.32rem; font-weight: 400; color: var(--gold); }
.logo em {
  font-style: normal; font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-faint); border-left: 1px solid var(--line-strong); padding-left: .55rem; align-self: center;
}
@media (max-width: 420px) { .logo em { display: none; } }

.nav { margin-left: auto; display: none; }
@media (min-width: 1100px) { .nav { display: flex; align-items: center; gap: .15rem; } }
.nav a, .nav button {
  background: none; border: 0; cursor: pointer;
  font-size: .875rem; font-weight: 500; letter-spacing: .01em;
  padding: .55rem .78rem; border-radius: var(--r);
  color: var(--text-dim); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: .34rem;
  transition: color .2s;
}
.nav a:hover, .nav button:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"] { color: var(--gold); }

.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: .6rem; min-width: 270px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s;
}
.menu { max-width: min(560px, calc(100vw - 2rem)); }
.menu--wide { min-width: min(540px, calc(100vw - 2rem)); display: grid; grid-template-columns: 1fr 1fr; gap: .1rem; }
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu a { display: block; padding: .5rem .7rem; font-size: .845rem; border-radius: var(--r); color: var(--text-dim); }
.menu a:hover { background: var(--surface-2); color: #fff; }
.menu .menu__all { color: var(--gold); border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .6rem; grid-column: 1/-1; }
.caret { width: 9px; height: 9px; opacity: .55; }

.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: .55rem; }
@media (min-width: 1100px) { .hdr__cta { margin-left: 1rem; } }

/* WhatsApp button in the header, beside Request a quote */
.hdr__wa { gap: .45rem; padding-inline: 1.05rem; }
.hdr__wa-ico { display: none; }
.hdr__wa-ico svg { width: 18px; height: 18px; display: block; }
/* Below 900px collapse to the icon so both buttons still fit */
@media (max-width: 899px) {
  .hdr__wa-txt { display: none; }
  .hdr__wa-ico { display: block; }
  .hdr__wa { padding-inline: .72rem; }
}
/* Very narrow phones: the floating WhatsApp bubble covers this, so drop it */
@media (max-width: 400px) { .hdr__wa { display: none; } }

/* WhatsApp icon inside full-size buttons */
.btn--wa svg { width: 18px; height: 18px; flex: none; }

.burger {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line); border-radius: var(--r); cursor: pointer;
}
@media (min-width: 1100px) { .burger { display: none; } }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--text); position: relative; transition: .25s var(--ease); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--text); transition: .25s var(--ease);
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.hdr.is-open .burger span { background: transparent; }
.hdr.is-open .burger span::before { top: 0; transform: rotate(45deg); }
.hdr.is-open .burger span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 74px 0 0 0; z-index: 99;
  background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
  padding: 1.4rem var(--gut) 5rem;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1100px) { .drawer { display: none; } }
.drawer details { border-bottom: 1px solid var(--line); }
.drawer summary {
  list-style: none; cursor: pointer; padding: 1rem 0;
  font-family: var(--font-display); font-size: 1.28rem;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary::after { content: "+"; color: var(--gold); font-family: var(--font-body); font-size: 1.3rem; }
.drawer details[open] summary::after { content: "–"; }
.drawer details > div { padding-bottom: 1rem; display: grid; gap: .1rem; }
.drawer details > div a { padding: .5rem 0 .5rem .9rem; color: var(--text-dim); text-decoration: none; font-size: .95rem; border-left: 1px solid var(--line); }
.drawer details > div a:hover { color: var(--gold); border-left-color: var(--gold); }
.drawer > a {
  display: block; padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-size: 1.28rem; text-decoration: none;
}
.drawer__foot { margin-top: 2rem; display: grid; gap: .7rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem; border-radius: var(--r); border: 1px solid transparent;
  font-size: .875rem; font-weight: 600; letter-spacing: .015em;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background .22s var(--ease), color .22s, border-color .22s, transform .22s;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: #14100a; }
.btn--gold:hover { background: var(--gold-bright); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--wa { background: #1faa54; color: #04140a; }
.btn--wa:hover { background: #27c163; }
.btn--sm { padding: .58rem 1.05rem; font-size: .8rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold); font-weight: 600; font-size: .855rem; text-decoration: none;
  letter-spacing: .02em;
}
.arrow-link svg { transition: transform .25s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(94svh, 940px); display: flex; align-items: flex-end; padding-block: 8rem 3.4rem; overflow: hidden; }
.hero--sub { min-height: min(62svh, 620px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(8,8,10,.82) 32%, rgba(8,8,10,.45) 62%, rgba(8,8,10,.72) 100%),
    linear-gradient(to right, rgba(8,8,10,.86) 0%, rgba(8,8,10,.28) 62%, rgba(8,8,10,.5) 100%);
}
.hero__in { position: relative; z-index: 1; width: 100%; }
.hero h1 { font-size: var(--fs-hero); max-width: 17ch; }
.hero--sub h1 { font-size: var(--fs-h1); max-width: 22ch; }
.hero .lead { max-width: 62ch; margin-top: 1.4rem; }
.hero .btn-row { margin-top: 2.1rem; }

.hero__meta {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem;
}
.hero__meta div { min-width: 110px; }
.hero__meta b { display: block; font-family: var(--font-display); font-size: 1.65rem; color: var(--gold); line-height: 1; }
.hero__meta span { display: block; font-size: var(--fs-xs); color: var(--text-faint); margin-top: .42rem; letter-spacing: .04em; }

/* Film-strip rec dot */
.rec { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); }
.rec::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--et-red); animation: blink 2.2s infinite; }
@keyframes blink { 0%,45% { opacity: 1; } 55%,100% { opacity: .2; } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: var(--fs-xs); color: var(--text-faint); letter-spacing: .04em; margin-bottom: 1.4rem; }
.crumbs a { text-decoration: none; color: var(--text-faint); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin-inline: .5rem; opacity: .5; }

/* ---------- Answer block (AI/featured-snippet target) ---------- */
.answer {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: linear-gradient(100deg, var(--gold-dim), transparent 62%);
  padding: clamp(1.3rem, .9rem + 1.4vw, 2.1rem);
  border-radius: var(--r);
}
.answer h2, .answer .answer__q {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.answer p { font-size: var(--fs-lead); line-height: 1.6; max-width: 82ch; }

/* ---------- Cards ---------- */
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none; position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); background: var(--surface-2); }
.card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .55rem; }
.card__body p { color: var(--text-dim); font-size: .93rem; line-height: 1.6; }
.card__foot { margin-top: auto; padding-top: 1.05rem; }
.card__tag {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  background: rgba(8,8,10,.82); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: 2px;
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  padding: .3rem .6rem; color: var(--text);
}

/* Service card (no image) */
.scard {
  display: flex; flex-direction: column; gap: .8rem;
  padding: clamp(1.3rem, 1rem + .8vw, 1.9rem);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  text-decoration: none; transition: border-color .3s, background .3s, transform .3s var(--ease);
  position: relative; overflow: hidden;
}
.scard::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.scard:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateY(-3px); }
.scard:hover::after { transform: scaleX(1); }
.scard__ico { width: 34px; height: 34px; color: var(--gold); }
.scard h3 { font-size: 1.18rem; }
.scard p { color: var(--text-dim); font-size: .91rem; line-height: 1.62; flex: 1; }

/* Edge / feature list */
.edge {
  padding: clamp(1.4rem, 1rem + 1vw, 2.1rem);
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  position: relative;
}
.edge__n {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong); display: block; margin-bottom: .9rem;
}
.edge h3 { margin-bottom: .7rem; }
.edge p { color: var(--text-dim); font-size: .945rem; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stats > div { background: var(--bg); padding: clamp(1.4rem, 1rem + 1.4vw, 2.4rem) 1.2rem; text-align: center; }
.stats b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 1.4rem + 2.2vw, 3.3rem); color: var(--gold); line-height: 1; }
.stats span { display: block; margin-top: .6rem; font-size: var(--fs-xs); letter-spacing: .07em; color: var(--text-faint); text-transform: uppercase; }

/* Marquee of client names */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.35rem; position: relative; }
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
.marquee__track { display: flex; gap: 3.2rem; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-size: 1.12rem; color: var(--text-faint); white-space: nowrap; letter-spacing: .01em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Testimonials */
.quote {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface);
  padding: clamp(1.5rem, 1.1rem + 1.2vw, 2.3rem); display: flex; flex-direction: column; gap: 1.2rem;
}
.quote blockquote { font-family: var(--font-display); font-size: clamp(1.02rem, .96rem + .4vw, 1.24rem); line-height: 1.5; flex: 1; }
.quote blockquote::before { content: "“"; color: var(--gold); font-size: 2.4em; line-height: 0; vertical-align: -.32em; margin-right: .06em; }
.quote footer { display: flex; flex-direction: column; gap: .15rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.quote cite { font-style: normal; font-weight: 600; font-size: .93rem; }
.quote small { color: var(--text-faint); font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; }

/* Fact table */
.facts { width: 100%; border-collapse: collapse; font-size: .93rem; margin: 1.6rem 0; }
.facts caption { text-align: left; font-size: var(--fs-xs); letter-spacing: .15em; text-transform: uppercase; color: var(--gold); padding-bottom: .8rem; }
.facts th, .facts td { text-align: left; padding: .82rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.facts thead th { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; background: var(--surface); }
.facts tbody tr:hover { background: var(--surface); }
.facts td:first-child { color: #fff; font-weight: 500; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Definition strip (location key facts) */
.keyfacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,190px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin: 2rem 0; }
.keyfacts div { background: var(--surface); padding: 1.1rem 1.2rem; }
.keyfacts dt { font-size: var(--fs-xs); letter-spacing: .11em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .38rem; }
.keyfacts dd { margin: 0; font-size: .94rem; color: #fff; }

/* Spot list */
.spots { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.spots article { background: var(--surface); padding: clamp(1.2rem, .9rem + .9vw, 1.8rem); }
.spots h3 { font-size: 1.13rem; margin-bottom: .5rem; color: #fff; }
.spots p { color: var(--text-dim); font-size: .93rem; }

/* Accordion / FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.6rem 1.25rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.04rem, .98rem + .34vw, 1.24rem); line-height: 1.35;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.65rem;
  width: 11px; height: 11px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.9rem; }
.faq details > div { padding: 0 2.6rem 1.5rem 0; color: var(--text-dim); max-width: 84ch; }

/* Gallery */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: .55rem; }
.gal button {
  padding: 0; border: 0; background: var(--bg-2); cursor: zoom-in; overflow: hidden; border-radius: var(--r);
  aspect-ratio: 3/2; position: relative;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.gal button:hover img { transform: scale(1.05); opacity: .82; }
.gal--tall button:nth-child(4n+1) { grid-row: span 2; aspect-ratio: 3/4; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(4,4,6,.96); padding: clamp(1rem, 3vw, 3rem);
  align-items: center; justify-content: center;
}
.lb.is-open { display: flex; }
.lb img { max-width: 100%; max-height: 82svh; object-fit: contain; border-radius: var(--r); }
.lb figcaption { color: var(--text-dim); font-size: .87rem; text-align: center; margin-top: 1rem; max-width: 70ch; margin-inline: auto; }
.lb__x, .lb__nav {
  position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; color: #fff;
  display: grid; place-items: center; font-size: 1.2rem; line-height: 1;
}
.lb__x { top: 1.1rem; right: 1.1rem; }
.lb__nav.prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb__nav.next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb__x:hover, .lb__nav:hover { background: var(--gold); color: #12100a; border-color: var(--gold); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filters button {
  background: none; border: 1px solid var(--line); border-radius: 100px; cursor: pointer;
  padding: .48rem 1.05rem; font-size: .82rem; color: var(--text-dim); transition: .2s;
}
.filters button:hover { border-color: var(--line-strong); color: #fff; }
.filters button[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #14100a; font-weight: 600; }

/* Pills / tags */
.pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.pill {
  font-size: var(--fs-xs); padding: .3rem .72rem; border: 1px solid var(--line);
  border-radius: 100px; color: var(--text-dim); background: var(--surface);
}
.pill--gold { border-color: rgba(210,164,65,.4); color: var(--gold); background: var(--gold-dim); }

/* Coverage list */
.coverage { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,250px), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.coverage div { background: var(--surface); padding: 1.15rem 1.3rem; }
.coverage b { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .3rem; }
.coverage span { font-size: .85rem; color: var(--text-faint); line-height: 1.5; display: block; }

/* Steps */
.steps { counter-reset: s; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.steps > div { background: var(--surface); padding: clamp(1.3rem,1rem+1vw,2rem); counter-increment: s; position: relative; }
.steps > div::before {
  content: "0" counter(s); font-family: var(--font-display); font-size: .95rem; color: var(--gold);
  letter-spacing: .1em; display: block; margin-bottom: .8rem;
}
.steps h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.steps p { color: var(--text-dim); font-size: .93rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* Media + text block */
.figure { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.figure img { width: 100%; }
.figure figcaption { padding: .85rem 1.1rem; font-size: var(--fs-xs); color: var(--text-faint); border-top: 1px solid var(--line); }
.sticky { position: sticky; top: 110px; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: .82rem .95rem; font-size: .95rem; width: 100%;
  transition: border-color .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--surface-2); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23a5a6ae'><path d='M6 8L2 4h8z'/></svg>"); background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.4rem; }
.field--2 { display: grid; gap: 1.05rem; }
@media (min-width: 620px) { .field--2 { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; }
.form__note { font-size: var(--fs-xs); color: var(--text-faint); line-height: 1.6; }
.form__status { font-size: .9rem; padding: .85rem 1rem; border-radius: var(--r); display: none; }
.form__status.ok { display: block; background: rgba(31,138,76,.14); border: 1px solid rgba(31,138,76,.4); color: #6fe0a0; }
.form__status.err { display: block; background: rgba(214,43,43,.12); border: 1px solid rgba(214,43,43,.4); color: #ff9b9b; }

/* Contact rail */
.crail { display: grid; gap: .1rem; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--line); }
.crail a, .crail div { background: var(--surface); padding: 1.1rem 1.3rem; text-decoration: none; display: block; transition: background .2s; }
.crail a:hover { background: var(--surface-2); }
.crail small { display: block; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: .3rem; }
.crail b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: #fff; word-break: break-word; }

/* ---------- CTA band ---------- */
.cta {
  position: relative; overflow: hidden; border-top: 1px solid var(--line);
  background: linear-gradient(140deg, var(--bg-2), var(--bg) 65%);
}
.cta__in { position: relative; z-index: 1; text-align: center; max-width: 760px; margin-inline: auto; }
.cta h2 { margin-bottom: 1.1rem; }
.cta .btn-row { justify-content: center; margin-top: 2rem; }
.cta__strip { display: flex; height: 3px; margin-top: 3rem; }
.cta__strip i { flex: 1; }
.cta__strip i:nth-child(1) { background: var(--et-green); }
.cta__strip i:nth-child(2) { background: var(--et-yellow); }
.cta__strip i:nth-child(3) { background: var(--et-red); }

/* ---------- Footer ---------- */
.ftr { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: clamp(3rem, 2rem + 3vw, 5rem) 2rem; }
.ftr__grid { display: grid; gap: 2.4rem; }
@media (min-width: 760px) { .ftr__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.ftr h4 { font-family: var(--font-body); font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.05rem; font-weight: 700; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.ftr a { color: var(--text-dim); text-decoration: none; font-size: .89rem; }
.ftr a:hover { color: #fff; }
.ftr p { color: var(--text-faint); font-size: .89rem; max-width: 42ch; }
.ftr__bot {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: var(--fs-xs); color: var(--text-faint);
}
.ftr__bot nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: clamp(1rem, 2vw, 1.8rem); bottom: clamp(1rem, 2vw, 1.8rem); z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #1faa54; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px -6px rgba(0,0,0,.7);
  text-decoration: none; transition: transform .25s var(--ease), background .25s;
}
.wa-float:hover { transform: scale(1.08); background: #27c163; }
.wa-float svg { width: 27px; height: 27px; }

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* Utility */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.dim { color: var(--text-dim); }
.hide { display: none !important; }
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media print {
  .hdr, .drawer, .wa-float, .cta, .filters { display: none !important; }
  body { background: #fff; color: #000; }
}
