/* ============================================================
   GZ PREMIUM CARS — styles.css
   Archetype: Editorial Dark Warm (adapted luxury auto)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:        #080706;
  --bg-2:      #100e0c;
  --bg-3:      #1a1714;
  --bg-card:   #141210;
  --cream:     #F2EBDA;
  --cream-2:   #D9CEBC;
  --cream-3:   #8B7E68;
  --gold:      #C49A5B;
  --gold-2:    #A37A3B;
  --gold-light:#E8C07A;
  --line:      rgba(242,235,218,.1);
  --line-gold: rgba(196,154,91,.25);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);

  --nav-h: 72px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-light));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── SPLASH ── */
.splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease-out), clip-path .7s var(--ease-out);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner { text-align: center; }
.splash-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: splashFade .8s var(--ease-out) .2s both;
}
@keyframes splashFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.splash-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}
.splash-gz {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.splash-line {
  display: block;
  width: 1px;
  height: 2.5rem;
  background: var(--line-gold);
}
.splash-text {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--cream-3);
}
.splash-bar {
  margin-top: 2.5rem;
  width: 160px;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-light));
  animation: splashLoad 2.5s var(--ease-out) .4s both;
}
@keyframes splashLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── CUSTOM CURSOR ── */
.cursor { pointer-events: none; position: fixed; z-index: 8000; top: 0; left: 0; }
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  transition: transform .1s var(--ease-out), width .2s, height .2s, opacity .2s;
  opacity: 0;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(196,154,91,.55);
  border-radius: 50%;
  position: absolute;
  transform: translate3d(-50%, -50%, 0);
  transition: transform .18s var(--ease-out), width .25s, height .25s, opacity .2s, border-color .2s;
  opacity: 0;
}
.cursor.is-ready .cursor-dot,
.cursor.is-ready .cursor-ring { opacity: 1; }
.cursor.is-hovering .cursor-ring {
  width: 50px; height: 50px;
  border-color: rgba(196,154,91,.9);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 700;
  height: var(--nav-h);
  background: rgba(8,7,6,.85);
  transition: background .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8,7,6,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--line);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen;
}

.nav-logo-gz {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
}
.nav-logo-sep { color: var(--line-gold); font-size: .9rem; }
.nav-logo-name {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--cream-3);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--cream-2);
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
  padding: .45rem 1.1rem;
  border: 1px solid var(--line-gold);
  color: var(--gold);
  letter-spacing: .12em;
  transition: background .2s, color .2s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--gold); color: var(--bg); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream-2);
  transition: transform .3s, opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0; top: var(--nav-h);
  background: rgba(8,7,6,.97);
  z-index: 699;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease-out);
  pointer-events: none;
}
.mobile-nav.is-open { transform: none; pointer-events: auto; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-style: italic;
  color: var(--cream-2);
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* ── REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; } /* gotcha A.4.5 */
.reveal[data-delay="0.1"] { transition-delay: .1s; }
.reveal[data-delay="0.2"] { transition-delay: .2s; }
.reveal[data-delay="0.3"] { transition-delay: .3s; }
.reveal[data-delay="0.4"] { transition-delay: .4s; }
.reveal[data-delay="0.5"] { transition-delay: .5s; }

/* ── SHARED TYPOGRAPHY ── */
.section-kicker {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-sub {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--cream-3);
  max-width: 54ch;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform .4s var(--ease-out);
}
.btn:hover::before { transform: translateX(110%) skewX(-12deg); }
.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream-2);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--line-gold);
  color: var(--cream);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,7,6,.6) 0%,
    rgba(8,7,6,.45) 40%,
    rgba(8,7,6,.75) 80%,
    rgba(8,7,6,.95) 100%
  );
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(196,154,91,.18), transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(196,154,91,.08), transparent 60%);
  filter: blur(40px);
  animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
  from { opacity: .7; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.05); }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,7,6,.55) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 6rem;
  max-width: 860px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-kicker-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.6); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--cream);
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  gap: .15em;
  margin-bottom: 1.5rem;
}
.hero-title-line { display: block; }
.hero-title-line--accent {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--cream-2);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  animation: fadeIn 1s var(--ease-out) 2s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll-text {
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--cream-3);
  text-transform: uppercase;
}

/* ── STATS ── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--cream-3);
  margin-top: .4rem;
  text-transform: uppercase;
}
.stat-sep {
  color: var(--gold-2);
  font-size: .5rem;
  opacity: .5;
}

/* ── PROCESS ── */
.process {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.process-head {
  text-align: center;
  margin-bottom: 5rem;
}
.process-head .section-title { margin: 0 auto; }
.process-head .section-sub { margin: 1.25rem auto 0; text-align: center; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
}
.step {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 50%), rgba(196,154,91,.07), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.step:hover::before { opacity: 1; }
.step:hover { background: var(--bg-2); }
.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.step-icon {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: .6;
}
.step-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.step-img {
  transition: transform .6s var(--ease-out), filter .3s;
  filter: saturate(.85) brightness(.9);
}
.step:hover .step-img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .65rem;
}
.step-desc {
  font-size: .88rem;
  color: var(--cream-3);
  line-height: 1.65;
}

/* ── REASONS ── */
.reasons {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 8rem 2rem;
}
.reasons-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.reasons-head {
  text-align: center;
  margin-bottom: 4.5rem;
}
.reasons-head .section-title { margin: 0 auto; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.reason {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.reason::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-2), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.reason:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.reason:hover::after { transform: scaleX(1); }
.reason-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: .7;
}
.reason-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .6rem;
}
.reason-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
}

/* ── GALLERY ── */
.gallery {
  padding: 8rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-head {
  text-align: center;
  margin-bottom: 4rem;
}
.gallery-head .section-title { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .3s;
}
.gallery-card--wide {
  grid-column: span 3;
}
.gallery-card:hover { border-color: var(--line-gold); }
.gallery-card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card--wide .gallery-card-img-wrap { aspect-ratio: 21 / 7; }
.gallery-card-img {
  transition: transform .7s var(--ease-out), filter .4s;
  filter: saturate(.8) brightness(.85);
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(1);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,7,6,.85) 100%);
}
.gallery-card-info {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.gallery-card-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}
.gallery-card-country {
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--gold);
}

/* ── CONTACT ── */
.contact {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(.6);
}
.contact-bg-tint {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,.88);
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
  margin-bottom: 1.25rem;
}
.contact-title em { font-style: italic; color: var(--gold-light); }
.contact-sub {
  font-size: 1rem;
  color: var(--cream-3);
  line-height: 1.7;
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}
.contact-btns {
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.contact-hint {
  margin-top: 1.5rem;
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--cream-3);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  margin-bottom: .6rem;
  display: block;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  display: block;
  margin-bottom: .6rem;
}
.footer-logo-sep { color: var(--line-gold); margin: 0 .1em; }
.footer-tagline {
  font-size: .78rem;
  color: var(--cream-3);
  letter-spacing: .05em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}
.footer-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-link:hover { color: var(--gold); }
.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-email {
  font-size: .82rem;
  color: var(--cream-2);
  transition: color .2s;
}
.footer-email:hover { color: var(--gold); }
.footer-loc {
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--cream-3);
}
.footer-bottom {
  max-width: 1180px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--cream-3);
  opacity: .6;
}
.footer-credits-note { font-size: .7rem; color: var(--cream-3); opacity: .45; }
.footer-credits-link { color: inherit; text-decoration: underline; }

/* ── TILT EFFECT ── */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card--wide { grid-column: span 1; }
  .gallery-card--wide .gallery-card-img-wrap { aspect-ratio: 4 / 3; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact { text-align: center; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .stats-inner { gap: 2rem; }
  .stat-sep { display: none; }

  .process-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-card--wide { grid-column: span 2; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { transition: none; }
  .hero-mesh { animation: none; }
  .hero-scroll-line { animation: none; }
  .hero-kicker-dot { animation: none; }
  .splash-fill { animation: none; width: 100%; }
}
