/* ============================================================
   LIVE WEB PHOTOS — GLOBAL STYLESHEET
   File: css/style.css
   Stack: Vanilla HTML/CSS/JS | Netlify | Dark gray background theme
   ============================================================ */

/* --- GOOGLE FONTS — loaded via <link> in each page <head> --- */

/* --- CSS VARIABLES --- */
:root {
  --color-bg:        #1c1c1c;
  --color-bg-alt:    #242424;
  --color-bg-card:   #2c2c2c;
  --color-text:      #f0f0f0;
  --color-mid:       #a8a8a8;     /* secondary text — 6.5:1 on bg, AA solid (was #888 = 4.7:1, borderline) */
  --color-text-soft: #b5b5b5;     /* long-form body — 7.4:1 on bg, AAA. Use for article-body p/ul */
  --color-nav:       #c8c8c8;
  --color-border:    #2a2a2a;     /* WARNING: dividers/borders only — never use for text (1.2:1 on bg) */
  --color-accent:    #0099CC;
  --color-accent-lt: #1ab8e6;
  --color-accent-dk: #006699;
  --color-spark:     #E91E8C;
  --color-white:     #ffffff;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Type scale — semantic tokens. Use these for new work
     so the type system stays coherent as the site grows. */
  --text-eyebrow:  0.75rem;   /* uppercase labels, eyebrows, breadcrumbs (12px) */
  --text-caption:  0.82rem;   /* footer copyright, fine print (13.1px) */
  --text-small:    0.875rem;  /* card body, secondary copy (14px) */
  --text-body:     1rem;      /* default body (16px) */
  --text-lead:     1.075rem;  /* lead paragraphs, page-hero p (17.2px) */
  --text-quote:    1.15rem;   /* pull quotes, testimonials (18.4px) */
  --text-h4:       1.25rem;
  --text-h3:       clamp(1.25rem, 2.2vw, 1.65rem);
  --text-h2:       clamp(1.85rem, 3.6vw, 3rem);
  --text-h1:       clamp(2.6rem, 5.2vw, 4.6rem);

  --max-width: 1200px;

  /* Easing scale — natural deceleration curves.
     Avoid bounce/elastic; they read as dated. */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);    /* default — smooth, refined */
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);   /* slightly snappier */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);    /* confident settle (used for lightbox) */
  --transition:     0.25s var(--ease-out-quart);

  /* Spacing scale — semantic tokens for future work.
     Use these instead of arbitrary px values to keep rhythm coherent. */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 144px;
  --grid-gap:  24px;                          /* alias kept for existing usages */
  /* Section padding is fluid: ~60px on phones, ~120px on 4K, scaling with viewport */
  --section-pad: clamp(60px, 8vw, 120px) 0;

  /* Z-index scale — semantic tiers, no arbitrary 9999s */
  --z-base:        1;
  --z-dropdown:    100;
  --z-sticky:      900;
  --z-nav:        1000;
  --z-nav-dropdown: 1100;
  --z-modal:      9000;   /* lightbox / modal overlays */
  --z-toast:      9900;   /* future: notifications */

  --radius-card:   14px;
  --radius-btn:    10px;

  --btn-grad:      radial-gradient(ellipse 120% 100% at 50% 0%, var(--color-accent-lt) 0%, var(--color-accent) 45%, var(--color-accent-dk) 100%);
  --btn-grad-hover:radial-gradient(ellipse 120% 100% at 50% 0%, #2ecaf2 0%, #00a5d8 45%, #007aaa 100%);

  --shadow-glow:   0 0 22px rgba(255,255,255,0.05), 0 4px 14px rgba(0,0,0,0.28);
  --shadow-glow-hover: 0 0 30px rgba(255,255,255,0.08), 0 6px 18px rgba(0,0,0,0.36);
  --shadow-btn:    0 0 18px rgba(0,153,204,0.28), 0 4px 12px rgba(0,0,0,0.4);
  --shadow-btn-hover: 0 0 28px rgba(0,153,204,0.45), 0 6px 16px rgba(0,0,0,0.5);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-lt); }   /* brighten on hover for dark-mode visibility (was -dk = darker, hurt contrast) */
ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.01em;
  text-wrap: balance;        /* avoid orphan words in headings (Chrome 114+, Safari 17.4+) */
}
h1 { font-size: var(--text-h1); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: var(--text-h2); line-height: 1.15; }
h3 { font-size: var(--text-h3); line-height: 1.25; }
h4 { font-size: var(--text-h4); line-height: 1.3; }
p {
  color: var(--color-text);
  margin-bottom: 1rem;
  text-wrap: pretty;          /* avoid widow words in paragraphs */
}

/* --- LAYOUT --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad); }
.section-alt { background: var(--color-bg-alt); padding: var(--section-pad); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--btn-grad);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn:hover {
  background: var(--btn-grad-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn-hover);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--btn-grad);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

/* --- NAV --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(28,28,28,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: 70px;
  display: flex;
  align-items: center;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo img { height: 54px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-nav);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-spark); }
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: '▾';
  font-size: var(--text-eyebrow);
  margin-left: 6px;
  opacity: 0.65;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(28,28,28,0.98);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: var(--z-nav-dropdown);
}
.nav-links li.has-dropdown:hover .nav-dropdown,
.nav-links li.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--color-nav);
}
.nav-dropdown a:hover { color: var(--color-spark); background: rgba(233,30,140,0.06); }
.nav-links .btn { padding: 10px 24px; font-size: 0.72rem; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 11px; margin: -7px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-white); margin: 5px 0;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-video-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,28,0.6) 0%, rgba(28,28,28,0.85) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: block;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--color-accent); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--color-mid);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero two-column layout — copy + before/after slider */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 600px; }
.hero-visual { width: 100%; }
.hero-visual .hero-slider { max-width: 100%; margin: 0; }
.hero-slider-caption {
  font-size: var(--text-eyebrow);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid);
  margin: 14px 0 0;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 100%; }
}

/* Trust strip */
.trust-strip {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mid);
}
.trust-item strong { color: var(--color-white); }
.trust-item .icon { color: var(--color-spark); font-size: 1rem; }

/* --- BEFORE/AFTER SLIDER --- */
/*
.slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--color-bg);
  container-type: inline-size;
}
  */

.slider-wrap {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;          /* ← ADD THIS — kills browser scroll intercept */
  background: var(--color-bg);
  container-type: inline-size;
}


.slider-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.slider-before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.slider-before img {
  width: 100cqw;
  height: 100%;
  object-fit: contain;
  max-width: none;
}
.slider-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--color-white);
  z-index: 10;
  transform: translateX(-50%);
}
.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slider-handle svg { width: 18px; color: #0a0a0a; }
.slider-label {
  position: absolute;
  bottom: 16px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
}
.label-before { left: 16px; }
.label-after  { right: 16px; }

/* Hero slider — sized to image aspect so the full frame shows uncropped */
.hero-slider {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  aspect-ratio: 1200 / 896;
  height: auto;
}

/* Gallery sliders */
.slider-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-border);
}
.gallery-slider-item { background: var(--color-bg); }
.gallery-slider-item .slider-wrap { aspect-ratio: 1200 / 896; height: auto; }
.gallery-slider-item .slider-category {
  padding: 14px 20px;
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
}

/* --- SECTION HEADINGS --- */
.section-label {
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 20px; }
.section-intro { color: var(--color-mid); max-width: 600px; line-height: 1.8; }
.section-label.spark { color: var(--color-spark); }

.spark-glow { box-shadow: 0 0 20px #E91E8C22, 0 0 1px #E91E8C44; }
.spark-text { color: var(--color-spark); }
.spark-border { border-color: #E91E8C55; }

/* PHOTO FRAME — for static images (services, portfolio) */
.photo-frame {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
.photo-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border: 1px solid #2a2a2a;
}
.photo-frame::before {
  content: '';
  position: absolute;
  /* Sits behind and offset bottom-right only */
  top: 14px;
  left: 14px;
  right: 0;
  bottom: 0;
  border: 1px solid #E91E8C99;
  z-index: 1;
  pointer-events: none;
}

/* SLIDER FRAME — for before/after sliders */
/* Uses padding + pseudo on parent, NOT on slider itself */
.slider-frame {
  position: relative;
  display: block;
  width: 100%;
  padding-right: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
.slider-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 0;
  bottom: 0;
  border: 1px solid #E91E8C99;
  z-index: 0;
  pointer-events: none;
}
.slider-frame .slider-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Case study slider stack — vertical column with breathing room */
.slider-gallery.cs-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  padding-right: 12px;
  padding-bottom: 12px;
}
.slider-gallery.cs-stack .gallery-slider-item { background: transparent; }
.slider-gallery.cs-stack .photo-frame .slider-wrap { background: var(--color-bg); }

/* Blog card hero image */
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* --- BACKGROUND TEXTURE SECTIONS --- */
.section-bg-bokeh {
  background: #0a0a0a url('../images/bokeh.jpg') center/cover no-repeat;
  position: relative;
}
.section-bg-bokeh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
  z-index: 0;
}
.section-bg-bokeh > * { position: relative; z-index: 1; }

.section-bg-studio {
  background: #0a0a0a url('../images/bg-studio-light.jpg') center/cover no-repeat;
  position: relative;
}
.section-bg-studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.80);
  z-index: 0;
}
.section-bg-studio > * { position: relative; z-index: 1; }

.section-bg-arch {
  background: #0a0a0a url('../images/bg-arch-texture.jpg') center/cover no-repeat;
  position: relative;
}
.section-bg-arch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.85);
  z-index: 0;
}
.section-bg-arch > * { position: relative; z-index: 1; }

/* --- SERVICE GRID --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-top: 60px;
}
.service-card {
  background: var(--color-bg-card);
  padding: 48px 40px;
  border: 1px solid #1e1e1e;
  border-top: 2px solid var(--color-spark);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
  transition: background var(--transition), box-shadow 0.3s ease, border-color 0.3s ease, transform var(--transition);
}
.service-card:hover {
  background: #383838;
  border-color: #E91E8C44;
  border-top-color: var(--color-spark);
  box-shadow: 0 0 28px #E91E8C18, 0 0 1px #E91E8C33, var(--shadow-glow-hover);
  transform: translateY(-2px);
}
.service-icon {
  background: #E91E8C11;
  border: 1px solid #E91E8C22;
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 16px;
  border-radius: 8px;
}
.service-icon { font-size: 1.7rem; line-height: 1; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--color-mid); font-size: 0.9rem; margin-bottom: 20px; }
.service-card a { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- HOW IT WORKS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: 60px;
}
.step {
  background: var(--color-bg-card);
  padding: 48px 40px;
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-spark);
  text-shadow: 0 0 20px #E91E8C44;
  line-height: 1;
  margin-bottom: 20px;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--color-mid); font-size: 0.9rem; }

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-top: 60px;
}
.pricing-card {
  background: var(--color-bg-card);
  padding: 48px 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
}
.pricing-card.featured {
  background: var(--btn-grad);
  box-shadow: 0 0 28px rgba(255,255,255,0.08), 0 8px 20px rgba(0,0,0,0.4);
}
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li { color: var(--color-white); }
.pricing-tier {
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.7); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-unit { font-size: 0.8rem; color: var(--color-mid); margin-bottom: 24px; }
.pricing-features { margin: 24px 0; }
.pricing-features li {
  font-size: 0.88rem;
  color: var(--color-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before { content: "→"; color: var(--color-accent); font-size: 0.8rem; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.2); }
.pricing-card.featured .pricing-features li::before { color: var(--color-white); }

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
  margin-top: 60px;
}
.testimonial-card {
  background: var(--color-bg-card);
  padding: 48px 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-quote::before { content: "\201C"; color: var(--color-accent); }
.testimonial-quote::after  { content: "\201D"; color: var(--color-accent); }
.testimonial-author { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--color-mid); text-transform: uppercase; }
.testimonial-role { font-size: 0.75rem; color: var(--color-mid); margin-top: 2px; }

/* --- FAQ --- */
.faq-list { margin-top: 60px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon { font-size: 1.4rem; color: var(--color-accent); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  color: var(--color-mid);
  padding-bottom: 24px;
  max-width: 680px;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid #E91E8C22;
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 56px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; color: var(--color-mid); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--color-mid);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p { font-size: var(--text-caption); color: var(--color-mid); margin: 0; }
.footer-badge img { height: 28px; opacity: 0.7; transition: opacity var(--transition); }
.footer-badge img:hover { opacity: 1; }
.site-footer .btn { font-weight: 400; letter-spacing: 0.1em; }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 140px 0 80px;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--color-mid); font-size: 1.05rem; max-width: 560px; }

/* --- BLOG --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--grid-gap);
  margin-top: 60px;
}
.blog-card {
  background: var(--color-bg-card);
  padding: 48px 40px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-glow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-glow-hover);
  transform: translateY(-2px);
}
.blog-meta { font-size: 0.72rem; color: var(--color-accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.blog-card p { color: var(--color-mid); font-size: 0.9rem; margin-bottom: 20px; }
.blog-card a.read-more { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- ARTICLE PAGE --- */
.article-body { max-width: 760px; margin: 0 auto; padding: 80px 40px; }
.article-body h2 { margin: 40px 0 16px; }
.article-body h3 { margin: 30px 0 12px; }
.article-body p { color: var(--color-text-soft); margin-bottom: 1.2rem; }   /* AAA contrast for sustained reading */
.article-body ul { color: var(--color-text-soft); padding-left: 20px; margin-bottom: 1.2rem; }
.article-body ul li { margin-bottom: 8px; list-style: disc; }
.article-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: 24px;
  margin: 30px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-white);
}

/* --- SCROLL REVEAL --- */
/* Add class="animate-in" to any element you want to fade-up on scroll.
   js/main.js IntersectionObserver adds .visible when the element enters viewport.
   For a stagger across siblings (e.g. card grid), set inline
   style="--reveal-delay: 80ms" on the second card, 160ms on the third, etc.
   Reduced-motion: handled by the global prefers-reduced-motion guard below. */
.animate-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out-quart),
              transform 0.6s var(--ease-out-quart);
  transition-delay: var(--reveal-delay, 0ms);
}
.animate-in.visible {
  opacity: 1;
  transform: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .slider-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  /* Drop blur on mobile — backdrop-filter on .site-nav was trapping the
     fixed-positioned mobile menu inside the 70px nav bar. */
  .site-nav {
    background: #1c1c1c;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  /* Force any inline-styled multi-column grid to stack on mobile.
     Catches all ad-hoc section layouts using style="display:grid;grid-template-columns:..."
     across about, services, case studies, contact, portraits, professional-portfolio, etc. */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* === Pricing table → card-style rows on mobile === */
  /* Hide the column-header strip — labels are added inline below per cell */
  .price-row-head { display: none !important; }
  .price-row {
    padding: 24px 20px !important;
    gap: 0 !important;
  }
  /* Service description (first cell) gets a divider underneath */
  .price-row > *:first-child {
    padding-bottom: 14px;
    margin-bottom: 6px;
    border-bottom: 1px solid #2a2a2a;
  }
  /* Price/turnaround cells: label on left, value on right */
  .price-row > *:nth-child(n+2) {
    display: flex !important;
    align-items: baseline;
    justify-content: space-between;
    padding: 8px 0;
  }
  .price-row > *:nth-child(2)::before { content: 'Standard'; }
  .price-row > *:nth-child(3)::before { content: 'Premium'; }
  .price-row > *:nth-child(4)::before { content: 'Turnaround'; }
  .price-row > *:nth-child(n+2)::before {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mid);
  }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1c1c1c;
    padding: 32px 24px;
    gap: 4px;
    z-index: var(--z-nav-dropdown);
    border-bottom: 1px solid #2a2a2a;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px solid #2a2a2a;
  }
  .nav-links.open .btn {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
    color: #ffffff;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip .container { gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  /* Hero — stacked video then text, full width each, no cropping */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: unset;
    padding-top: 70px;
  }
  /* Video goes first, full width */
  .hero-video-wrap {
    order: 1;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .hero-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Dark overlay — hide on mobile, text is below not on top */
  .hero > div[style*="rgba"] {
    display: none !important;
  }
  /* Text container goes below video */
  .hero .container {
    order: 2;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 24px;
    background: #0a0a0a;
    text-align: left;
  }
  /* Kill any grid or flex-row layout inside hero on mobile */
  .hero .container > * {
    width: 100%;
    max-width: 100%;
  }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
}

/* === ACCESSIBILITY: SKIP LINK === */
/* Visible only when focused via keyboard. Lets screen-reader and keyboard
   users jump past the nav (8+ links + dropdown) directly to main content. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: var(--z-modal);
  padding: 12px 18px;
  background: var(--color-spark);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-btn);
  transition: top 0.2s var(--ease-out-quart);
}
.skip-link:focus {
  top: 8px;
  color: var(--color-white);
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* === ACCESSIBILITY: KEYBOARD FOCUS RINGS === */
/* Magenta brand-coherent focus indicator for keyboard navigation only.
   Forms manage their own focus visually via border-color + box-shadow. */
:focus-visible {
  outline: 2px solid var(--color-spark);
  outline-offset: 3px;
  border-radius: 2px;
}
.lwp-form input:focus-visible,
.lwp-form select:focus-visible,
.lwp-form textarea:focus-visible {
  outline: none;
}

/* === ACCESSIBILITY: REDUCED MOTION === */
/* Honors prefers-reduced-motion across animations, transitions,
   and smooth scroll. Hero video pause handled in js/main.js. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}
