/* =========================================================
   Louth Luxe Mobile Auto Spa — styles
   Palette pulled from the logo: near-black base, silver/white,
   warm champagne-gold accents.
   ========================================================= */

:root {
  --black: #0a0a0c;
  --black-2: #101014;
  --black-3: #16161b;
  --panel: #1b1b21;
  --line: rgba(255, 255, 255, 0.09);
  --white: #f6f5f2;
  --silver: #c9c9cf;
  --muted: #9a9aa4;

  /* Gold, sampled/derived from the logo script */
  --gold: #cda85a;
  --gold-2: #e8cf8f;
  --gold-3: #b8912f;
  --gold-grad: linear-gradient(100deg, #b8912f 0%, #e8cf8f 45%, #cda85a 100%);
  --silver-grad: linear-gradient(100deg, #7f8188 0%, #eceae6 50%, #a7a8ad 100%);

  --cream: #f4efe6;
  --cream-2: #ece4d6;
  --ink: #17150f;

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- Scroll-triggered fade-in (only when JS enables .js-anim) ---- */
.js-anim .fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
  transition-delay: var(--fade-delay, 0ms);
  will-change: opacity, transform;
}
.js-anim .fade-in.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-anim .fade-in { opacity: 1; transform: none; transition: none; }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  will-change: transform;
}
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: 0 0 auto; }
.btn-gold {
  background: var(--gold-grad);
  color: #241b06;
  box-shadow: 0 10px 26px rgba(205, 168, 90, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(205, 168, 90, 0.42); }
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(205, 168, 90, 0.5);
  color: var(--gold-2);
}
.btn-outline:hover { transform: translateY(-2px); border-color: var(--gold); background: rgba(205, 168, 90, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand-logo { height: 46px; width: auto; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--silver);
  transition: color 0.2s;
}
.nav-list a:hover { color: var(--gold-2); }
.nav-cta {
  color: #241b06 !important;
  background: var(--gold-grad);
  padding: 9px 18px;
  border-radius: 999px;
}
.nav-cta:hover { color: #241b06 !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold-2);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.42) saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 15% 30%, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.86) 55%, rgba(10,10,12,0.97) 100%),
    linear-gradient(180deg, rgba(10,10,12,0.35) 0%, rgba(10,10,12,0.2) 40%, var(--black) 100%);
}
.hero-word {
  position: absolute;
  right: -3vw;
  bottom: -4vh;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(9rem, 30vw, 26rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(205, 168, 90, 0.14);
  pointer-events: none;
  user-select: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
}
.hero-content { max-width: 620px; }

/* ---- Hero showcase (rotating recent-work photos) ---- */
.hero-showcase {
  position: relative;
  align-self: center;
  min-height: 540px;
}
/* thin gold accent line where the two halves meet */
.hero-showcase::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(205, 168, 90, 0.5), transparent);
}
.showcase-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 88%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 55% 45%, rgba(205, 168, 90, 0.28), rgba(205, 168, 90, 0) 68%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}
.showcase-badge {
  position: absolute;
  top: 4px;
  left: 2%;
  z-index: 4;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(205, 168, 90, 0.4);
  color: var(--gold-2);
}
.showcase-frame {
  margin: 0;
  position: absolute;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(205, 168, 90, 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6);
  background: var(--black-3);
}
.showcase-frame--primary {
  width: 56%;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.showcase-frame--secondary {
  width: 45%;
  right: 0;
  top: 0;
  z-index: 2;
  border-color: rgba(205, 168, 90, 0.72);
}
.showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.showcase-img.is-shown { opacity: 1; }
/* gentle darkening at the base so the gold frames read cleanly */
.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0) 62%, rgba(10, 10, 12, 0.28) 100%);
}
.showcase-static { width: 56%; border-radius: 16px; border: 2px solid rgba(205, 168, 90, 0.5); }

.hero-eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--gold-2);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(2.9rem, 9vw, 5.6rem);
  margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero h1 span {
  display: block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.1rem, 3.4vw, 1.6rem);
  color: var(--white);
  margin: 18px 0 4px;
}
.hero-hook {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: var(--silver);
  font-style: italic;
  margin: 0 0 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
  margin: 26px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- Feature strip ---------- */
.features {
  background: linear-gradient(180deg, var(--black-2), var(--black));
  border-bottom: 1px solid var(--line);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 46px 20px;
}
.feature {
  text-align: center;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
  transition: border-color 0.25s, transform 0.25s;
}
.feature:hover { border-color: rgba(205,168,90,0.4); transform: translateY(-4px); }
.feature-ico {
  width: 42px; height: 42px;
  fill: var(--gold);
  margin: 0 auto 12px;
}
.feature-title {
  font-size: 1.15rem;
  color: var(--white);
  margin: 0 0 6px;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* ---------- Section shared ---------- */
section { padding-block: clamp(52px, 8vw, 96px); }
.section-head { max-width: 720px; margin: 0 auto clamp(32px, 5vw, 54px); text-align: center; }
.kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--gold);
  margin: 0 0 14px;
}
.kicker-dark { color: var(--gold-3); }
.section-head h2 { font-size: clamp(2rem, 5.5vw, 3.1rem); }
.section-sub { color: var(--muted); margin: 16px 0 0; font-size: 1.02rem; }
.section-sub-dark { color: #6b5f49; }

/* ---------- Services & Pricing ---------- */
.services { background: var(--black); position: relative; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.tier {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.tier:hover { transform: translateY(-5px); }
.tier-featured {
  border-color: rgba(205,168,90,0.55);
  box-shadow: 0 0 0 1px rgba(205,168,90,0.2), 0 24px 50px rgba(0,0,0,0.5);
  background:
    linear-gradient(180deg, rgba(205,168,90,0.08), rgba(0,0,0,0)) ,
    linear-gradient(180deg, var(--panel), var(--black-3));
}
.tier-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: #241b06;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.tier-head h3 { font-size: 1.55rem; color: var(--white); }
.tier-title { display: flex; flex-direction: column; gap: 4px; }
.tier-tagline {
  margin: 0;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--gold-2);
}
.tier-from { margin: 0; color: var(--muted); font-family: var(--font-head); font-size: 0.95rem; }
.tier-from strong { color: var(--gold-2); font-size: 1.5rem; }
.tier-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.tier-list li {
  position: relative;
  padding-left: 28px;
  color: var(--silver);
  font-size: 0.96rem;
}
.tier-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
}
.price-row li {
  text-align: center;
  padding: 12px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.25);
}
.price-row span { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.price-row strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--white); margin-top: 2px; }
.tier-featured .price-row strong { color: var(--gold-2); }
.tier-btn { margin-top: auto; width: 100%; }

/* Per-size "ideal for" descriptors (Machine Polish) */
.price-row-detailed li { padding: 12px 5px; }
.price-row em {
  display: block;
  font-style: normal;
  font-size: 0.6rem;
  line-height: 1.3;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* Gold protection ribbon on the Machine Polish card (echoes the freshener badge) */
.tier-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--gold-grad);
  color: #241b06;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  margin-bottom: 22px;
}
.tier-note svg { width: 26px; height: 26px; fill: #241b06; flex: 0 0 auto; margin-top: 1px; }
.tier-note strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.82rem;
  margin-bottom: 3px;
}
.tier-note span { font-size: 0.78rem; line-height: 1.35; }

/* Extras */
.extras {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  max-width: 900px;
  margin: 26px auto 0;
  align-items: stretch;
}
.extras-col {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  background: rgba(255,255,255,0.015);
}
.extras-col h3 { font-size: 1.05rem; color: var(--gold-2); margin: 0 0 12px; }
.extras-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.extras-col li { display: flex; justify-content: space-between; gap: 14px; color: var(--silver); font-size: 0.94rem; border-bottom: 1px dashed var(--line); padding-bottom: 8px; }
.extras-col li:last-child { border-bottom: 0; padding-bottom: 0; }
.extras-col li span { color: var(--gold-2); font-family: var(--font-head); white-space: nowrap; }
.extras-col li.ex-detailed { align-items: flex-start; }
.ex-detailed em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  margin-top: 4px;
}
.extras-freshener {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--gold-grad);
  color: #241b06;
}
.extras-freshener svg { width: 34px; height: 34px; fill: #241b06; }
.extras-freshener strong { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.03em; }
.extras-freshener span { font-size: 0.85rem; font-weight: 600; }

/* ---------- How it works (cream contrast) ---------- */
.how {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  color: var(--ink);
}
.how .section-head h2 { color: var(--ink); }
.steps {
  list-style: none;
  counter-reset: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(23,21,15,0.08);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: 0 12px 30px rgba(23,21,15,0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(23,21,15,0.12); }
.step-no {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.2rem; color: var(--ink); margin: 0 0 8px; }
.step p { margin: 0; color: #55503f; font-size: 0.95rem; }

/* ---------- Before & After ---------- */
.ba { background: var(--black); }
.ba-slider { max-width: 760px; margin: 0 auto; }
.ba-stage { position: relative; }
.ba-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(205,168,90,0.35);
  box-shadow: var(--shadow);
  user-select: none;
  touch-action: pan-y;
  background: var(--black-3);
}
.ba-viewport img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Clip the before image so it always matches the after image's scale */
.ba-before-wrap {
  position: absolute; inset: 0;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}
.ba-before { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute;
  top: 14px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(4px);
  color: var(--white);
  z-index: 3;
}
.ba-tag-before { left: 14px; }
.ba-tag-after { right: 14px; color: var(--gold-2); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 46px;
  transform: translateX(-50%);
  background: none;
  border: 0;
  cursor: ew-resize;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}
.ba-handle svg {
  position: relative;
  flex: none; /* never let the flex row squash it into an oval */
  width: 44px; height: 44px;
  aspect-ratio: 1;
  padding: 9px;
  border-radius: 50%;
  background: var(--gold-grad);
  fill: #241b06;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible svg { outline: 3px solid var(--white); outline-offset: 3px; }

.ba-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 22px; }
.ba-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(205,168,90,0.45);
  background: rgba(255,255,255,0.02);
  color: var(--gold-2);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ba-arrow:hover { background: rgba(205,168,90,0.12); transform: translateY(-2px); }
.ba-dots, .reviews-dots, .work-dots { display: flex; align-items: center; justify-content: center; gap: 9px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.dot.active { background: var(--gold); width: 22px; border-radius: 999px; }

/* ---------- Recent Work ---------- */
.work { background: linear-gradient(180deg, var(--black), var(--black-2)); }
.work-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.work-track {
  position: relative; /* makes offsetLeft of cards resolve against the track */
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 10px 4px 20px;
  flex: 1;
  scrollbar-width: none;
}
.work-track::-webkit-scrollbar { display: none; }
.work-card {
  scroll-snap-align: center;
  flex: 0 0 min(88%, 520px);
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.work-card.is-active {
  border-color: rgba(205,168,90,0.6);
  box-shadow: 0 0 0 1px rgba(205,168,90,0.25), 0 26px 60px rgba(0,0,0,0.55), 0 0 40px rgba(205,168,90,0.12);
}
.work-gallery { position: relative; aspect-ratio: 3 / 4; background: var(--black-3); }
.work-gallery img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.work-gallery img.is-shown { opacity: 1; }
.work-angle {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(10,10,12,0.74);
  backdrop-filter: blur(5px);
  color: var(--gold-2);
  border: 1px solid rgba(205,168,90,0.3);
}
.work-count {
  position: absolute;
  right: 14px; top: 14px;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(10,10,12,0.74);
  color: var(--white);
}
.work-gnav {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  padding: 0 10px;
}
.work-gbtn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(10,10,12,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.work-gbtn:hover { background: rgba(205,168,90,0.9); color: #241b06; opacity: 1; transform: scale(1.06); }
.work-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px;
  scrollbar-width: none;
}
.work-thumbs::-webkit-scrollbar { display: none; }
.work-thumb {
  flex: 0 0 auto;
  width: 54px; height: 54px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.work-thumb.active { opacity: 1; border-color: var(--gold); }
.work-info { padding: 4px 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.work-info h3 { font-size: 1.35rem; color: var(--white); }
.work-tier {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(205,168,90,0.4);
  color: var(--gold-2);
  white-space: nowrap;
}
.work-arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(205,168,90,0.45);
  background: rgba(10,10,12,0.6);
  color: var(--gold-2);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 5;
}
.work-arrow:hover { background: rgba(205,168,90,0.15); transform: scale(1.05); }
.work-dots { margin-top: 20px; }

/* ---------- Featured Project (Porsche spotlight) ---------- */
.featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 78% 12%, rgba(205, 168, 90, 0.10), rgba(205, 168, 90, 0) 60%),
    linear-gradient(180deg, var(--black-2), var(--black));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* Oversized brand wordmark echo, like the hero */
.featured-word {
  position: absolute;
  right: -2vw;
  top: 2%;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(205, 168, 90, 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.featured .wrap { position: relative; z-index: 1; }

.featured-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}
/* Let grid items shrink to their column instead of their content's intrinsic width */
.featured-stage > * { min-width: 0; }

/* --- Video spotlight --- */
.fp-video { position: relative; }
.fp-glow {
  position: absolute;
  left: 50%; top: 46%;
  width: 118%; height: 78%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(205, 168, 90, 0.28), rgba(205, 168, 90, 0) 68%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}
.fp-video-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(205, 168, 90, 0.6);
  box-shadow: 0 0 0 1px rgba(205, 168, 90, 0.2), 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 46px rgba(205, 168, 90, 0.12);
  background: #000;
}
.fp-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.fp-vlabel {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 3;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.74);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--gold-2);
  border: 1px solid rgba(205, 168, 90, 0.3);
}
.fp-vcount {
  position: absolute;
  right: 14px; top: 14px;
  z-index: 3;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.74);
  color: var(--white);
}
.fp-vnav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  padding: 0 10px;
  pointer-events: none;
}
.fp-gbtn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  pointer-events: auto;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
}
.fp-gbtn:hover { background: rgba(205, 168, 90, 0.9); color: #241b06; opacity: 1; transform: scale(1.06); }
.fp-vctrls {
  position: absolute;
  left: 14px; top: 14px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.fp-ctrl {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(205, 168, 90, 0.4);
  background: rgba(10, 10, 12, 0.66);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--gold-2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.fp-ctrl:hover { background: rgba(205, 168, 90, 0.9); transform: scale(1.06); }
.fp-ctrl:hover svg { fill: #241b06; }
.fp-ctrl svg { width: 18px; height: 18px; fill: var(--gold-2); }
/* Toggle which icon shows based on state (aria-pressed) */
.fp-ctrl .ico-play, .fp-ctrl .ico-unmuted { display: none; }
#fpPlayBtn[aria-pressed="false"] .ico-pause { display: none; }
#fpPlayBtn[aria-pressed="false"] .ico-play { display: inline; }
#fpMuteBtn[aria-pressed="false"] .ico-muted { display: none; }
#fpMuteBtn[aria-pressed="false"] .ico-unmuted { display: inline; }
.fp-vdots { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 20px; }

/* --- Meta + photo gallery --- */
.fp-side { display: flex; flex-direction: column; gap: 26px; }
.fp-meta {
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px;
}
.fp-meta-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.fp-meta-head h3 { font-size: 1.5rem; color: var(--white); }
.fp-tier {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(205, 168, 90, 0.45);
  color: var(--gold-2);
  white-space: nowrap;
}
.fp-meta p { margin: 0 0 18px; color: var(--muted); font-size: 0.98rem; }
.fp-highlights { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fp-highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--silver);
  font-size: 0.95rem;
}
.fp-highlights li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.fp-gallery { background: linear-gradient(180deg, var(--panel), var(--black-3)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fp-gallery-frame { position: relative; aspect-ratio: 4 / 3; background: var(--black-3); }
.fp-gimgs { position: absolute; inset: 0; }
.fp-gimgs img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.fp-gimgs img.is-shown { opacity: 1; }
.fp-glabel {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.74);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--gold-2);
  border: 1px solid rgba(205, 168, 90, 0.3);
}
.fp-gcount {
  position: absolute; right: 14px; top: 14px; z-index: 3;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.74);
  color: var(--white);
}
.fp-gnav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; z-index: 2; padding: 0 10px; pointer-events: none; }
.fp-thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 12px; scrollbar-width: none; }
.fp-thumbs::-webkit-scrollbar { display: none; }
.fp-thumb {
  flex: 0 0 auto;
  width: 56px; height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.fp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fp-thumb.active { opacity: 1; border-color: var(--gold); }

/* ---------- Testimonials ---------- */
.reviews { background: var(--black-2); }
.reviews-carousel { overflow: hidden; }
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  transition: transform 0.5s var(--ease);
}
.review {
  margin: 0;
  padding: 8px;
}
.review > blockquote,
.review > .stars,
.review > figcaption { }
.reviews-track .review {
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.review blockquote { margin: 0; color: var(--silver); font-size: 1.02rem; line-height: 1.7; flex: 1; }
.review figcaption { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-2); font-size: 0.95rem; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }

/* ---------- Service area ---------- */
.area { background: linear-gradient(180deg, var(--black-2), var(--black)); }
.area-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: center;
}
.area-copy h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.area-copy p { color: var(--muted); margin: 0 0 14px; }
.area-note { color: var(--silver) !important; }
.area-copy .btn { margin-top: 12px; }
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
}
.area-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.015);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: var(--silver);
  position: relative;
  padding-left: 38px;
}
.area-list li::before {
  content: "";
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(205,168,90,0.18);
}

/* ---------- Contact ---------- */
.contact { background: var(--black); }
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 30px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel), var(--black-3));
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateY(-5px); border-color: rgba(205,168,90,0.5); box-shadow: var(--shadow); }
.contact-card .ico { width: 40px; height: 40px; fill: var(--gold); }
.contact-whatsapp .ico { fill: #25d366; }
.contact-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-size: 0.8rem; }
.contact-value { font-family: var(--font-head); font-size: 1.35rem; color: var(--white); }
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--silver);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.socials a svg { width: 20px; height: 20px; fill: currentColor; }
.socials a:hover { color: var(--gold-2); border-color: rgba(205,168,90,0.5); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line); padding-top: 46px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 30px;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 12px; }
.footer-tagline { color: var(--muted); max-width: 340px; margin: 0; font-size: 0.92rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--silver);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social a:hover { color: var(--gold-2); border-color: rgba(205,168,90,0.5); transform: translateY(-2px); }
.footer-contact { text-align: right; }
.footer-contact a { font-family: var(--font-head); font-size: 1.35rem; color: var(--gold-2); }
.footer-cash { color: var(--muted); font-size: 0.85rem; margin: 4px 0 0; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 20px; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.82rem; text-align: center; }

/* =========================================================
   Responsive
   ========================================================= */

/* Hero: collapse the 50/50 split into a stack (text, then full-width photo) */
@media (max-width: 900px) {
  /* Pricing: stack the three cards into a single readable column */
  .tiers { grid-template-columns: 1fr; max-width: 460px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 760px;
    margin: 0 auto;
  }
  .hero-content { max-width: none; }
  .hero-showcase {
    min-height: 0;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }
  .hero-showcase::before { display: none; }
  .showcase-badge { top: 12px; left: 12px; }
  /* Single full-width portrait frame on mobile */
  .showcase-frame--secondary { display: none; }
  .showcase-frame--primary {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    bottom: auto;
    left: auto;
  }
  .showcase-glow { width: 100%; height: 100%; }
  .showcase-static { width: 100%; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,12,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav-list.open { max-height: 340px; }
  .nav-list li { border-top: 1px solid var(--line); }
  .nav-list li:first-child { border-top: 0; }
  .nav-list a { display: block; padding: 15px 22px; }
  .nav-cta { border-radius: 0; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .features-grid { grid-template-columns: 1fr; gap: 14px; }
  .area-inner { grid-template-columns: 1fr; gap: 30px; }
  .extras { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .tiers { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-actions { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-contact { text-align: center; }
  .footer-tagline { margin: 0 auto; }
  .hero { min-height: auto; padding-block: 40px; }
  .hero-inner { padding-block: 30px; }
  .hero-cta .btn { flex: 1 1 100%; }

  /* Recent Work: give the card full width, move the arrows below it */
  .work-carousel { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .work-track { order: -1; flex: 1 1 100%; }
  .work-card { flex-basis: 100%; }

  /* Featured Project: stack the video above the meta + photos */
  .featured-stage { grid-template-columns: 1fr; gap: 32px; }
  .fp-side { gap: 22px; }
}

@media (max-width: 420px) {
  .price-row strong { font-size: 1.15rem; }
}
