/* ============================================================
   SLK PHOTO BOOTHS, "Luminous Studio After Dark"
   Brand: electric blue + deep navy + glossy aperture, champagne accent
   Type:  Bricolage Grotesque (display) · Hanken Grotesk (body) · Space Mono (labels)
   ============================================================ */

/* ----------  Design tokens  ---------- */
:root {
  /* Navy / ink */
  --navy-900: #050b1c;
  --navy-850: #07112a;
  --navy-800: #0a1733;
  --navy-700: #0f2147;
  --navy-600: #14305f;

  /* Brand blues (from logo) */
  --blue-700: #1f5fd1;
  --blue-600: #2e73e8;
  --blue-500: #3f8bff;
  --blue-400: #6aa8ff;
  --cyan:     #67d2ff;

  /* Warm premium accent */
  --gold:     #e9c882;
  --gold-soft:#f3deb0;

  /* Light surfaces */
  --paper:    #eef3fb;
  --paper-2:  #f7fafe;
  --white:    #ffffff;

  /* Ink on light */
  --ink:      #0b1530;
  --ink-soft: #46527a;
  --ink-mute: #7a85a6;

  /* Lines & glass */
  --line:        rgba(11, 21, 48, 0.10);
  --line-strong: rgba(11, 21, 48, 0.16);
  --line-dark:   rgba(255, 255, 255, 0.10);
  --glass:       rgba(255, 255, 255, 0.72);

  /* Gradients */
  --grad-blue:  linear-gradient(135deg, var(--blue-500), var(--blue-700));
  --grad-deep:  radial-gradient(120% 120% at 70% 0%, #103063 0%, var(--navy-800) 45%, var(--navy-900) 100%);
  --grad-lens:  radial-gradient(circle at 35% 30%, #bfe3ff 0%, var(--blue-500) 28%, var(--blue-700) 60%, #0c2a5e 100%);

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(8, 18, 45, 0.08);
  --shadow-md: 0 18px 40px -22px rgba(10, 23, 51, 0.45);
  --shadow-lg: 0 40px 80px -34px rgba(8, 20, 60, 0.55);
  --shadow-blue: 0 24px 60px -24px rgba(46, 115, 232, 0.6);

  /* Geometry */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1200px;

  /* Type */
  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "Courier New", monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--paper-2);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; border-radius: 6px; }

/* ----------  Layout helpers  ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(2.75rem, 5vw, 4.5rem) 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.75rem; }

/* Eyebrow / kicker (mono, "frame" label aesthetic) */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.kicker--center::before { display: none; }
.on-dark .kicker, .kicker--light { color: var(--cyan); }

/* Headings */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
.display {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 56ch; }
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark .lead { color: rgba(226, 234, 250, 0.78); }
.section-head { max-width: 60ch; }
.section-head.center { margin-inline: auto; }
.section-head .h2 { margin-top: 1rem; }
.section-head p { margin-top: 1rem; }

.text-grad {
  background: linear-gradient(100deg, var(--blue-400), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 30px 70px -22px rgba(46,115,232,0.75); }
.btn--ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-700); transform: translateY(-3px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ----------  Header / Nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0.9rem 0;
  transition: padding 0.4s var(--ease), background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(8,18,45,0.5);
  padding: 0.55rem 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; transition: height 0.4s var(--ease); }
.scrolled .nav__logo img { height: 36px; }
.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative; font-weight: 600; font-size: 0.97rem; color: var(--ink);
  padding: 0.5rem 0.9rem; border-radius: 999px; transition: color 0.25s, background 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.32rem; height: 2px;
  background: var(--blue-600); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--blue-700); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--blue-700); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta .btn { padding: 0.72rem 1.3rem; }
.nav__phone { font-weight: 700; font-family: var(--font-display); color: var(--ink); display: inline-flex; align-items: center; gap: 0.45rem; white-space: nowrap; }
.nav__phone svg { width: 16px; height: 16px; color: var(--blue-600); }

/* When header sits over a dark hero and is NOT scrolled, keep readable via subtle chip */
.nav__toggle { display: none; }

/* Mobile nav */
.nav__burger {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-strong);
  background: var(--white); position: relative; flex: none;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transform: translate(-50%, -50%); transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav__burger span::before { transform: translate(-50%, -8px); }
.nav__burger span::after { transform: translate(-50%, 6px); }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav__burger span::after { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--grad-deep); color: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 4rem);
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
/* Logo reads white over the dark menu overlay */
body.menu-open .nav__logo img { filter: brightness(0) invert(1); }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: #fff; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.m-link span { font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan); }
.mobile-menu .btn { margin-top: 2rem; }
.mobile-menu__foot { margin-top: 2rem; font-family: var(--font-mono); font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; }

/* ----------  Hero  ---------- */
.hero { position: relative; background: var(--grad-deep); color: #fff; overflow: hidden; isolation: isolate; }
.hero::after { /* film grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: overlay; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.hero__glow {
  position: absolute; z-index: 0; border-radius: 50%; filter: blur(8px);
  pointer-events: none;
}
.aperture-glow {
  width: clamp(320px, 46vw, 720px); aspect-ratio: 1;
  right: -10%; top: -14%;
  background: var(--grad-lens);
  opacity: 0.5; filter: blur(40px);
  animation: float 16s ease-in-out infinite;
}
.aperture-glow--2 {
  width: clamp(220px, 28vw, 420px); left: -8%; bottom: -16%;
  background: radial-gradient(circle at 50% 50%, var(--cyan), transparent 65%);
  opacity: 0.32; filter: blur(50px);
  animation: float 20s ease-in-out infinite reverse;
}
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(28px) } }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero__eyebrow { color: var(--cyan); }
.hero h1 { margin: 1.4rem 0 1.3rem; color: #fff; }
.hero__lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(223,232,250,0.82); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__rating { margin-top: 2.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating .txt { font-size: 0.92rem; color: rgba(223,232,250,0.78); }
.hero__rating .txt b { color: #fff; }

/* Hero visual, stacked film strip + aperture badge */
.hero__visual { position: relative; height: clamp(380px, 46vw, 560px); }
.filmstrip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-7deg);
  width: clamp(220px, 26vw, 300px);
  background: #0b1126; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 14px 12px; box-shadow: var(--shadow-lg);
}
.filmstrip__holes { display: flex; justify-content: space-between; padding: 0 4px; }
.filmstrip__holes i { width: 10px; height: 10px; border-radius: 3px; background: #050b1c; display: block; }
.filmstrip__frames { display: grid; gap: 10px; margin: 10px 0; }
.frame {
  aspect-ratio: 4/3; border-radius: 10px; position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.frame .frame__no { position: absolute; top: 6px; left: 8px; font-family: var(--font-mono); font-size: 0.6rem; color: rgba(255,255,255,0.85); letter-spacing: 0.1em; z-index: 2; }
.frame::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(5,11,28,0.45)); }

.hero__badge {
  position: absolute; right: 4%; bottom: 8%; z-index: 3;
  width: clamp(120px, 16vw, 168px); aspect-ratio: 1; border-radius: 50%;
  background: rgba(8,16,38,0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-lg);
  animation: float 9s ease-in-out infinite;
}
.hero__badge::before { content:""; position:absolute; inset:-1px; border-radius:50%; padding:1px; background: conic-gradient(from 0deg, transparent, var(--cyan), transparent 60%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge .badge__num { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; font-weight: 800; }
.hero__badge .badge__txt { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em; color: var(--cyan); text-transform: uppercase; margin-top: 2px; }

/* Aperture SVG mark sizing */
.aperture-mark { width: 100%; height: 100%; }

/* ----------  Marquee / trust bar  ---------- */
.trustbar { background: var(--navy-900); color: rgba(255,255,255,0.8); padding: 1.1rem 0; overflow: hidden; border-top: 1px solid var(--line-dark); }
.marquee { display: flex; gap: 3rem; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 0.8rem; white-space: nowrap; letter-spacing: -0.01em; }
.marquee span::after { content: "✦"; color: var(--blue-500); font-size: 0.8rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ----------  Stats row  ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.4rem 0.5rem; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.4rem); line-height: 1; background: linear-gradient(120deg, var(--blue-600), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { margin-top: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; letter-spacing: 0.02em; }

/* ----------  Cards / Services  ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem; position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(46,115,232,0.3); }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-content: center;
  background: linear-gradient(140deg, rgba(63,139,255,0.16), rgba(103,210,255,0.1));
  color: var(--blue-600); margin-bottom: 1.2rem; border: 1px solid rgba(46,115,232,0.16);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card__link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--blue-700); font-family: var(--font-display); font-size: 0.95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }
.card__no { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-mute); letter-spacing: 0.1em; }

/* Bento grid (Why SLK) */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1.2rem; }
.bento .b {
  border-radius: var(--radius-lg); padding: 1.8rem; position: relative; overflow: hidden;
  border: 1px solid var(--line-dark); background: var(--navy-800); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 200px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento .b:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento .b h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.4rem; }
.bento .b p { color: rgba(223,232,250,0.72); font-size: 0.95rem; }
.bento .b .b__icon { color: var(--cyan); margin-bottom: auto; }
.bento .b .b__icon svg { width: 30px; height: 30px; }
.b--wide { grid-column: span 2; }
.b--tall { grid-row: span 2; }
.b--feature { background: linear-gradient(155deg, var(--blue-600) 0%, #0c1c44 92%); }
.b--feature::after { content: ""; position: absolute; width: 320px; height: 320px; right: -90px; top: -110px; background: radial-gradient(circle, var(--cyan), transparent 68%); opacity: 0.4; filter: blur(10px); z-index: 0; }
.b--feature > * { position: relative; z-index: 1; }
.b--feature .b__icon { color: #fff; width: 48px; height: 48px; border-radius: 14px; display: grid; place-content: center; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); }
.b--feature p { color: rgba(255,255,255,0.88); }
.b--glow { background: var(--grad-deep); }
.b--glow::before { content:""; position:absolute; width: 240px; height: 240px; right:-60px; top:-60px; background: radial-gradient(circle, var(--blue-500), transparent 70%); opacity: 0.5; filter: blur(20px); }
.b__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; }
/* Photo feature card, real image with legibility overlay */
.b--photo { background-size: cover; background-position: center; }
.b--photo::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(5,11,28,0.5) 0%, rgba(5,11,28,0.12) 40%, rgba(5,11,28,0.9) 84%); }
.b--photo > * { position: relative; z-index: 1; }
.b--photo .b__icon { color: #fff; width: 48px; height: 48px; border-radius: 14px; display: grid; place-content: center; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); backdrop-filter: blur(4px); }
.b--photo h3 { text-shadow: 0 2px 16px rgba(0,0,0,0.5); }

/* Feature card: richer composition so the large tile reads as intentional, not empty */
.b__aperture { position: absolute; top: -7%; right: -6%; width: clamp(180px, 24vw, 310px); height: auto; color: var(--cyan); opacity: 0.14; stroke-width: 0.7; z-index: 0; pointer-events: none; }
.b--feature .b__eyebrow { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.7rem; }
.b__ticks { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 1.5rem; }
.b__ticks li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.92rem; line-height: 1.35; color: rgba(255,255,255,0.92); }
.b__ticks li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--cyan); }

/* ----------  Photo tiles (gallery placeholders, swappable)  ---------- */
.photo-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--grad-deep); aspect-ratio: 4/5; isolation: isolate;
  background-size: cover; background-position: center;
  border: 1px solid var(--line-dark);
}
.photo-tile--wide { aspect-ratio: 16/10; }
.photo-tile--tall { aspect-ratio: 3/4; }
.photo-tile::before { /* aperture watermark when no image */
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background:
    radial-gradient(circle at 50% 42%, rgba(103,210,255,0.22), transparent 55%);
}
.photo-tile__mark { position: absolute; inset: 0; display: grid; place-content: center; z-index: 1; opacity: 0.85; }
.photo-tile__mark svg { width: 56px; height: 56px; color: rgba(255,255,255,0.5); }
.photo-tile__meta {
  position: absolute; left: 0; bottom: 0; right: 0; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 0.5rem;
  padding: 2rem 14px 12px;
  background: linear-gradient(to top, rgba(5,11,28,0.8), transparent);
}
.photo-tile__meta .lbl { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.photo-tile__meta .no { font-family: var(--font-mono); font-size: 0.66rem; color: var(--cyan); letter-spacing: 0.12em; }
.photo-tile::after { content:""; position:absolute; inset:0; z-index:2; background: linear-gradient(180deg, rgba(5,11,28,0.05) 40%, rgba(5,11,28,0.62)); }
.photo-tile img { width:100%; height:100%; object-fit: cover; position: relative; z-index: 1; }
.photo-tile:has(img) .photo-tile__mark, .photo-tile:has(img)::before { display: none; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; grid-auto-flow: dense; }
.gallery-grid .g-span2 { grid-column: span 2; }
.gallery-grid .g-row2 { grid-row: span 2; }

/* Masonry, shows full photo-booth strips with no cropping (mixed orientations) */
.masonry { columns: 3; column-gap: 1.1rem; }
.masonry .m-item {
  break-inside: avoid; margin-bottom: 1.1rem; position: relative; display: block;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--navy-800);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.masonry .m-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.masonry .m-item img { width: 100%; height: auto; display: block; }
.masonry .m-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1rem 0.9rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(5,11,28,0.72));
}
.masonry .m-cap .lbl { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.masonry .m-cap .no { font-family: var(--font-mono); font-size: 0.66rem; color: var(--cyan); letter-spacing: 0.12em; white-space: nowrap; }
.masonry--teaser { columns: 4; }
@media (max-width: 1024px) { .masonry--teaser { columns: 3; } }
@media (max-width: 860px) { .masonry, .masonry--teaser { columns: 2; } }
@media (max-width: 520px) { .masonry, .masonry--teaser { columns: 1; } }

/* Teaser grid, larger 2x2 showcase of photos (home page) */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.teaser-grid .t-item {
  position: relative; display: block; aspect-ratio: 3/2; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--navy-800);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.teaser-grid .t-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.teaser-grid .t-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.teaser-grid .t-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 0.85rem 0.75rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 0.5rem;
  background: linear-gradient(180deg, transparent, rgba(5,11,28,0.8));
}
.teaser-grid .t-cap .lbl { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }
.teaser-grid .t-cap .no { font-family: var(--font-mono); font-size: 0.64rem; color: var(--cyan); letter-spacing: 0.12em; white-space: nowrap; }
@media (max-width: 600px) { .teaser-grid { grid-template-columns: 1fr; } }

/* ----------  Testimonials  ---------- */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column; gap: 1rem; height: 100%;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; }
.quote-card blockquote { font-size: 1.1rem; color: var(--ink); font-weight: 500; line-height: 1.5; }
.quote-card .who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-blue); color: #fff; display: grid; place-content: center; font-family: var(--font-display); font-weight: 800; }
.quote-card .who b { display: block; font-size: 0.96rem; }
.quote-card .who span { font-size: 0.84rem; color: var(--ink-mute); }
.quote-card .qmark { position: absolute; top: 1.2rem; right: 1.6rem; font-family: var(--font-display); font-size: 3.5rem; line-height: 1; color: rgba(46,115,232,0.12); }

/* ----------  Packages / pricing  ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.2rem 2rem; display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card--featured { background: var(--grad-deep); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price-card--featured::before { content:""; position:absolute; width: 260px; height: 260px; right:-80px; top:-80px; background: radial-gradient(circle, var(--blue-500), transparent 70%); opacity: 0.5; filter: blur(10px); }
.price-card__tag { position: absolute; top: 1.4rem; right: 1.4rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; background: var(--gold); color: #2a2310; padding: 0.35rem 0.7rem; border-radius: 999px; font-weight: 700; }
.price-card h3 { font-size: 1.5rem; position: relative; }
.price-card--featured h3 { color: #fff; }
.price-card .desc { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.3rem; }
.price-card--featured .desc { color: rgba(223,232,250,0.78); }
.price-card .price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; margin: 1.3rem 0 0.2rem; line-height: 1; position: relative; }
.price-card .price small { font-size: 1rem; font-weight: 600; color: var(--ink-mute); }
.price-card--featured .price small { color: rgba(223,232,250,0.7); }
.price-card .per { font-size: 0.85rem; color: var(--ink-mute); margin-bottom: 1.4rem; }
.price-card--featured .per { color: rgba(223,232,250,0.65); }
.price-card ul.feat { display: grid; gap: 0.7rem; margin: 0.5rem 0 1.8rem; }
.price-card ul.feat li { display: flex; gap: 0.6rem; font-size: 0.95rem; align-items: flex-start; }
.price-card ul.feat li svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 3px; }
.price-card--featured ul.feat li svg { color: var(--cyan); }
.price-card .btn { margin-top: auto; }

/* Two-package layout + price lists (real pricing) */
.price-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 920px; margin-inline: auto; }
.price-list { list-style: none; padding: 0; margin: 1.3rem 0 1.8rem; display: grid; }
.price-list li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.price-list li:last-child { border-bottom: none; }
.price-list li > div { display: flex; flex-direction: column; gap: 0.15rem; }
.price-list b { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.price-list .sub { font-size: 0.84rem; color: var(--ink-mute); }
.price-list .amt { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; color: var(--ink); white-space: nowrap; }
.price-list .amt small { font-size: 0.8rem; font-weight: 600; color: var(--ink-mute); }
.price-list .amt--text { font-size: 1rem; font-weight: 700; color: var(--blue-700); }
.price-card--featured .price-list li { border-bottom-color: rgba(255,255,255,0.14); }
.price-card--featured .price-list b,
.price-card--featured .price-list .amt { color: #fff; }
.price-card--featured .price-list .sub,
.price-card--featured .price-list .amt small { color: rgba(223,232,250,0.7); }

/* Add-ons + travel cards */
.addon-wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: 1.4rem; align-items: start; }
.addon-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.addon-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.addon-card .price-list { margin: 0.4rem 0 0; }
@media (max-width: 860px) { .price-grid--2, .addon-wrap { grid-template-columns: 1fr; } }

/* Combined packages + add-ons (all visible in one desktop view) */
.pricing-combo { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem; align-items: stretch; max-width: 1200px; margin-inline: auto; }
.price-card--extras .desc { margin-bottom: 0.2rem; }
.price-card--extras .price-list { margin: 1.1rem 0 0; }
.price-card--extras .price-list li { padding: 0.62rem 0; }   /* tighten 7 rows to match the package cards' height */
.price-card--extras .price-list b { font-size: 1rem; }
.price-card--extras .price-list .amt { font-size: 1.3rem; }

@media (max-width: 1024px) {
  /* packages 2-up, extras spans the full width below as a two-column menu */
  .pricing-combo { grid-template-columns: 1fr 1fr; }
  .price-card--extras { grid-column: 1 / -1; }
  .price-card--extras .price-list { grid-template-columns: 1fr 1fr; column-gap: clamp(1.6rem, 4vw, 3.2rem); }
}
@media (max-width: 600px) {
  .pricing-combo { grid-template-columns: 1fr; }
  .price-card--extras .price-list { grid-template-columns: 1fr; }
}

/* ----------  FAQ accordion  ---------- */
.faq { display: grid; gap: 0.9rem; max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.faq__item[open] { border-color: rgba(46,115,232,0.32); box-shadow: var(--shadow-sm); }
.faq__q { list-style: none; cursor: pointer; padding: 1.3rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .ic { width: 26px; height: 26px; flex: none; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content:""; position:absolute; top:50%; left:50%; width: 13px; height: 2.5px; background: var(--blue-600); border-radius: 2px; transform: translate(-50%,-50%); transition: transform 0.3s var(--ease); }
.faq__q .ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__q .ic::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }
.faq__a p { max-width: 70ch; }

/* ----------  Quote form  ---------- */
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field label .req { color: var(--blue-600); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--paper-2);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(63,139,255,0.14); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: #e0506a; box-shadow: 0 0 0 4px rgba(224,80,106,0.12); }
.field__err { color: #d23a57; font-size: 0.82rem; display: none; }
.field--invalid .field__err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: 0.82rem; color: var(--ink-mute); margin-top: 0.4rem; }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; animation: pop 0.5s var(--ease); }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%; background: var(--grad-blue); display: grid; place-content: center; color: #fff; box-shadow: var(--shadow-blue); }
.form-success .check svg { width: 32px; height: 32px; }
@keyframes pop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ----------  Contact page  ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.contact-info > p { margin-top: 0.4rem; max-width: 38ch; }
.info-list { display: grid; gap: 1.1rem; margin: 1.8rem 0; }
.info-list li { display: flex; gap: 0.9rem; align-items: center; }
.info-ic { width: 46px; height: 46px; border-radius: 14px; flex: none; display: grid; place-content: center; background: linear-gradient(140deg, rgba(63,139,255,0.16), rgba(103,210,255,0.1)); color: var(--blue-600); border: 1px solid rgba(46,115,232,0.16); }
.info-ic svg { width: 20px; height: 20px; }
.info-list b { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mute); font-family: var(--font-mono); }
.info-list a, .info-list span > span { font-weight: 600; color: var(--ink); }
.info-list li > span { display: flex; flex-direction: column; gap: 0.1rem; }
.info-list a:hover { color: var(--blue-700); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: 999px; }
.trust-badge svg { width: 16px; height: 16px; color: var(--blue-600); }
/* Collapse to one column at 1024px — same point the info text starts centering,
   so the info block stacks cleanly above the form instead of being a cramped,
   center-aligned column beside it. */
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ----------  Split / CTA band  ---------- */
.cta-band { position: relative; background: var(--grad-deep); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4.5rem); overflow: hidden; isolation: isolate; }
.cta-band::before { content:""; position:absolute; width: 420px; height: 420px; right:-100px; top:-140px; background: radial-gradient(circle, var(--blue-500), transparent 68%); opacity: 0.5; filter: blur(20px); z-index: -1; }
.cta-band::after { content:""; position:absolute; width: 320px; height: 320px; left:-90px; bottom:-130px; background: radial-gradient(circle, var(--cyan), transparent 68%); opacity: 0.28; filter: blur(30px); z-index: -1; }
.cta-band .h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: rgba(223,232,250,0.8); max-width: 50ch; margin-top: 1rem; }
.cta-band .actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
/* Scattered photo-print cluster to fill the CTA band's right side */
.cta-band__media { position: absolute; right: 0; top: 0; bottom: 0; width: clamp(280px, 42%, 460px); pointer-events: none; z-index: 1; }
.cta-band__media .cta-photo { position: absolute; border-radius: 14px; border: 4px solid #fff; box-shadow: 0 34px 60px -22px rgba(0,0,0,0.65); object-fit: cover; }
.cta-band__media .cta-photo--1 { width: 58%; aspect-ratio: 3/2; right: 12%; top: 16%; transform: rotate(5deg); z-index: 1; }
.cta-band__media .cta-photo--2 { width: 40%; aspect-ratio: 2/3; right: 46%; bottom: 12%; transform: rotate(-8deg); z-index: 2; }
@media (max-width: 980px) { .cta-band__media { display: none; } }

/* ----------  Service-area chips  ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; padding: 0.6rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,0.05); color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; }
.chip svg { width: 14px; height: 14px; color: var(--cyan); }

/* ----------  Process steps  ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.step__no { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-600); letter-spacing: 0.1em; font-weight: 700; }
.step h3 { margin: 0.8rem 0 0.5rem; font-size: 1.25rem; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }
.step__line { position: absolute; top: 50%; right: -0.85rem; width: 1.4rem; height: 2px; background: var(--line-strong); }
.steps .step:last-child .step__line { display: none; }

/* ----------  Service rows (services page)  ---------- */
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.8rem); align-items: center; }
.service-row--rev .service-row__media { order: 2; }
.service-row__media .photo-tile { box-shadow: var(--shadow-md); }
.service-row__body .lead { margin-top: 0.4rem; }
.ticks { display: grid; gap: 0.7rem; margin: 1.3rem 0 1.7rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); font-size: 1rem; }
.ticks li::before {
  content: ""; width: 22px; height: 22px; border-radius: 50%; flex: none; margin-top: 1px;
  background: rgba(46,115,232,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e73e8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}
@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .service-row--rev .service-row__media { order: 0; }
}

/* ----------  Page hero (interior pages)  ---------- */
.page-hero { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; isolation: isolate; padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); }
.page-hero::after { content:""; position:absolute; right:-6%; top:-30%; width: 460px; height: 460px; border-radius: 50%; background: var(--grad-lens); opacity: 0.3; filter: blur(50px); z-index: -1; }
.page-hero .breadcrumb { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em; color: var(--cyan); text-transform: uppercase; display: flex; gap: 0.5rem; align-items: center; }
.page-hero .breadcrumb a { opacity: 0.85; }
.page-hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); margin: 1.1rem 0 1rem; color: #fff; }
.page-hero p { max-width: 56ch; color: rgba(223,232,250,0.8); font-size: clamp(1.02rem,1.5vw,1.2rem); }

/* ----------  Footer  ---------- */
.site-footer { background: var(--navy-900); color: rgba(226,234,250,0.7); padding: clamp(3rem,6vw,4.5rem) 0 2rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; }
.site-footer .logo-mono img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer p.about { margin-top: 1.1rem; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-mono); font-weight: 700; margin-bottom: 1.1rem; }
.footer-col a, .footer-col li { display: block; padding: 0.32rem 0; font-size: 0.96rem; color: rgba(226,234,250,0.7); transition: color 0.25s; }
.footer-col a:hover { color: var(--cyan); }
.footer-contact a { display: flex; gap: 0.6rem; align-items: center; }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue-500); flex: none; }
.social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-content: center; color: #fff; transition: background 0.25s, transform 0.25s, border-color 0.25s; }
.social a:hover { background: var(--grad-blue); transform: translateY(-3px); border-color: transparent; }
.social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-bottom .placeholder-note { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(226,234,250,0.4); }

/* ----------  Reveal animations  ----------
   Hidden state is gated behind .js so content is ALWAYS visible if JS is off/fails. */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.in, .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* Hero load stagger */
.hero [data-load] { opacity: 0; transform: translateY(24px); animation: heroIn 0.9s var(--ease) forwards; }
.hero [data-load="1"] { animation-delay: 0.1s; }
.hero [data-load="2"] { animation-delay: 0.22s; }
.hero [data-load="3"] { animation-delay: 0.34s; }
.hero [data-load="4"] { animation-delay: 0.46s; }
.hero [data-load="5"] { animation-delay: 0.58s; }
.hero__visual { opacity: 0; animation: heroIn 1.1s var(--ease) 0.4s forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ----------  Responsive  ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  /* copy first, photo strip second on tablet/mobile — top-anchor so it never overlaps the rating */
  .hero__visual { height: 520px; margin-top: 1.25rem; }
  .hero__visual .filmstrip { width: 210px; top: 0; transform: translate(-50%, 0) rotate(-5deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b--tall { grid-row: span 1; }
  .bento .b--photo { min-height: 320px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn--primary, .nav__phone { display: none; }
  .nav__burger { display: block; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } /* 2-up on tablet */
  .price-grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g-span2 { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .step__line { display: none; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4, .bento { grid-template-columns: 1fr; }
  .price-card__tag { position: static; display: inline-block; margin: 0 0 0.9rem; } /* avoid overlapping the title */
  .bento { grid-auto-rows: auto; } /* size each card to its own content (single column) */
  .bento .b:not(.b--photo) { min-height: auto; }
  .bento .b:not(.b--photo) .b__icon { margin-bottom: 1.2rem; }
  .b__ticks { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-span2 { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__badge { width: 110px; }
  .footer-grid { grid-template-columns: 1fr; }
  .b--wide { grid-column: span 1; }
}

/* ============================================================
   Center text on tablet & mobile (<=1024px) + nav phone fix
   ============================================================ */
@media (max-width: 1024px) {
  /* Hide nav phone here so the number never wraps in the cramped range */
  .nav__phone { display: none; }
  /* Hide the CTA photo cluster so centered text has full width */
  .cta-band__media { display: none; }

  /* Center the major text blocks */
  .hero__copy, .section-head, .card, .step, .quote-card, .price-card,
  .service-row__body, .cta-band, .bento .b, .contact-info,
  .page-hero, .site-footer { text-align: center; }

  /* Neutralize inline flex on section heads so they stack and center cleanly */
  .section-head { display: block !important; margin-inline: auto; }
  .section-head > div { margin-inline: auto; }

  /* Eyebrows: center and drop the leading rule line */
  .kicker { justify-content: center; }
  .kicker::before { display: none; }

  /* Center flex rows */
  .hero__actions, .hero__rating, .cta-band .actions, .quote-card .who,
  .trust-badges, .social, .footer-contact a, .page-hero .breadcrumb { justify-content: center; }

  /* Center block icons */
  .card__icon, .bento .b__icon { margin-inline: auto; }

  /* Lists: center the group, keep rows left-aligned so checkmarks line up */
  .ticks, .price-card .feat, .info-list { width: fit-content; margin-inline: auto; text-align: left; }

  /* Auto-center constrained paragraphs / headings */
  .lead, .hero__lead, .page-hero p, .cta-band p, .cta-band .h2,
  .section-head p, .card p, .step p, .quote-card blockquote,
  .service-row__body .lead, .contact-info > p { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
