/* ── The ReTouchables — Main Stylesheet ──────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
  --black:    #0D0D0D;
  --soft-black: #171717;
  --gold:     #C8A25B;
  --gold-light: #D8B866;
  --cream:    #F4EBDD;
  --ivory:    #FFF9EF;
  --burgundy: #6D2E46;
  --teal:     #4F6D6A;
  --gray:     #B9B7B3;
  --dark-gray: #333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', Arial, sans-serif;
  --font-accent:  'Great Vibes', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--gold); line-height: 1.2; }
p { margin-bottom: 1rem; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-gray { color: var(--gray); }
.accent { font-family: var(--font-accent); color: var(--gold); font-size: 1.4em; }
.section { padding: 80px 0; }
.section-dark { background: var(--soft-black); }
.section-cream { background: var(--cream); color: var(--black); }
.section-cream h2, .section-cream h3 { color: var(--burgundy); }
.section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.section-sub { color: var(--gray); font-size: 18px; max-width: 640px; margin: 0 auto 48px; }
.divider { border: none; border-top: 1px solid var(--dark-gray); margin: 40px 0; }
.gold-divider { border: none; border-top: 2px solid var(--gold); width: 60px; margin: 20px auto 40px; }

/* ── Editorial System ────────────────────────────────────── */
:root {
  --paper:     #efe5d3;
  --paper-warm:#e9dcc4;
  --ink:       #2a201a;
  --ink-soft:  #5a4d42;
  --rule:      #d8cdb8;
}
.section-paper {
  background: var(--paper) url('/assets/brandkit/web/background_warm_paper_texture.png') center/cover;
  color: var(--ink);
}
.section-paper h1, .section-paper h2, .section-paper h3, .section-paper h4 { color: var(--ink); }
.section-paper p { color: var(--ink-soft); }
.section-paper .accent { color: var(--gold); }
.section-paper .gold-divider { border-top-color: var(--gold); }
.section-paper hr.rule { border: none; border-top: 1px solid var(--rule); margin: 32px 0; }
.section-paper .btn-secondary { color: var(--ink); border-color: var(--ink); }
.section-paper .btn-secondary:hover { background: var(--ink); color: var(--paper); }

.display-h {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: inherit;
}
.display-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 32px;
  color: inherit;
  opacity: 0.85;
}
.eyebrow {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: block;
}
.kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Editorial split: image | text (or text | image) */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 560px;
}
.editorial-split .es-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
}
.editorial-split .es-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
}
.editorial-split.reverse .es-image { order: 2; }

/* Full-bleed hero photo block */
.photo-block {
  width: 100%;
  height: clamp(360px, 60vh, 680px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.photo-block .pb-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.photo-block.dim::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

/* Diversity / portrait row */
.portrait-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.portrait-row figure { margin: 0; position: relative; overflow: hidden; border-radius: 4px; }
.portrait-row img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) sepia(0.08);
  transition: filter 0.4s;
}
.portrait-row figure:hover img { filter: none; }

/* Before/after subject grid */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #222;
  background: var(--soft-black);
}
.ba-grid img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  display: block;
}
.ba-grid figcaption {
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.02em;
  border-top: 1px solid #1e1e1e;
}
.section-paper .ba-grid figure { background: transparent; border-color: var(--rule); }
.section-paper .ba-grid figcaption { color: var(--ink); border-top-color: var(--rule); }

/* Marquee strip */
.marquee {
  background: var(--soft-black);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  overflow: hidden;
  padding: 12px 0;
  margin-top: 24px;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.04em;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  margin-left: 40px;
  font-size: 0.85em;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Quote/testimonial editorial style */
.editorial-quote {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.25;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  color: inherit;
}
.editorial-quote::before { content: '“'; color: var(--gold); }
.editorial-quote::after  { content: '”'; color: var(--gold); }
.editorial-quote-attrib {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* CTA tail */
.cta-tail {
  text-align: center;
  padding: 96px 24px;
}
.cta-tail .display-h { margin-bottom: 12px; }
.cta-tail .display-sub { margin: 0 auto 32px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.3;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); color: var(--black); }
.btn-secondary { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--black); }
.btn-sm { font-size: 15px; padding: 10px 22px; }
.btn-lg { font-size: 22px; padding: 20px 48px; }
.btn-danger { background: #8B3A3A; color: var(--cream); }
.btn-danger:hover { background: #a84444; color: var(--cream); }
.btn-success { background: #2e6d3e; color: var(--cream); }
.btn-success:hover { background: #3a8c4f; color: var(--cream); }
.btn-full { display: block; width: 100%; }

/* ── Flash Messages ──────────────────────────────────────── */
.flash {
  padding: 16px 24px;
  border-radius: 4px;
  margin: 20px 0;
  font-size: 17px;
  font-weight: 600;
}
.flash-error { background: #4a1a1a; color: #f4aaaa; border-left: 4px solid #c84444; }
.flash-success { background: #1a3a1f; color: #aaf4b0; border-left: 4px solid #44c86a; }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid #222;
  padding: 0;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--cream);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.btn-nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 4px;
}
.btn-nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta-link { color: var(--gray) !important; font-size: 15px !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 26px; cursor: pointer; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  aspect-ratio: 16 / 5;
  min-height: 540px;
  max-height: 760px;
  background: url('/assets/brandkit/detective/jpg/gradient_website_banner_1920x600.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 32px 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.hero .container {
  display: flex;
  justify-content: flex-end;
}
.hero-content {
  position: relative;
  background: rgba(10, 8, 4, 0.92);
  border: 1px solid rgba(200, 162, 91, 0.45);
  border-radius: 8px;
  padding: 64px 40px 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.75);
}
.hero-eyebrow {
  font-family: var(--font-accent);
  color: var(--gold);
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 4px;
}
.hero-title {
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-body {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Trust Badges ────────────────────────────────────────── */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 24px;
  background: var(--soft-black);
  border-bottom: 1px solid #222;
}
.trust-badge { flex: 0 1 auto; min-width: 0; max-width: 100%; }
.trust-badge img { height: auto; width: auto; max-height: 80px; max-width: 100%; opacity: 0.9; }

/* ── How It Works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid #222;
  border-radius: 8px;
  background: var(--soft-black);
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon { width: 64px; height: 64px; margin: 0 auto 20px; object-fit: contain; }
.step-card h3 { color: var(--gold); margin-bottom: 12px; font-size: 22px; }
.step-card p { color: var(--gray); font-size: 16px; }

/* ── Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  padding: 36px 28px;
  border: 1px solid #222;
  border-radius: 8px;
  background: var(--soft-black);
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon { width: 56px; height: 56px; margin-bottom: 20px; object-fit: contain; }
.service-card h3 { color: var(--gold); font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 16px; }

/* Responsive 2-col grid layouts */
.services-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Packages ────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package-card {
  border: 2px solid #333;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  background: var(--soft-black);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.package-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.package-card.popular { border-color: var(--gold); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.package-label { color: var(--gray); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.package-count { font-family: var(--font-heading); font-size: 52px; color: var(--cream); line-height: 1; margin-bottom: 4px; }
.package-unit { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.package-price { font-size: 38px; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.package-per { color: var(--gray); font-size: 13px; margin-bottom: 28px; }
.package-features { margin-bottom: 28px; }
.package-features li { color: var(--gray); font-size: 15px; padding: 6px 0; border-bottom: 1px solid #222; }
.package-features li:last-child { border-bottom: none; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--soft-black);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 36px 28px;
}
.testimonial-stars { color: var(--gold); font-size: 22px; margin-bottom: 16px; }
.testimonial-text { color: var(--cream); font-size: 17px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { color: var(--gold); font-weight: 700; font-size: 15px; }
.testimonial-location { color: var(--gray); font-size: 13px; }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy) 0%, #3a1626 100%);
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--cream); font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-band p { color: rgba(244,235,221,0.8); font-size: 20px; max-width: 600px; margin: 0 auto 40px; }

/* ── Forms ───────────────────────────────────────────────── */
.form-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: url('/assets/brandkit/web/background_dark_subtle_texture.png') center/cover;
}
.form-box {
  background: var(--soft-black);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 480px;
}
.form-box h1 { font-size: 32px; margin-bottom: 8px; }
.form-box .form-sub { color: var(--gray); font-size: 16px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; color: var(--gray); font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-hint { color: var(--gray); font-size: 13px; margin-top: 6px; }
.form-link { color: var(--gray); font-size: 15px; text-align: center; margin-top: 20px; }
.form-link a { color: var(--gold); }

/* ── Dashboard ───────────────────────────────────────────── */
.dashboard-page { padding: 60px 24px; min-height: calc(100vh - 72px); }
.page-header { margin-bottom: 40px; }
.page-header h1 { font-size: 36px; margin-bottom: 8px; }
.page-header p { color: var(--gray); }

.orders-table-wrap { overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  padding: 12px 16px;
  border-bottom: 1px solid #222;
}
.data-table td {
  padding: 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 16px;
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(200,162,91,0.04); }
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray);
}
.empty-state h3 { color: var(--gold); font-size: 26px; margin-bottom: 12px; }

/* ── Upload ──────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed #444;
  border-radius: 10px;
  padding: 60px 40px;
  text-align: center;
  background: #111;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.upload-zone.dragover, .upload-zone:hover { border-color: var(--gold); background: rgba(200,162,91,0.05); }
.upload-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.upload-zone h3 { color: var(--gold); margin-bottom: 8px; }
.upload-zone p { color: var(--gray); font-size: 16px; }
.file-list { margin-top: 24px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #1a1a1a;
  border-radius: 6px;
  margin-bottom: 8px;
}
.file-item-name { flex: 1; font-size: 15px; }
.file-item-size { color: var(--gray); font-size: 13px; }
.file-item-remove { cursor: pointer; color: #8B3A3A; font-size: 20px; line-height: 1; }
.progress-bar-wrap { background: #222; border-radius: 4px; height: 8px; margin-top: 4px; }
.progress-bar { height: 8px; background: var(--gold); border-radius: 4px; transition: width 0.3s; }

/* ── Review (proofs) ─────────────────────────────────────── */
.proof-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 32px 0; }
.proof-img-wrap { position: relative; border-radius: 8px; overflow: hidden; border: 1px solid #333; }
.proof-img-wrap img { width: 100%; display: block; }
.proof-label { text-align: center; color: var(--gray); font-size: 13px; padding: 8px; background: #111; }
.review-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.rejection-form { display: none; background: var(--soft-black); border: 1px solid #333; border-radius: 8px; padding: 28px; margin-top: 20px; }
.rejection-form.show { display: block; }
.attempt-counter { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.attempt-counter span { color: var(--gold); font-weight: 700; }

/* ── Download ────────────────────────────────────────────── */
.download-page { text-align: center; padding: 100px 24px; min-height: calc(100vh - 72px); }
.download-icon { font-size: 80px; margin-bottom: 24px; }
.download-page h1 { font-size: 42px; margin-bottom: 16px; }
.download-page p { color: var(--gray); font-size: 20px; max-width: 560px; margin: 0 auto 40px; }

/* ── Order Selection ─────────────────────────────────────── */
.order-page { padding: 80px 24px; }

/* ── Inner Pages ─────────────────────────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, var(--soft-black) 0%, #1a1209 100%);
  border-bottom: 2px solid var(--gold);
  padding: 60px 24px;
  text-align: center;
}
.inner-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.inner-hero p { color: var(--gray); font-size: 18px; max-width: 600px; margin: 0 auto; }
.inner-content { padding: 80px 24px; }

/* ── Order Detail (user) ─────────────────────────────────── */
.order-detail-card {
  background: var(--soft-black);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 24px;
}
.order-detail-card h2 { font-size: 24px; margin-bottom: 24px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-item .label { color: var(--gray); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.detail-item .value { color: var(--cream); font-size: 17px; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #050505;
  border-top: 2px solid var(--gold);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-tagline { color: var(--gray); font-style: italic; font-size: 16px; margin-top: 16px; }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-size: 16px; margin-bottom: 16px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); font-size: 15px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--gray); font-size: 15px; margin-bottom: 8px; }
.footer-phone a { color: var(--gold); font-size: 20px; font-weight: 700; }
.footer-bottom {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #444;
  font-size: 13px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .trust-row { gap: 28px; padding: 32px 16px; }
  .trust-badge img { max-height: 64px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #222;
  }
  .nav-links.open { display: flex; }
  .steps-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .services-2col,
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro-grid { gap: 32px; }
  .editorial-split { grid-template-columns: 1fr; min-height: 0; }
  .editorial-split .es-image { aspect-ratio: 16/10; min-height: 0; order: 0 !important; }
  .editorial-split .es-content { padding: 48px 24px; }
  .editorial-split.reverse .es-image { order: 0; }
  .portrait-row { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
  .ba-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .photo-block .pb-caption { bottom: 20px; left: 20px; right: 20px; }
  .cta-tail { padding: 72px 16px; }
  .packages-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-box { padding: 32px 24px; }
  .hero-buttons { flex-direction: column; }
  .hero { aspect-ratio: unset; min-height: 540px; max-height: none; background-position: 30% center; align-items: flex-start; padding-top: 32px; padding-bottom: 32px; }
  .hero .container { justify-content: center; }
  .hero-content { max-width: 100%; padding: 36px 24px; }
  .review-actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero { min-height: 480px; background-position: 30% center; }
  .btn-lg { font-size: 18px; padding: 16px 32px; }
  .upload-zone { padding: 40px 20px; }
  .trust-row { gap: 16px; padding: 24px 12px; }
  .trust-badge img { max-height: 52px; }
}

.photo-block .pb-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  margin: 0;
  padding: 28px 32px;
  background: rgba(10, 8, 4, 0.82);
  border-top: 1px solid rgba(200, 162, 91, 0.35);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.25;
  text-align: center;
  text-shadow: none;
}
.kicker--lg { font-size: 16px; letter-spacing: 0.16em; margin-bottom: 8px; }
.testimonials-tight { margin-bottom: 16px; }

/* ── Phase 4: Rush / Turnaround styles ──────────────────── */
.turnaround-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #2a2a2a;
  color: var(--gray);
  border: 1px solid #333;
}
.turnaround-pill.rush {
  background: rgba(200,162,91,0.12);
  color: var(--gold);
  border-color: rgba(200,162,91,0.4);
}
.rush-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.rush-request-form label {
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.rush-request-form input[type="date"],
.rush-request-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  color: var(--cream);
  padding: 10px 14px;
  font-size: 15px;
}
.rush-request-form input[type="date"]:focus,
.rush-request-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}
