/* Self-hosted fonts (same-origin + preloaded) -> no font-swap/wrong-font flash. Latin subset. */
@font-face { font-family: 'Anton'; font-style: normal; font-weight: 400; font-display: block;
  src: url('/assets/fonts/anton-latin.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400 700; font-display: block;
  src: url('/assets/fonts/montserrat-latin.woff2') format('woff2'); }

/* ==========================================================================
   JNR Detailing — design system (clean rebuild, no framework).
   Display: Anton (heavy condensed, uppercase). Body/UI: Montserrat.
   Light surfaces by default with strategic true-black sections. Gold only as a
   restrained accent that ties to the logo. Anti-slop: hairline depth, subtle/fast
   motion, one accent, no glow/scale-pops.
   ========================================================================== */
:root {
  --ink: #0f0f0f;
  --ink-2: #414141;
  --bg: #ffffff;
  --bg-2: #f5f4f2;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --cream: #f4efe6;
  --cream-2: #b6b1a8;
  --gold: #c9a24b;
  --hair: rgba(0,0,0,.10);
  --hair-d: rgba(255,255,255,.10);
  --nav-h: 88px;
  --maxw: 1240px;
  --pad: clamp(24px, 5.5vw, 64px);
  --r: 14px;
  --ease: cubic-bezier(.22,1,.36,1);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Montserrat', system-ui, sans-serif; font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Anton', system-ui, sans-serif; font-weight: 400; line-height: .98;
  letter-spacing: .005em; text-transform: uppercase; margin: 0; }
p { margin: 0; }
::selection { background: var(--ink); color: #fff; }

/* layout ------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--dark { background: var(--dark); color: var(--cream); }
.section--tint { background: var(--bg-2); }
.eyebrow { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; font-size: .72rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.section--dark .eyebrow { color: var(--cream-2); }
.lead { color: var(--ink-2); font-size: 18px; line-height: 27px; max-width: 60ch; }
.section--dark .lead { color: var(--cream-2); }
h1 { font-size: clamp(2.9rem, 8.2vw, 90px); line-height: 1; }
h2 { font-size: clamp(2.1rem, 5.6vw, 60px); line-height: 1.2; }
h3 { font-size: clamp(1.6rem, 2.45vw, 30px); line-height: 1.2; }

/* buttons ------------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Anton', sans-serif;
  text-transform: uppercase; letter-spacing: .05em; font-size: 18px; padding: 15px 30px;
  border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform .16s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn--primary { background: #1c1c1c; color: #fff; }
.btn--primary:hover { transform: translateY(-1px); background: #000; }
.btn--white { background: #fff; color: #0f0f0f; }
.btn--white:hover { transform: translateY(-1px); background: #f0ece3; }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(15,15,15,.45); }
.btn--ghost:hover { transform: translateY(-1px); background: var(--ink); color: #fff; border-color: var(--ink); }
.section--dark .btn--primary { background: var(--cream); color: var(--ink); }
.section--dark .btn--primary:hover { background: #fff; }
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.section--dark .btn--ghost:hover { background: #fff; color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ==========================================================================
   NAVBAR — two state: transparent over hero (ink on light pages / white on dark
   pages), solid white + ink once scrolled. Fixed, overlays the hero.
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; padding-inline: var(--pad);
  transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  background: #fff; border-bottom: 1px solid var(--hair); }
.nav__left { display: flex; align-items: center; gap: clamp(26px, 3.2vw, 54px); }
.nav__logo { display: flex; align-items: center; height: var(--nav-h); }
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 40px); }
.nav__links a { font-weight: 500; font-size: 16px; color: var(--ink); transition: opacity .15s ease, color .2s ease; }
.nav__links a:hover { opacity: .6; }
.nav__links a[aria-current="page"] { font-weight: 600; }
.nav__cta { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .04em;
  font-size: 17px; color: var(--ink); border: 1.5px solid rgba(15,15,15,.5); border-radius: 999px;
  padding: 12px 24px; white-space: nowrap; transition: transform .16s var(--ease), background .2s ease, color .2s ease, border-color .2s ease; }
.nav__cta:hover { transform: translateY(-1px); background: var(--ink); color: #fff; border-color: var(--ink); }
.nav__burger { display: none; flex-direction: column; gap: 6px; width: 34px; height: 34px;
  align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; padding: 0; }
.nav__burger span { width: 28px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: background .2s ease; }

/* transparent over a DARK hero (white text), until scrolled. No nav gradient —
   the banner's own ::after scrim handles legibility, and a bounded nav gradient
   leaves a visible band edge at the nav's bottom over the dark banner image. */
body.hero-dark .nav:not(.is-stuck) {
  background: transparent;
  border-bottom-color: transparent; }
body.hero-dark .nav:not(.is-stuck) .nav__links a,
body.hero-dark .nav:not(.is-stuck) .nav__cta { color: #fff; }
body.hero-dark .nav:not(.is-stuck) .nav__cta { border-color: rgba(255,255,255,.6); }
body.hero-dark .nav:not(.is-stuck) .nav__cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
body.hero-dark .nav:not(.is-stuck) .nav__burger span { background: #fff; }

/* transparent over a LIGHT hero (ink text, no bar) until scrolled */
body.hero-light .nav:not(.is-stuck) { background: transparent; border-bottom-color: transparent; }

.nav.is-stuck { background: #fff; border-bottom-color: var(--hair); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
@media (prefers-reduced-motion: reduce) { .nav, .nav * { transition: none !important; } }

/* mobile menu -------------------------------------------------------------- */
@media (max-width: 880px) {
  :root { --nav-h: 70px; }
  .nav__logo img { height: 44px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}
.menu { position: fixed; inset: 0; z-index: 1100; background: var(--dark); color: var(--cream);
  display: flex; flex-direction: column; padding: 22px var(--pad) 40px;
  transform: translateY(-100%); visibility: hidden;
  transition: transform .34s var(--ease), visibility 0s linear .34s; }
.menu.open { transform: translateY(0); visibility: visible; transition: transform .34s var(--ease); }
.menu__top { display: flex; align-items: center; justify-content: space-between; }
.menu__top a { display: inline-flex; }
.menu__top img { height: 48px; }
.menu__close { background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; width: 48px; height: 48px; }
.menu__links { display: flex; flex-direction: column; margin-top: 28px; }
.menu__links a { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(30px, 9vw, 42px);
  color: var(--cream); padding: 14px 0; border-bottom: 1px solid var(--hair-d); transition: color .15s ease; }
.menu__links a:hover { color: #fff; }
.menu .btn { margin-top: 30px; align-self: flex-start; }
.menu .btn--primary { background: #fff; color: #0f0f0f; }
.menu .btn--primary:hover { background: #f0ece3; transform: translateY(-1px); }
@media (prefers-reduced-motion: reduce) { .menu { transition: none; } }

/* hero --------------------------------------------------------------------- */
.hero { padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 90px)); padding-bottom: clamp(50px, 7vw, 90px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: start; }
.hero__eyebrow { display: block; font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase;
  font-size: 16px; letter-spacing: .16px; color: #1c1c1c; }
.hero__title { margin: 14px 0 18px; font-size: clamp(2.6rem, 6.4vw, 90px); line-height: 1; }
.hero__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5; background: var(--dark-2); }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__media-cap { position: absolute; inset: auto 0 0 0; padding: clamp(18px,2.4vw,28px); color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,0)); }
.hero__media-cap h3 { color: #fff; }
.hero__media-cap p { color: rgba(255,255,255,.82); margin-top: 6px; font-size: .95rem; }
@media (max-width: 1100px) { .hero__grid { grid-template-columns: 1fr; } .heromedia { max-width: 560px; } }

/* inner page banner -------------------------------------------------------- */
.banner { position: relative; min-height: clamp(360px, 52vw, 560px); display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; }
.banner__bg { position: absolute; inset: 0; z-index: 0; }
.banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.banner::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.8) 100%); }
.banner .container { position: relative; z-index: 2; padding-bottom: clamp(40px, 6vw, 76px); padding-top: calc(var(--nav-h) + 30px); }
.banner h1 { max-width: 16ch; }
.banner .lead { color: rgba(255,255,255,.85); margin-top: 16px; }

/* feature rows (image + text) ---------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.feature + .feature { margin-top: clamp(48px, 6vw, 90px); }
.feature--rev .feature__media { order: 2; }
.feature__media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--dark-2); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge { width: 56px; height: 56px; border-radius: 999px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; border: 1px solid var(--hair); }
.feature__badge svg { width: 26px; height: 26px; }
.section--dark .feature__badge { border-color: var(--hair-d); }
.feature h3 { margin-bottom: 12px; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature--rev .feature__media { order: 0; } }

/* stats -------------------------------------------------------------------- */
.stats { display: flex; gap: clamp(34px, 6vw, 80px); flex-wrap: wrap; }
.stat__num { font-family: 'Anton', sans-serif; font-size: clamp(3rem, 7vw, 5rem); line-height: .9; }
.stat__label { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 600; color: var(--ink-2); margin-top: 8px; }
.section--dark .stat__label { color: var(--cream-2); }

/* cards (services / pricing / gallery) ------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card { border: 1px solid var(--hair); border-radius: var(--r); padding: clamp(22px, 2.4vw, 32px);
  background: #fff; transition: transform .18s var(--ease), border-color .18s var(--ease); }
.card:hover { transform: translateY(-3px); border-color: rgba(0,0,0,.22); }
.section--dark .card { background: var(--dark-2); border-color: var(--hair-d); }
.card__num { font-family: 'Anton', sans-serif; color: var(--gold); font-size: 1.1rem; }
.card h3 { margin: 12px 0 10px; }
.card p { color: var(--ink-2); font-size: .98rem; }
.section--dark .card p { color: var(--cream-2); }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
.card__link::after { content: "→"; transition: transform .16s var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .card:hover { transform: none; } }

/* pricing ------------------------------------------------------------------ */
.price { display: flex; flex-direction: column; }
.price--feat { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.price__amt { font-family: 'Anton', sans-serif; font-size: clamp(2.4rem,4vw,3.2rem); margin: 6px 0 4px; }
.price ul { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.price li { display: flex; gap: 10px; font-size: .95rem; color: var(--ink-2); }
.price--feat li { color: var(--cream-2); }
.price li::before { content: ""; flex: 0 0 auto; width: 18px; height: 18px; border-radius: 999px;
  background: var(--gold); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat; }
.price .btn { margin-top: auto; }

/* gallery (click-to-play, portrait client clips) --------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.gallery__item { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 12px;
  background: var(--dark-2) center/cover no-repeat; border: 0; padding: 0; cursor: pointer; display: block; width: 100%; }
.gallery__item img, .gallery__item video { width: 100%; height: 100%; object-fit: cover; }
.gallery__item .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); transition: background .18s var(--ease); }
.gallery__item:hover .play { background: rgba(0,0,0,.14); }
.gallery__item .play svg { width: 60px; height: 60px; filter: drop-shadow(0 2px 10px rgba(0,0,0,.5)); transition: transform .18s var(--ease); }
.gallery__item:hover .play svg { transform: scale(1.06); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } .gallery__item { aspect-ratio: 3/4; } }
@media (prefers-reduced-motion: reduce) { .gallery__item:hover .play svg { transform: none; } }

/* contact two boxes -------------------------------------------------------- */
.cboxes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 26px); }
.cbox { background: var(--dark-2); color: var(--cream); border: 1px solid var(--hair-d);
  border-radius: var(--r); padding: clamp(24px, 3vw, 38px); }
.cbox h3 { color: var(--cream); margin-bottom: 20px; }
.cinfo { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; }
.cinfo dt { font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; color: var(--cream-2); padding-top: 3px; }
.cinfo dd { margin: 0; }
.cinfo a { border-bottom: 1px solid rgba(255,255,255,.28); }
.cinfo a:hover { border-bottom-color: #fff; }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.areas h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .14em;
  font-size: .68rem; color: var(--cream-2); margin: 0 0 10px; }
.areas ul { list-style: none; margin: 0; padding: 0; }
.areas li { padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #d8d5cf; font-size: .94rem; }
@media (max-width: 820px) { .cboxes { grid-template-columns: 1fr; } }

/* form --------------------------------------------------------------------- */
.form { display: grid; gap: 14px; max-width: 560px; }
.form input, .form textarea, .form select { font: inherit; padding: 14px 16px; border: 1px solid var(--hair);
  border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
.form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23414141' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--ink); outline-offset: 1px; }
.form-callout { display: flex; gap: 12px; align-items: flex-start; max-width: 560px; margin: 0 0 20px;
  padding: 14px 18px; border: 1px solid var(--hair); border-left: 3px solid var(--gold); border-radius: 10px;
  background: rgba(201,162,75,.07); }
.form-callout svg { flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; color: var(--gold); }
.form-callout p { margin: 0; font-size: .92rem; line-height: 1.55; color: var(--ink-2); }
.form-callout strong { color: var(--ink); }

/* footer ------------------------------------------------------------------- */
.footer { background: #000; color: var(--cream-2); padding: clamp(50px, 6vw, 80px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__logo img { height: 96px; width: auto; }
.footer h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  font-size: .72rem; color: #fff; margin: 0 0 16px; }
.footer a { display: block; padding: 5px 0; transition: color .15s ease; }
.footer a:hover { color: #fff; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--hair-d);
  display: flex; align-items: center; justify-content: center; }
.footer__social a:hover { border-color: #fff; }
.footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.footer__bar { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--hair-d);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr; gap: 30px; } }

/* reveal-on-scroll (progressive; no-JS shows everything) -------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* stagger children of a group so cards/rows fade up in sequence (Framer feel) */
.reveal.in > * { animation: none; }
.stagger.in > * { opacity: 0; transform: translateY(30px); animation: rise .7s var(--ease) forwards; }
.stagger.in > *:nth-child(2){ animation-delay:.08s } .stagger.in > *:nth-child(3){ animation-delay:.16s }
.stagger.in > *:nth-child(4){ animation-delay:.24s } .stagger.in > *:nth-child(5){ animation-delay:.32s } .stagger.in > *:nth-child(6){ animation-delay:.40s }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .stagger.in > *{ animation: none; opacity:1; transform:none; } }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* View Transitions — smooth crossfade between pages ------------------------ */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out .22s ease both; }
::view-transition-new(root) { animation: vt-in .28s ease both; }
@keyframes vt-out { to { opacity: 0; } }
@keyframes vt-in { from { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ==========================================================================
   SPLASH-EXACT HOME SECTIONS (JNR black/gold)
   ========================================================================== */
/* hero media card: image + dark panel, with an offset accent square behind */
.heromedia { position: relative; z-index: 2; }
.heromedia__sq { position: absolute; top: -18px; right: -22px; width: 54%; height: 78%;
  background: var(--gold); border-radius: 4px; z-index: 0; }
.heromedia__inner { position: relative; z-index: 1; border-radius: var(--r); overflow: hidden; background: var(--dark); box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.heromedia__img { aspect-ratio: 16/10; line-height: 0; }
.heromedia__img img, .heromedia__img video { width: 100%; height: 100%; object-fit: cover; display: block; margin-bottom: -1px; }
.heromedia__panel { background: var(--dark); color: var(--cream); padding: clamp(26px,2.6vw,38px);
  display: flex; flex-direction: column; min-height: clamp(170px, 13vw, 210px); }
.heromedia__panel h3 { color: #fff; font-size: 30px; }
.heromedia__panel p { color: rgba(255,255,255,.86); margin: 12px 0 18px; font-size: .96rem; }
.heromedia__panel a { margin-top: auto; align-self: flex-start; position: relative; font-family: 'Anton',sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; color: #fff; padding-bottom: 8px; }
.heromedia__panel a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center; transition: transform .65s var(--ease); }
.heromedia:hover .heromedia__panel a::after { transform: scaleX(1); }
@media (hover: none), (max-width: 880px) { .heromedia__panel a::after { transform: none; transition: none; } }
@media (prefers-reduced-motion: reduce) { .heromedia__panel a::after { transition: none; } }
@media (max-width: 880px){ .heromedia__sq{ top:-16px; right:-16px; } }

/* full-bleed car band under the hero (overlapped by the hero card on desktop) */
.fullcar { width: 100%; aspect-ratio: 11/5; overflow: hidden; background: #000; position: relative; z-index: 1; }
.fullcar img, .fullcar video { width: 100%; height: 100%; object-fit: cover; object-position: center 93%; display: block; }
/* desktop: trim the hero's bottom space and pull the band up so the card overlaps it (like Splash) */
@media (min-width: 1101px) { .hero { padding-bottom: 0; } .fullcar { margin-top: -120px; } }
@media (max-width: 700px){ .fullcar{ aspect-ratio: 16/12; } }

/* why-choose-us centered + polaroids */
.why { text-align: center; }
.why h2 { max-width: 760px; margin: 0 auto; }
.polaroids { display: flex; justify-content: center; align-items: center; margin: clamp(34px,4.5vw,60px) 0 clamp(26px,3.4vw,40px); }
.polaroids img { width: clamp(84px, 17vw, 232px); aspect-ratio: 3/4; object-fit: cover; background: #fff;
  border: 8px solid #fff; box-shadow: 0 16px 36px rgba(0,0,0,.20); border-radius: 2px; }
.polaroids img:nth-child(1){ transform: rotate(-14deg) translateY(6px); z-index:1; }
.polaroids img:nth-child(2){ transform: rotate(-5deg); margin-left:-30px; z-index:2; }
.polaroids img:nth-child(3){ transform: rotate(5deg); margin-left:-30px; z-index:3; }
.polaroids img:nth-child(4){ transform: rotate(14deg) translateY(6px); margin-left:-30px; z-index:2; }
@media (max-width: 560px) { .polaroids img { border-width: 5px; } .polaroids img:nth-child(n+2){ margin-left: -20px; } }
.why p { max-width: 52ch; margin: 0 auto 26px; }
.why__btns { display: flex; gap: 14px; justify-content: center; }

/* complex services: left heading / right rows */
.complex { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,4vw,70px); }
.complex__intro { align-self: start; position: sticky; top: 110px; }
.complex__intro h2 { margin: 0 0 14px; }
.complex__intro p { color: var(--ink-2); font-size: 18px; line-height: 27px; margin-bottom: 22px; max-width: 30ch; }
.srow { display: grid; grid-template-columns: clamp(200px,22vw,290px) 1fr; gap: clamp(24px,2.6vw,42px); align-items: stretch;
  padding: clamp(16px,1.8vw,24px); border: 1px solid var(--hair); border-radius: 14px;
  transition: border-color .18s var(--ease), transform .18s var(--ease); }
.srow:hover { border-color: rgba(15,15,15,.22); transform: translateY(-2px); }
.srow + .srow { margin-top: clamp(16px,1.8vw,24px); }
.srow > div:last-child { display: flex; flex-direction: column; justify-content: center; }
.srow__img { align-self: center; aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: var(--dark-2); }
.srow__img img { width: 100%; height: 100%; object-fit: cover; }
.srow h3 { font-size: clamp(2rem, 7vw, 36px); line-height: 1.08; margin-bottom: 14px; }
.srow p { color: var(--ink-2); font-size: clamp(17px, 4.4vw, 19px); line-height: 1.55; margin-bottom: 20px; max-width: 46ch; }
.srow__link { position: relative; align-self: flex-start; font-family: 'Anton',sans-serif; text-transform: uppercase; letter-spacing: .05em; font-size: clamp(19px, 5vw, 22px); display: inline-block; padding-bottom: 16px; }
.srow__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center; transition: transform .65s var(--ease); }
.srow:hover .srow__link::after { transform: scaleX(1); }
/* touch / no-hover / narrow (mobile) displays: short static underline directly under VIEW DETAILS, no extending animation */
@media (hover: none), (max-width: 880px) {
  .srow__link { padding-bottom: 0; }
  .srow__link::after { position: static; display: block; width: 100%; height: 3px; margin-top: 10px; transform: none; transition: none; }
}
@media (prefers-reduced-motion: reduce) { .srow { transition: none; } .srow__link::after { transition: none; } .srow:hover { transform: none; } }
@media (max-width: 940px){ .complex{ grid-template-columns: 1fr; } .complex__intro{ position: static; } }
@media (max-width: 760px){ .srow{ grid-template-columns: 1fr; } .srow__img{ aspect-ratio: 16/10; } }

/* about: mastered the art (text + stat + two features) */
.mastered { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,64px); align-items: center; }
.mastered__feats { display: grid; gap: 22px; margin-top: 24px; }
.mastered__feat h4 { font-family: 'Anton',sans-serif; text-transform: uppercase; font-size: 1.05rem; margin: 0 0 6px; }
.mastered__feat p { color: var(--cream-2); font-size: .95rem; }
@media (max-width: 880px){ .mastered{ grid-template-columns: 1fr; } }

/* pricing header row */
.pricehead { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.pricehead p { max-width: 46ch; }

/* testimonials */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review { border: 1px solid var(--hair); border-radius: var(--r); padding: 28px; background: #fff; }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.review p { color: var(--ink); font-size: .98rem; }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review__who img { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.review__who b { display: block; font-size: .9rem; }
.review__who span { font-size: .78rem; color: var(--ink-2); }
@media (max-width: 900px){ .reviews{ grid-template-columns: 1fr; } }

/* booking form (dark) */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,64px); align-items: center; }
.booking .form input, .booking .form textarea, .booking .form select { background-color: #1c1c1c; border-color: var(--hair-d); color: var(--cream); }
.booking .form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c887f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); }
.booking .form input::placeholder, .booking .form textarea::placeholder { color: #8c887f; }
.booking .form select:invalid { color: #8c887f; }
.booking .form input:focus, .booking .form textarea:focus, .booking .form select:focus { outline-color: var(--gold); }
@media (max-width: 880px){ .booking{ grid-template-columns: 1fr; } }

/* ==========================================================================
   SERVICE DETAIL PAGES — two-col banner, content article, benefits, FAQ, CTA
   ========================================================================== */
.svc-banner { min-height: clamp(300px, 33vw, 430px); }
.svc-banner__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 64px); align-items: end; }
.svc-banner__grid h1 { max-width: 11ch; }
.svc-banner__grid .lead { margin: 0 0 8px; }
@media (max-width: 820px) { .svc-banner__grid { grid-template-columns: 1fr; } .svc-banner__grid .lead { margin-top: 8px; } }

.svc-content { max-width: 924px; margin: 0 auto; padding-inline: var(--pad); }
.svc-content h2 { font-size: clamp(2rem, 4vw, 44px); line-height: 1.12; margin: 0 0 18px; }
.svc-content h3 { margin: 42px 0 12px; }
.svc-content h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .02em; font-size: 20px; margin: 30px 0 14px; }
.svc-content p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin: 0 0 6px; }
.svc-img { margin: 30px 0; border-radius: 4px; overflow: hidden; aspect-ratio: 16/9; background: var(--dark-2); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-benefits { list-style: none; margin: 0; padding: 0; }
.svc-benefits li { position: relative; padding-left: 24px; margin: 9px 0; font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.svc-benefits li::before { content: ""; position: absolute; left: 3px; top: 10px; width: 7px; height: 7px; background: var(--ink-2); border-radius: 50%; }

.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 12px; }
.faq { border: 1px solid var(--hair); border-radius: 8px; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: 'Anton', sans-serif;
  text-transform: uppercase; letter-spacing: .03em; font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-top: -4px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg);
  transition: transform .2s var(--ease); }
.faq[open] summary::after { transform: rotate(-135deg); margin-top: 2px; }
.faq__a { padding: 0 24px 22px; }
.faq__a p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq summary::after { transition: none; } }

.cta-dark { background: var(--dark); color: #fff; text-align: center; padding: clamp(64px, 9vw, 120px) 0; }
.cta-dark__logo { display: block; margin: 0 auto 30px; height: 76px; width: auto; }
.cta-dark h2 { color: #fff; max-width: 24ch; margin: 0 auto 34px; font-size: clamp(1.9rem, 4vw, 46px); line-height: 1.15; }
.cta-dark__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ==========================================================================
   CLIENT REVIEWS — carousel (big image + one review, prev/next arrows)
   ========================================================================== */
.reviews-head { position: relative; padding-left: 22px; margin: 0 0 clamp(34px,4.5vw,58px); }
.reviews-head::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 4px; background: var(--gold); }
.rev-carousel { position: relative; }
.rev-viewport { overflow: hidden; }
.rev-track { display: flex; transition: transform .55s var(--ease); will-change: transform; }
.rev-slide { flex: 0 0 100%; display: grid; grid-template-columns: clamp(280px,42%,520px) 1fr; gap: clamp(32px,5vw,76px); align-items: center; }
.rev-img { border-radius: 6px; overflow: hidden; aspect-ratio: 4/5; background: var(--dark-2); }
.rev-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-person { display: flex; align-items: center; gap: 16px; margin-bottom: clamp(22px,3vw,34px); }
.rev-avatar { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: 'Anton',sans-serif; font-size: 22px; }
.rev-name { font-family: 'Anton',sans-serif; text-transform: uppercase; font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1; }
.rev-text { font-size: clamp(1.05rem,1.5vw,1.35rem); line-height: 1.6; color: var(--ink); max-width: 48ch; margin: 0; }
.rev-stars { color: var(--gold); letter-spacing: 4px; font-size: 1.3rem; margin: clamp(22px,3vw,34px) 0 10px; }
.rev-meta { color: var(--ink-2); font-size: .95rem; }
.rev-nav { position: absolute; right: 0; bottom: 0; display: flex; gap: 16px; }
.rev-btn { width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid var(--hair); background: transparent; cursor: pointer; padding: 0;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: border-color .18s var(--ease), color .18s var(--ease); }
.rev-btn svg { width: 20px; height: 20px; display: block; }
.rev-btn:hover { border-color: var(--ink); }
@media (max-width: 760px) { .rev-slide { grid-template-columns: 1fr; } .rev-img { aspect-ratio: 16/11; } .rev-nav { position: static; justify-content: center; margin-top: 24px; } }
@media (prefers-reduced-motion: reduce) { .rev-track { transition: none; } .rev-btn { transition: none; } }

/* floating social rail (Instagram + TikTok) — fixed bottom-right on every page */
#jnr-social { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
#jnr-social a { width: 48px; height: 48px; border-radius: 50%; background: #1c1c1c; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.18); transition: transform .16s var(--ease), background .2s var(--ease); }
#jnr-social a:hover { transform: translateY(-2px); background: #000; }
#jnr-social svg { width: 22px; height: 22px; fill: #fff; display: block; }
@media (max-width: 600px) { #jnr-social a { width: 42px; height: 42px; } #jnr-social svg { width: 19px; height: 19px; } }
@media (prefers-reduced-motion: reduce) { #jnr-social a { transition: background .2s var(--ease); } #jnr-social a:hover { transform: none; } }

.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }

/* ===== About page ===== */
/* offset accent frame behind media */
.ab-frame { position: relative; }
.ab-frame > img, .ab-frame > video { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; position: relative; z-index: 1; }
.ab-frame::after { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--gold); border-radius: 4px; transform: translate(22px, 22px); }
.ab-frame--left::after { transform: translate(-22px, 22px); }

/* intro: passionate + stats */
.ab-intro { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(34px, 5vw, 84px); align-items: center; }
.ab-intro h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.02; margin: 0 0 clamp(30px,4vw,46px); max-width: 20ch; }
.ab-intro .stats { gap: clamp(36px, 5vw, 74px); margin-bottom: clamp(28px,3.5vw,40px); }
.ab-intro .stat__num { color: var(--gold); font-size: clamp(4rem, 8vw, 6.5rem); }
.ab-intro .stat__label { font-family: 'Anton', sans-serif; color: var(--ink); font-weight: 400; text-transform: uppercase; letter-spacing: .02em; font-size: clamp(1.05rem, 1.7vw, 1.45rem); line-height: 1.05; margin-top: 10px; }
.ab-intro .ab-frame { aspect-ratio: 4/5; }
@media (max-width: 900px) { .ab-intro { grid-template-columns: 1fr; } .ab-intro .ab-frame { aspect-ratio: 4/3; margin-bottom: 22px; } }

/* founder quote band (full-bleed) */
.ab-quote { position: relative; min-height: clamp(420px, 58vh, 660px); display: flex; align-items: flex-end; overflow: hidden; }
.ab-quote > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ab-quote::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.05) 100%); }
.ab-quote__inner { position: relative; z-index: 1; color: #fff; padding: clamp(34px, 6vw, 80px) var(--pad); max-width: 1000px; }
.ab-quote__text { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.2; margin: 0; max-width: 36ch; }
.ab-quote__by { margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1rem,1.4vw,1.15rem); }

/* dark alternating feature rows */
.ab-feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 100px); align-items: center; }
.ab-feat + .ab-feat { margin-top: clamp(56px, 8vw, 120px); }
.ab-feat .ab-frame { aspect-ratio: 4/5; max-width: 420px; }
.ab-feat--rev .ab-frame { order: 2; }
.ab-feat__body { text-align: center; }
.ab-feat__body .ab-icon { margin: 0 auto 22px; }
.ab-feat__body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.05; margin: 0 0 16px; }
.ab-feat__body p { color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.7; max-width: 44ch; margin: 0 auto; }
.ab-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; }
.ab-icon svg { width: 30px; height: 30px; fill: #0a0a0a; }
@media (max-width: 820px) { .ab-feat { grid-template-columns: 1fr; gap: 30px; } .ab-feat--rev .ab-frame { order: 0; } .ab-feat .ab-frame { margin: 0 auto; } }

/* our process band (full-bleed) */
.ab-process { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(64px, 9vw, 130px) 0; }
.ab-process > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.ab-process::before { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(8,8,8,.66); }
.ab-process__inner { position: relative; z-index: 2; padding: 0 var(--pad); }
.ab-process h2 { font-size: clamp(2.4rem, 5vw, 3.5rem); margin: 0 0 18px; }
.ab-process__lead { color: rgba(255,255,255,.88); max-width: 50ch; margin: 0 auto; line-height: 1.6; font-size: clamp(1.1rem,1.6vw,1.3rem); }
.ab-steps { display: flex; justify-content: center; gap: clamp(30px, 6vw, 100px); flex-wrap: wrap; margin-top: clamp(40px, 5vw, 64px); }
.ab-step__num { width: 86px; height: 86px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.36);
  font-family: 'Anton', sans-serif; font-size: 2.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ab-step__label { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .04em; font-size: clamp(1.2rem, 1.7vw, 1.5rem); }
