/* ═══════════════════════════════════════════════════════
   XEC EXCLUSIVE SERVICES — Global Stylesheet
   Mediterranean Minimal Design System
   ═══════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* Palette */
  --c-bg:           #FFFFFF;
  --c-bg-warm:      #F5F4F0;
  --c-bg-stone:     #EDEBE5;
  --c-text:         #111111;
  --c-text-mid:     #444444;
  --c-text-soft:    #767676;
  --c-accent:       #0069A7;
  --c-accent-dark:  #004E80;
  --c-accent-light: #E0EFF8;
  --c-warm:         #B5682C;
  --c-warm-light:   #F5E9DF;
  --c-border:       #DDD9D0;
  --c-border-light: #EEEAE3;

  /* Typography */
  --f-heading: 'Bodoni Moda', Georgia, serif;
  --f-body:    'Jost', -apple-system, sans-serif;

  /* Spacing */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  32px;
  --gap-lg:  64px;
  --gap-xl:  96px;
  --gap-2xl: 140px;

  /* Layout */
  --max-w:     1200px;
  --nav-h:     72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms var(--ease);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; height: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
img    { max-width: 100%; display: block; height: auto; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-body); border: none; background: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── LAYOUT ─────────────────────────────────────────── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gap-md); }
@media (min-width: 768px) { .wrap { padding: 0 var(--gap-lg); } }

.section { padding: var(--gap-xl) 0; }
.section--warm  { background: var(--c-bg-warm); }
.section--stone { background: var(--c-bg-stone); }

main { flex: 1; padding-top: var(--nav-h); }

/* ─── HOME PAGE OVERRIDES ────────────────────────────────
   index.html hero sits directly under the transparent fixed nav.
   Body must be block (not flex) and main must NOT have padding-top
   so the hero image extends to the very top of the viewport.       */
body.home {
  display: block;
  min-height: auto;
}
body.home main {
  padding-top: 0;
  flex: none;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--gap-sm);
}
.h-display {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h-section {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-text-mid);
  line-height: 1.8;
  max-width: 600px;
}
.body-sm {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--c-text-soft);
  line-height: 1.7;
}
em.italic { font-style: italic; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--c-accent);
  color: #fff;
  border: 1px solid var(--c-accent);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,105,167,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text-mid);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-text);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ─── NAVIGATION ─────────────────────────────────────── */
/* Base (always solid — used on all inner pages) */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border-light);
  box-shadow: 0 1px 0 var(--c-border-light);
  transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
}

/* Transparent state — index.html hero overlay */
.nav.transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav.solid {
  background: #000;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

@supports (animation-timeline: scroll()) {
  body.home .nav {
    animation: home-nav-solid linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 80px;
  }

  @keyframes home-nav-solid {
    0% {
      background: transparent;
      border-bottom-color: transparent;
      box-shadow: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    100% {
      background: #000;
      border-bottom-color: rgba(255,255,255,0.1);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
  }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo — default (inner pages: single black logo) */
.nav__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0);
  transition: opacity var(--t-base), filter var(--t-base);
}

/* Logo — two-image crossfade for index.html */
.nav__logo {
  position: relative;
  width: 120px;
  height: 36px;
}
.nav__logo .logo-white,
.nav__logo .logo-black {
  position: absolute;
  top: 0; left: 0;
  height: 36px;
  width: auto;
  filter: none;
  transition: opacity var(--t-base);
}
.nav__logo .logo-white { opacity: 1; }
.nav__logo .logo-black { opacity: 0; }
.nav.solid .nav__logo .logo-white { opacity: 1; }
.nav.solid .nav__logo .logo-black { opacity: 0; }
.nav.solid .nav__logo img { filter: none; }

/* Nav links */
.nav__links {
  display: none;
  list-style: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .nav__links { display: flex; } }

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  transition: color var(--t-fast);
}
.nav__links a:hover,
.nav__links a.active { color: var(--c-accent); }

/* Transparent state link colours */
.nav.transparent .nav__links a { color: rgba(255,255,255,0.85); }
.nav.transparent .nav__links a:hover { color: #fff; }
.nav.solid .nav__links a { color: rgba(255,255,255,0.78); }
.nav.solid .nav__links a:hover { color: #fff; }

/* CTA button */
.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; margin-left: 10px; } }

.btn-nav {
  background: var(--c-accent);
  color: #fff;
  border: 1px solid var(--c-accent);
}
.nav.transparent .btn-nav {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.nav.transparent .btn-nav:hover { background: rgba(255,255,255,0.25); }
.nav.solid .btn-nav { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.nav.solid .btn-nav:hover { background: var(--c-accent-dark); }

/* Burger */
.nav__burger { display: flex; flex-direction: column; gap: 5px; padding: 6px; }
@media (min-width: 900px) { .nav__burger { display: none; } }

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-text);
  transition: all var(--t-base);
}
.nav.transparent .nav__burger span { background: #fff; }
.nav.solid .nav__burger span     { background: #fff; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: #fff;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  padding: var(--gap-lg);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-text-mid);
  transition: color var(--t-fast);
}
.nav__mobile a:hover { color: var(--c-accent); }

/* ─── HERO (index.html) ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.12) 40%,
    rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.72) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2; width: 100%;
  padding-bottom: var(--gap-2xl);
  padding-top: calc(var(--nav-h) + var(--gap-lg));
}
.hero__label {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--gap-md);
}
.hero__label-line { width: 32px; height: 1px; background: rgba(255,255,255,0.6); }
.hero__label span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.hero__title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  color: #fff; max-width: 760px; margin-bottom: var(--gap-md);
}
.hero__sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8);
  max-width: 520px; line-height: 1.75; margin-bottom: var(--gap-lg);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); align-items: center; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: var(--gap-md);
  margin-top: var(--gap-lg); padding-top: var(--gap-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.hero__trust-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.5); fill: none; stroke-width: 1.5; }

/* ─── TICKER ─────────────────────────────────────────── */
.ticker { background: var(--c-text); color: #fff; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 60px; animation: ticker-scroll 35s linear infinite; }
.ticker__item {
  flex-shrink: 0; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: inline-flex; align-items: center; gap: 60px;
}
.ticker__item::after { content: '·'; color: var(--c-accent); font-size: 1rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── INTRO ──────────────────────────────────────────── */
.intro { padding: var(--gap-2xl) 0; }
.intro__inner { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); }
@media (min-width: 900px) { .intro__inner { grid-template-columns: 1fr 1fr; align-items: center; } }
.intro__tag { display: flex; align-items: center; gap: var(--gap-sm); margin-bottom: var(--gap-md); }
.intro__tag-line { width: 24px; height: 1px; background: var(--c-accent); }
.intro__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-sm);
  margin-top: var(--gap-lg); padding-top: var(--gap-lg);
  border-top: 1px solid var(--c-border-light);
}
.intro__stat-num {
  font-family: var(--f-heading); font-size: 2.5rem; font-weight: 400;
  color: var(--c-accent); line-height: 1; margin-bottom: 4px;
}
.intro__stat-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c-text-soft);
}
.intro__img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: var(--gap-xs);
}
.intro__img-main { grid-column: 1 / -1; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; }
.intro__img-main img, .intro__img-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease);
}
.intro__img-thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.intro__img-main:hover img, .intro__img-thumb:hover img { transform: scale(1.03); }

/* ─── SERVICES GRID ──────────────────────────────────── */
.services__head {
  display: grid; grid-template-columns: 1fr; gap: var(--gap-md); margin-bottom: var(--gap-xl);
}
@media (min-width: 900px) { .services__head { grid-template-columns: 1fr 1fr; align-items: end; } }
.services__grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  border: 1px solid var(--c-border-light); border-radius: var(--radius-md);
  overflow: hidden; background: var(--c-border-light);
}
@media (min-width: 640px)  { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  background: var(--c-bg); padding: var(--gap-lg) var(--gap-md);
  transition: background var(--t-base); position: relative; overflow: hidden;
}
.service-card:hover { background: var(--c-bg-warm); }
.service-card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: var(--gap-md); overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__num {
  font-family: var(--f-heading); font-size: 3.5rem; font-weight: 400;
  color: var(--c-border); line-height: 1;
  position: absolute; top: var(--gap-md); right: var(--gap-md);
  pointer-events: none; user-select: none; transition: color var(--t-base);
}
.service-card:hover .service-card__num { color: var(--c-accent-light); }
.service-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  border: 1px solid var(--c-border-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--gap-sm); background: var(--c-bg-warm);
  transition: background var(--t-base), border-color var(--t-base);
}
.service-card__icon svg {
  width: 20px; height: 20px; stroke: var(--c-accent);
  fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.service-card:hover .service-card__icon { background: var(--c-accent-light); border-color: var(--c-accent); }
.service-card h3 {
  font-family: var(--f-heading); font-size: 1.25rem;
  font-weight: 400; margin-bottom: var(--gap-xs); line-height: 1.2;
}
.service-card p {
  font-size: 0.85rem; font-weight: 300; color: var(--c-text-soft);
  line-height: 1.7; margin-bottom: var(--gap-md);
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-accent); transition: gap var(--t-fast);
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── PROCESS ────────────────────────────────────────── */
.process__grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--c-border-light); border-radius: var(--radius-md); overflow: hidden;
}
@media (min-width: 640px)  { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process__grid { grid-template-columns: repeat(4, 1fr); } }
.process__step {
  padding: var(--gap-lg) var(--gap-md);
  border-bottom: 1px solid var(--c-border-light); position: relative;
}
@media (min-width: 640px)  { .process__step:nth-child(odd) { border-right: 1px solid var(--c-border-light); } }
@media (min-width: 1024px) {
  .process__step { border-right: 1px solid var(--c-border-light); border-bottom: none; }
  .process__step:last-child { border-right: none; }
}
.process__num {
  font-family: var(--f-heading); font-size: 3rem; font-weight: 400;
  color: var(--c-accent-dark); line-height: 1; margin-bottom: var(--gap-sm);
}
.process__step h3 { font-family: var(--f-heading); font-size: 1.1rem; font-weight: 500; margin-bottom: var(--gap-xs); }
.process__step p  { font-size: 0.85rem; color: var(--c-text-soft); line-height: 1.7; }

/* ─── GALLERY ────────────────────────────────────────── */
.gallery__grid {
  display: grid; gap: var(--gap-xs);
  grid-template-columns: 2fr 1fr; grid-template-rows: 280px 280px;
}
@media (max-width: 639px) {
  .gallery__grid { grid-template-columns: 1fr; grid-template-rows: 240px 180px 180px; }
}
.gallery__item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--tall { grid-row: 1 / 3; }
.gallery__item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--gap-sm);
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials__grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-sm); }
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  padding: var(--gap-md); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md); background: var(--c-bg);
  transition: border-color var(--t-base), transform var(--t-base);
}
.testimonial:hover { border-color: var(--c-border); transform: translateY(-2px); }
.testimonial__quote {
  font-family: var(--f-heading); font-style: italic; font-size: 1rem;
  font-weight: 400; line-height: 1.65; color: var(--c-text-mid); margin-bottom: var(--gap-md);
}
.testimonial__source {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--c-text-soft);
}
.testimonial__source::before { content: '— '; }

/* ─── CONTACT FORM (index.html) ──────────────────────── */
.contact__inner { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); }
@media (min-width: 900px) { .contact__inner { grid-template-columns: 1fr 1.2fr; align-items: start; } }
.contact__info > p {
  font-size: 0.95rem; font-weight: 300; color: var(--c-text-mid);
  line-height: 1.8; margin-bottom: var(--gap-lg);
}
.contact__channels { display: flex; flex-direction: column; gap: var(--gap-xs); }
.contact__channel {
  display: flex; align-items: center; gap: var(--gap-sm);
  padding: 14px var(--gap-sm); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm); transition: all var(--t-fast);
}
.contact__channel:hover { border-color: var(--c-accent); background: var(--c-accent-light); }
.contact__channel-icon {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact__channel-icon svg { width: 18px; height: 18px; stroke: var(--c-accent); fill: none; stroke-width: 1.5; stroke-linecap: round; }
.contact__channel-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--c-text-soft); line-height: 1; margin-bottom: 2px;
}
.contact__channel-value { font-size: 0.9rem; font-weight: 400; color: var(--c-text); }

.contact__form {
  background: var(--c-bg); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md); padding: var(--gap-lg);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-sm); }
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--gap-sm); }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 300;
  color: var(--c-text); background: var(--c-bg-warm);
  border: 1px solid var(--c-border-light); border-radius: var(--radius-sm);
  padding: 12px 14px; width: 100%;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c-text-soft); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--c-accent); background: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230069A7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: #fff; }
.form-privacy {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.78rem; color: var(--c-text-soft); line-height: 1.5;
}
.form-privacy input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-accent);
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band { background: var(--c-text); padding: var(--gap-xl) 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: var(--gap-sm); }
.cta-band p {
  color: rgba(255,255,255,0.65); font-size: 1rem; font-weight: 300;
  max-width: 500px; margin: 0 auto var(--gap-lg);
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: center; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq__list { max-width: 720px; margin: 0 auto; }
details { border-bottom: 1px solid var(--c-border-light); }
details summary {
  font-size: 0.95rem; font-weight: 500; padding: var(--gap-md) 0;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: var(--gap-sm); list-style: none;
  transition: color var(--t-fast); color: var(--c-text);
}
details summary::-webkit-details-marker { display: none; }
details summary:hover { color: var(--c-accent); }
details summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  flex-shrink: 0; color: var(--c-accent); transition: transform var(--t-base);
}
details[open] summary::after { content: '−'; }
details .faq__answer {
  font-size: 0.9rem; font-weight: 300; color: var(--c-text-soft);
  line-height: 1.75; padding-bottom: var(--gap-md);
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--c-text); color: rgba(255,255,255,0.65); padding: var(--gap-xl) 0 var(--gap-md); }
.footer__top { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); margin-bottom: var(--gap-xl); }
@media (min-width: 768px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: var(--gap-md); }
.footer__brand p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; max-width: 260px; margin-bottom: var(--gap-md); }
.footer__socials { display: flex; gap: var(--gap-xs); }
.footer__social {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; transition: all var(--t-fast);
}
.footer__social:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.footer__social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.5); transition: fill var(--t-fast); }
.footer__social:hover svg { fill: #fff; }
.footer__col h4 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: var(--gap-md);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color var(--t-fast); }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: var(--gap-sm);
  justify-content: space-between; align-items: center;
  padding-top: var(--gap-md); border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; gap: var(--gap-md); flex-wrap: wrap; }
.footer__legal a { font-size: 0.72rem; color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── FLOATING ELEMENTS ──────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px 12px 16px; background: #25D366; color: #fff;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--t-base);
}
.wa-btn:hover { background: #1EBE5A; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.wa-btn svg { width: 20px; height: 20px; fill: #fff; }

.scroll-top-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 44px; height: 44px; background: var(--c-bg);
  border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px); transition: all var(--t-base); cursor: pointer;
}
.scroll-top-btn.show { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { border-color: var(--c-accent); background: var(--c-accent-light); }
.scroll-top-btn svg { width: 18px; height: 18px; stroke: var(--c-accent); fill: none; stroke-width: 2; }

/* --- SCROLL REVEAL --- */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.js .reveal:not(.in) { opacity: 1; transform: translateY(0); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

/* ─── SECTION HEADER UTILITY ─────────────────────────── */
.sec-head { margin-bottom: var(--gap-xl); }
.sec-head--center { text-align: center; }
.sec-head--center .lead { margin: 0 auto; }

/* ─── SERVICE PAGES ──────────────────────────────────── */
.svc-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.svc-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.svc-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.svc-hero__inner { position: relative; z-index: 1; padding: var(--gap-lg) 0 var(--gap-md); max-width: 760px; }
.svc-hero .tag {
  background: var(--c-accent); color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: var(--gap-sm);
}
.svc-hero h1 {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1;
  letter-spacing: -0.01em; color: #fff;
}
.svc-hero .lead {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.82);
  line-height: 1.8; margin-top: var(--gap-sm); max-width: 640px;
}
.svc-layout { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); padding: var(--gap-xl) 0; }
@media (min-width: 900px) { .svc-layout { grid-template-columns: 1fr 280px; } }
.svc-content h2 {
  font-family: var(--f-heading); font-weight: 400; font-size: 1.45rem;
  margin: var(--gap-md) 0 var(--gap-sm); letter-spacing: -0.01em;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content p { font-size: 0.92rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.9; margin-bottom: var(--gap-sm); }
.svc-content ul { padding-left: 20px; margin-bottom: var(--gap-sm); }
.svc-content li { font-size: 0.92rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 4px; }
.svc-content strong { font-weight: 500; color: var(--c-text); }
.svc-highlight {
  background: var(--c-accent-light); border-left: 3px solid var(--c-accent);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: var(--gap-md);
}
.svc-highlight p { color: var(--c-text-mid); margin-bottom: 0; font-size: 0.92rem; }
.svc-sidebar {
  position: sticky; top: calc(var(--nav-h) + 32px);
  align-self: start; display: flex; flex-direction: column; gap: var(--gap-md);
}
.sidebar-box {
  background: var(--c-bg-warm); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md); padding: var(--gap-md);
}
.sidebar-box h4 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-text-soft); margin-bottom: var(--gap-sm);
}
.sidebar-box ul { list-style: none; }
.sidebar-box li { margin-bottom: 8px; }
.sidebar-box a { font-size: 0.82rem; color: var(--c-text-mid); transition: color var(--t-fast); }
.sidebar-box a:hover { color: var(--c-accent); }
.svc-cta { background: var(--c-text); color: #fff; padding: var(--gap-xl) 0; text-align: center; }
.svc-cta h2 {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--gap-sm);
}
.svc-cta p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto var(--gap-md); }
.svc-cta .btn-primary { background: var(--c-accent); }
.svc-cta .btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.svc-cta .btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.related-services { padding: var(--gap-xl) 0; background: var(--c-bg-warm); }
.related-services h2 { font-family: var(--f-heading); font-weight: 400; font-size: 1.8rem; margin-bottom: var(--gap-lg); }
.related-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-md); }
@media (min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  background: var(--c-bg); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md); padding: var(--gap-md);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.related-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.related-card .tag {
  background: var(--c-accent-light); color: var(--c-accent);
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
  display: inline-block; margin-bottom: 10px;
}
.related-card h3 { font-family: var(--f-heading); font-weight: 400; font-size: 1.05rem; line-height: 1.25; margin-bottom: 8px; }
.related-card p  { font-size: 0.82rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.7; }

/* ─── BLOG INDEX ─────────────────────────────────────── */
.blog-hero {
  background: var(--c-bg-warm); padding: var(--gap-xl) 0 var(--gap-lg);
  border-bottom: 1px solid var(--c-border-light);
}
.blog-hero h1 {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: var(--gap-sm);
}
.blog-hero .lead { font-size: 1rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.8; max-width: 560px; }
.blog-grid-section { padding: var(--gap-xl) 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-lg); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--c-border-light); border-radius: var(--radius-md);
  overflow: hidden; transition: box-shadow var(--t-base), transform var(--t-base);
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-card__img-wrap { display: block; height: 220px; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }
.blog-card__body { padding: var(--gap-md); flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-card__meta { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: var(--c-text-soft); font-weight: 400; }
.tag { background: var(--c-accent-light); color: var(--c-accent); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.sep { color: var(--c-border); }
.blog-card__title { font-family: var(--f-heading); font-weight: 400; font-size: 1.2rem; line-height: 1.2; }
.blog-card__title a { color: var(--c-text); transition: color var(--t-fast); }
.blog-card__title a:hover { color: var(--c-accent); }
.blog-card__excerpt { font-size: 0.88rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.75; flex: 1; }
.blog-card__cta {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--c-accent); text-transform: uppercase; transition: color var(--t-fast); margin-top: auto;
}
.blog-card__cta:hover { color: var(--c-accent-dark); }
.blog-cta-strip { background: var(--c-bg-stone); padding: var(--gap-xl) 0; text-align: center; }
.blog-cta-strip h2 { font-family: var(--f-heading); font-weight: 400; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--gap-sm); }
.blog-cta-strip p { font-size: 0.95rem; font-weight: 300; color: var(--c-text-mid); max-width: 480px; margin: 0 auto var(--gap-md); }

/* ─── BLOG ARTICLES ──────────────────────────────────── */
.article-hero { position: relative; height: 380px; overflow: hidden; display: flex; align-items: flex-end; }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.article-hero__inner { position: relative; z-index: 1; padding: var(--gap-lg) 0 var(--gap-md); }
.article-hero .tag {
  background: var(--c-accent); color: #fff;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: var(--gap-sm);
}
.article-hero h1 {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1;
  letter-spacing: -0.01em; color: #fff; max-width: 780px;
}
.article-hero .meta { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-top: 12px; }
.article-layout { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); padding: var(--gap-xl) 0; }
@media (min-width: 900px) { .article-layout { grid-template-columns: 1fr 280px; } }
.article-content h2 {
  font-family: var(--f-heading); font-weight: 400; font-size: 1.5rem;
  margin: var(--gap-md) 0 var(--gap-sm); letter-spacing: -0.01em;
}
.article-content p { font-size: 0.95rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.9; margin-bottom: var(--gap-sm); }
.article-content strong { font-weight: 500; color: var(--c-text); }
.article-cta-box {
  background: var(--c-bg-warm); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-md); padding: var(--gap-md); margin-top: var(--gap-xl);
}
.article-cta-box h3 { font-family: var(--f-heading); font-weight: 400; font-size: 1.2rem; margin-bottom: var(--gap-sm); }
.article-cta-box p { font-size: 0.85rem; font-weight: 300; color: var(--c-text-mid); margin-bottom: var(--gap-md); }
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); align-self: start; display: flex; flex-direction: column; gap: var(--gap-md); }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-text-soft); margin-bottom: var(--gap-md);
  transition: color var(--t-fast);
}
.back-link:hover { color: var(--c-accent); }

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-hero {
  background: var(--c-bg-warm);
  padding: var(--gap-xl) 0 var(--gap-md);
  border-bottom: 1px solid var(--c-border-light);
}
.legal-hero h1 {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  letter-spacing: -0.01em; margin-bottom: var(--gap-sm);
}
.legal-hero .updated { font-size: 0.8rem; color: var(--c-text-soft); font-weight: 300; }
.legal-body { padding: var(--gap-xl) 0; }
.legal-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-xl); }
@media (min-width: 900px) { .legal-grid { grid-template-columns: 220px 1fr; align-items: start; } }
.legal-toc { position: sticky; top: calc(var(--nav-h) + 32px); }
.legal-toc h3 {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--c-text-soft); margin-bottom: var(--gap-sm);
}
.legal-toc ol { list-style: none; counter-reset: toc; }
.legal-toc li { counter-increment: toc; margin-bottom: 8px; }
.legal-toc a { font-size: 0.8rem; color: var(--c-text-soft); transition: color var(--t-fast); display: flex; gap: 8px; }
.legal-toc a::before { content: counter(toc) "."; color: var(--c-accent); flex-shrink: 0; }
.legal-toc a:hover { color: var(--c-accent); }
.legal-content { max-width: 720px; }
.legal-section { margin-bottom: var(--gap-lg); scroll-margin-top: calc(var(--nav-h) + 24px); }
.legal-section h2 {
  font-family: var(--f-heading); font-weight: 400; font-size: 1.4rem;
  margin-bottom: var(--gap-sm); padding-bottom: var(--gap-xs);
  border-bottom: 1px solid var(--c-border-light);
}
.legal-section h2 span { color: var(--c-accent); margin-right: 8px; font-size: 0.9em; }
.legal-section p { font-size: 0.92rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.85; margin-bottom: var(--gap-sm); }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: var(--gap-sm); }
.legal-section li { font-size: 0.92rem; font-weight: 300; color: var(--c-text-mid); line-height: 1.8; margin-bottom: 4px; }
.legal-section strong { font-weight: 500; color: var(--c-text); }
.legal-section a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-section a:hover { color: var(--c-accent-dark); }
.legal-highlight {
  background: var(--c-accent-light); border-left: 3px solid var(--c-accent);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: var(--gap-sm);
}
.legal-highlight p { color: var(--c-text-mid); margin-bottom: 0; }

/* ─── COOKIE POLICY TABLE ────────────────────────────── */
.cookie-table { width: 100%; border-collapse: collapse; margin-bottom: var(--gap-md); font-size: 0.82rem; }
.cookie-table th {
  background: var(--c-bg-stone); font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--c-border);
}
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--c-border-light); color: var(--c-text-mid); font-weight: 300; vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.badge { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 100px; text-transform: uppercase; }
.badge--necessary  { background: #E7F5EA; color: #1A6B30; }
.badge--analytics  { background: #FFF5E0; color: #8A5A00; }
.badge--preference { background: var(--c-accent-light); color: var(--c-accent-dark); }

/* ─── 404 PAGE ───────────────────────────────────────── */
main.not-found-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + var(--gap-xl)) 0 var(--gap-xl);
}
.not-found { text-align: center; max-width: 680px; padding: 0 var(--gap-md); animation: fadeUp 0.7s var(--ease) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.not-found__code {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(7rem, 22vw, 14rem); line-height: 0.88;
  letter-spacing: -0.04em; color: var(--c-bg-stone);
  user-select: none; position: relative; display: block; margin-bottom: var(--gap-md);
}
.not-found__rule { width: 48px; height: 1px; background: var(--c-accent); margin: 0 auto var(--gap-md); }
.not-found__eyebrow {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--gap-sm);
}
.not-found__heading {
  font-family: var(--f-heading); font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.6rem); line-height: 1.15;
  letter-spacing: -0.01em; color: var(--c-text); margin-bottom: var(--gap-sm);
}
.not-found__copy {
  font-size: 1rem; font-weight: 300; color: var(--c-text-mid);
  line-height: 1.8; max-width: 520px; margin: 0 auto var(--gap-md);
}
.not-found__actions { display: flex; flex-wrap: wrap; gap: var(--gap-sm); justify-content: center; margin-bottom: var(--gap-lg); }
.not-found__links {
  display: flex; flex-wrap: wrap; gap: 6px 24px;
  justify-content: center; padding-top: var(--gap-md);
  border-top: 1px solid var(--c-border-light);
}
.not-found__links span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--c-text-soft); width: 100%; margin-bottom: 4px;
}
.not-found__links a {
  font-size: 0.78rem; font-weight: 400; color: var(--c-text-mid);
  transition: color var(--t-fast); white-space: nowrap;
}
.not-found__links a:hover { color: var(--c-accent); }
.not-found__contact { margin-top: var(--gap-md); font-size: 0.8rem; font-weight: 300; color: var(--c-text-soft); }
.not-found__contact a { color: var(--c-accent); font-weight: 500; transition: color var(--t-fast); }
.not-found__contact a:hover { color: var(--c-accent-dark); }

/* ─── COOKIE CONSENT BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.82); padding: 20px 32px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-family: 'Jost', sans-serif; font-size: 0.82rem;
  font-weight: 300; line-height: 1.6; margin: 0; flex: 1; min-width: 220px;
}
.cookie-banner a { color: #77bfea; text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner a:hover { color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 4px; cursor: pointer; border: none; transition: all 200ms ease;
}
.cookie-btn--accept { background: #0069A7; color: #fff; }
.cookie-btn--accept:hover { background: #004E80; }
.cookie-btn--reject { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }
.cookie-btn--reject:hover { background: rgba(255,255,255,0.15); color: #fff; }
