/* ============================================================
   The OF Agency — Design System
   Premium + vibrant balance. Mobile-first. Dark default + light.
   Palette: deep navy/black base · metallic gold · pink/magenta
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---- Tokens ---- */
:root {
  --navy-900: #070912;
  --navy-850: #0B0E1A;
  --navy-800: #111422;
  --navy-card: #121627;
  --navy-card-2: #161B30;
  --ink: #EEF1F8;
  --ink-soft: #AEB6CC;
  --ink-dim: #7E879F;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);

  --gold: #E8B53C;
  --gold-2: #FFE7A0;
  --gold-deep: #C9962B;
  --pink: #FF4FA0;
  --pink-2: #FF7FC0;
  --magenta: #C724B1;
  --violet: #A14DFF;
  --blue: #3D5AFE;
  --cyan: #16C2D5;

  --grad-gold: linear-gradient(135deg, #FFE7A0 0%, #E8B53C 45%, #C9962B 100%);
  --grad-pink: linear-gradient(135deg, #FF7FC0 0%, #C724B1 100%);
  --grad-vibe: linear-gradient(120deg, #FF4FA0 0%, #A14DFF 50%, #3D5AFE 100%);
  --grad-cta:  linear-gradient(135deg, #FF4FA0 0%, #C724B1 100%);

  --bg: var(--navy-850);
  --bg-elev: var(--navy-card);
  --shadow-lg: 0 24px 60px -20px rgba(0,0,0,0.65);
  --shadow-glow: 0 0 0 1px var(--line), 0 20px 50px -24px rgba(199,36,177,0.45);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --maxw: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2rem);
  --font-head: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

[data-theme="light"] {
  --navy-850: #F6F7FB;
  --navy-card: #FFFFFF;
  --navy-card-2: #F1F3FA;
  --ink: #14182A;
  --ink-soft: #4A5169;
  --ink-dim: #6B7286;
  --line: rgba(10,15,40,0.10);
  --line-strong: rgba(10,15,40,0.18);
  --bg: #F6F7FB;
  --shadow-lg: 0 20px 50px -22px rgba(20,24,42,0.22);
  --shadow-glow: 0 0 0 1px var(--line), 0 20px 50px -24px rgba(199,36,177,0.25);
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }
:focus-visible { outline: 3px solid var(--pink-2); outline-offset: 3px; border-radius: 6px; }

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--grad-gold); border-radius: 2px; }

.section-title { font-size: clamp(1.85rem, 5.2vw, 3rem); margin-top: .7rem; }
.section-title .accent { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-title .accent-pink { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--ink-soft); font-size: clamp(1rem, 2.4vw, 1.18rem); max-width: 62ch; }
.section-head { max-width: 70ch; }
.section-head.center { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  --pad-y: 0.95rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer; min-height: 48px; text-align: center;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad-cta); color: #fff; box-shadow: 0 14px 34px -12px rgba(199,36,177,0.7); }
.btn-primary:hover { box-shadow: 0 18px 44px -10px rgba(199,36,177,0.9); transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: #1a1205; box-shadow: 0 14px 34px -14px rgba(232,181,60,0.8); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(232,181,60,0.95); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
[data-theme="light"] .btn-ghost { background: rgba(10,15,40,0.03); }
.btn-block { width: 100%; }
.btn-lg { --pad-y: 1.1rem; --pad-x: 2rem; font-size: 1.05rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--navy-850) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { height: 42px; width: auto; }
.brand .brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; letter-spacing: .02em; }
.brand .brand-text b { color: var(--gold); }
.nav-links { display: none; align-items: center; gap: .35rem; }
.nav-links a { padding: .55rem .8rem; border-radius: var(--radius-pill); color: var(--ink-soft); font-weight: 500; font-size: .96rem; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(255,255,255,0.06); }
[data-theme="light"] .nav-links a:hover, [data-theme="light"] .nav-links a.active { background: rgba(10,15,40,0.05); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--ink); cursor: pointer;
}
.theme-toggle:hover { color: var(--gold); }
.nav-cta { display: none; }
.hamburger {
  width: 46px; height: 46px; border-radius: 12px; display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); cursor: pointer;
}
.hamburger span { display:block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger span + span { margin-top: 5px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 55;
  background: var(--navy-850); border-bottom: 1px solid var(--line);
  padding: 1rem var(--gutter) 1.6rem;
  display: grid; gap: .25rem;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { padding: .9rem .6rem; border-radius: 12px; color: var(--ink-soft); font-weight: 500; font-family: var(--font-head); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--ink); background: rgba(255,255,255,0.06); }
.mobile-menu .btn { margin-top: .8rem; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 7vw, 5rem); }
.hero::before {
  content:""; position: absolute; inset: 0; z-index: -2;
  background: var(--navy-850);
}
.hero::after {
  content:""; position: absolute; inset: -20% -10% auto -10%; height: 80%; z-index: -1;
  background:
    radial-gradient(40% 50% at 80% 10%, rgba(199,36,177,0.45), transparent 70%),
    radial-gradient(45% 55% at 12% 30%, rgba(61,90,254,0.40), transparent 70%),
    radial-gradient(40% 50% at 60% 90%, rgba(232,181,60,0.30), transparent 70%);
  filter: blur(10px);
}
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line-strong);
  padding: .45rem .9rem; border-radius: var(--radius-pill); font-size: .82rem; color: var(--ink-soft); font-weight: 500;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-pink); box-shadow: 0 0 12px var(--pink); }
.hero h1 { font-size: clamp(2.3rem, 8vw, 4.4rem); font-weight: 800; margin-top: 1.1rem; }
.hero h1 .accent { background: var(--grad-vibe); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero h1 .gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--ink-soft); font-size: clamp(1.05rem, 2.6vw, 1.28rem); margin-top: 1.2rem; max-width: 56ch; }
.hero-slogan { font-family: var(--font-head); font-weight: 600; color: var(--gold-2); margin-top: 1rem; letter-spacing: .02em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin-top: 2rem; color: var(--ink-dim); font-size: .86rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust .ic { width: 18px; height: 18px; }

/* hero collage of models */
.hero-collage { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.hero-collage .tile {
  border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  aspect-ratio: 3/4; background: var(--navy-card);
}
.hero-collage .tile img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .tile:nth-child(1) { transform: translateY(-8px) rotate(-2deg); }
.hero-collage .tile:nth-child(2) { transform: translateY(14px) rotate(2deg); }
.hero-collage .tile:nth-child(3) { transform: translateY(-2px) rotate(1.5deg); }
.hero-collage .tile:nth-child(4) { transform: translateY(8px) rotate(-1.5deg); }
.hero-collage .float-badge {
  position: absolute; z-index: 3; background: var(--navy-card); border: 1px solid var(--line-strong);
  border-radius: 14px; padding: .6rem .85rem; box-shadow: var(--shadow-lg); font-size: .8rem;
}
.hero-collage .fb-top { top: -14px; right: -6px; }
.hero-collage .fb-bot { bottom: -16px; left: -8px; }
.float-badge .big { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.float-badge .big.gold { color: var(--gold); }
.float-badge .big.pink { color: var(--pink-2); }
.float-badge small { color: var(--ink-dim); }

/* ---- Marquee of models ---- */
.marquee { overflow: hidden; position: relative; padding-block: 1.4rem; -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: 1rem; width: max-content; animation: scroll-x 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  width: 150px; aspect-ratio: 3/4; object-fit: cover; border-radius: 14px;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

.card {
  background: linear-gradient(180deg, var(--navy-card), var(--navy-card-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-lg); }
.card .card-icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(232,181,60,0.10); border: 1px solid rgba(232,181,60,0.28); margin-bottom: 1.1rem;
}
.card .card-icon img { width: 30px; height: 30px; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--ink-soft); margin-top: .5rem; font-size: .98rem; }
.card .card-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; color: var(--gold); font-weight: 600; font-family: var(--font-head); font-size: .95rem; }
.card .card-link:hover { gap: .7rem; }
.card.card-pink .card-icon { background: rgba(199,36,177,0.12); border-color: rgba(255,79,160,0.32); }
.card-top-accent::before { content:""; position:absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-vibe); opacity: .85; }

/* feature pill list */
.checklist { display: grid; gap: .7rem; margin-top: 1rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); }
.checklist li::before { content:"✦"; color: var(--gold); font-size: .9rem; margin-top: .25rem; }

/* ---- Stats ---- */
.stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--navy-card); padding: 1.6rem 1.2rem; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 6vw, 2.7rem); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--ink-soft); font-size: .85rem; margin-top: .3rem; }

/* ---- Pillars (For Models) ---- */
.pillar { display: grid; gap: 1.2rem; align-items: start; }
.pillar-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); position: relative; }
.pillar-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.pillar-media .tag { position: absolute; left: 12px; bottom: 12px; background: rgba(7,9,18,0.7); backdrop-filter: blur(6px); border: 1px solid var(--line-strong); border-radius: var(--radius-pill); padding: .4rem .8rem; font-size: .78rem; }

/* ---- Stepper ---- */
.stepper { display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem;
  position: relative;
}
.step .step-no {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: #1a1205;
  background: var(--grad-gold); flex-shrink: 0;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--ink-soft); margin-top: .35rem; font-size: .96rem; }

/* ---- Testimonials carousel ---- */
.carousel { position: relative; }
.carousel-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: .6rem; -ms-overflow-style: none; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.testimonial {
  scroll-snap-align: center; flex: 0 0 86%; max-width: 460px;
  background: linear-gradient(180deg, var(--navy-card), var(--navy-card-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem;
}
.testimonial .quote { font-size: 1.05rem; color: var(--ink); }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.testimonial .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line-strong); }
.testimonial .who b { font-family: var(--font-head); }
.testimonial .who small { color: var(--ink-dim); display: block; }
.carousel-nav { display: flex; gap: .5rem; justify-content: center; margin-top: 1.2rem; }
.carousel-nav button { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.carousel-nav button:hover { color: var(--gold); border-color: var(--gold); }

/* ---- FAQ accordion ---- */
.faq { display: grid; gap: .7rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--navy-card); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; padding: 1.15rem 1.2rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; min-height: 56px; }
.faq-q .chev { transition: transform .25s; color: var(--gold); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--ink-soft); }
.faq-a > div { padding: 0 1.2rem 1.2rem; }

/* ---- Gallery (models) ---- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery figure { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem .9rem .8rem;
  background: linear-gradient(transparent, rgba(7,9,18,0.85)); color: #fff; font-size: .82rem; font-family: var(--font-head); }
.gallery figcaption small { display: block; color: var(--pink-2); font-weight: 600; }

/* ---- Banner / CTA strip ---- */
.cta-banner {
  position: relative; overflow: hidden; border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(120deg, rgba(199,36,177,0.18), rgba(61,90,254,0.16));
  border: 1px solid var(--line-strong); padding: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}
.cta-banner::before { content:""; position:absolute; inset:0; background: url('../images/decor/sparkles.svg') center/cover no-repeat; opacity:.5; pointer-events:none; }
.cta-banner h2 { font-size: clamp(1.6rem, 5vw, 2.6rem); position: relative; }
.cta-banner p { color: var(--ink-soft); max-width: 52ch; margin: .8rem auto 0; position: relative; }
.cta-banner .hero-cta { justify-content: center; position: relative; }

/* ---- Team ---- */
.team-card { text-align: center; }
.team-card .avatar { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; border: 2px solid var(--line-strong); box-shadow: var(--shadow-lg); }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .role { color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: .85rem; letter-spacing: .04em; }
.team-card h3 { margin-top: .2rem; font-size: 1.15rem; }
.team-card p { color: var(--ink-soft); font-size: .92rem; margin-top: .4rem; }

/* ---- Forms ---- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .9rem; font-weight: 600; font-family: var(--font-head); color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--navy-card); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: .95rem 1rem; min-height: 50px; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,79,160,0.18); outline: none; }
.field .hint { color: var(--ink-dim); font-size: .8rem; }
.consent { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); font-size: .88rem; }
.consent input { width: 20px; height: 20px; margin-top: .15rem; flex-shrink: 0; accent-color: var(--pink); }
.form-note { color: var(--ink-dim); font-size: .82rem; }
.form-status { padding: .9rem 1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(22,194,213,0.12); border: 1px solid rgba(22,194,213,0.4); color: #8af0f9; }
.form-status.err { background: rgba(255,79,160,0.12); border: 1px solid rgba(255,79,160,0.4); color: var(--pink-2); }

/* highlight callout */
.callout { border-left: 3px solid var(--gold); background: rgba(232,181,60,0.07); padding: 1.2rem 1.4rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.callout h3 { font-size: 1.1rem; }
.callout p { color: var(--ink-soft); margin-top: .4rem; }

/* small chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font-size: .8rem; padding: .4rem .85rem; border-radius: var(--radius-pill); background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--ink-soft); }
.chip.gold { color: var(--gold-2); border-color: rgba(232,181,60,0.35); background: rgba(232,181,60,0.08); }

/* page hero (inner) */
.page-hero { position: relative; padding-block: clamp(2.6rem, 7vw, 4.5rem); overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset: -30% -10% auto -10%; height: 70%; z-index:-1;
  background: radial-gradient(40% 60% at 75% 0%, rgba(199,36,177,0.35), transparent 70%), radial-gradient(40% 60% at 20% 40%, rgba(61,90,254,0.30), transparent 70%); filter: blur(8px); }
.page-hero h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
.page-hero h1 .accent { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.breadcrumb { color: var(--ink-dim); font-size: .85rem; margin-bottom: .6rem; }
.breadcrumb a:hover { color: var(--gold); }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); background: var(--navy-900); padding-block: clamp(2.6rem, 6vw, 4rem) 1.6rem; }
[data-theme="light"] .site-footer { background: #EEF0F7; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand p { color: var(--ink-soft); margin-top: 1rem; max-width: 36ch; font-size: .94rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-dim); margin-bottom: .9rem; }
.footer-col a { display: block; color: var(--ink-soft); padding: .35rem 0; font-size: .95rem; }
.footer-col a:hover { color: var(--gold); }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); color: var(--ink-soft); }
.socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center;
  margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--ink-dim); font-size: .84rem; }
.footer-bottom .slogan { color: var(--gold); font-family: var(--font-head); }

/* ---- Cookie consent ---- */
.cookie {
  position: fixed; left: 50%; transform: translateX(-50%) translateY(140%); bottom: 16px; z-index: 90;
  width: min(680px, calc(100% - 24px));
  background: var(--navy-card); border: 1px solid var(--line-strong); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow-lg);
  display: grid; gap: .9rem; transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.cookie.show { transform: translateX(-50%) translateY(0); }
.cookie p { color: var(--ink-soft); font-size: .9rem; }
.cookie p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.cookie-actions .btn { --pad-y: .7rem; --pad-x: 1.1rem; min-height: 42px; font-size: .92rem; }

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

/* skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #1a1205; padding: .7rem 1rem; border-radius: 0 0 10px 0; z-index: 100; font-weight: 600; }
.skip-link:focus { left: 0; }

/* divider label */
.logos-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; justify-content: center; color: var(--ink-dim); }
.logos-row span { font-family: var(--font-head); font-weight: 600; letter-spacing: .04em; opacity: .8; }

/* ============== Responsive ============== */
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .testimonial { flex-basis: 60%; }
  .cookie { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 860px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .pillar { grid-template-columns: 320px 1fr; gap: 2rem; align-items: center; }
  .pillar.rev { grid-template-columns: 1fr 320px; }
  .pillar.rev .pillar-media { order: 2; }
  .stepper { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .testimonial { flex-basis: 46%; }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-cta { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .testimonial { flex-basis: 38%; }
  .gallery { grid-template-columns: repeat(5, 1fr); }
  body { font-size: 18px; }
}
@media (min-width: 1200px) {
  .gallery.gallery-6 { grid-template-columns: repeat(6, 1fr); }
}
