/* ─────────────────────────────────────────────────────────────
   style-v2.css  |  The Mobile Headshot  |  Design System v2
   Fonts: Fraunces (display) + DM Sans (body) via Google Fonts
   ───────────────────────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --white: #ffffff;
  --black: #0a0b0d;
  --blue: #1759ff;
  --blue-dark: #1044cc;
  --gray: #6b7280;
  --gray-light: #f1f3f5;
  --gray-mid: #e5e7eb;
  --off-white: #f8f9fa;
  --ff-head: 'Fraunces', serif;
  --ff-body: 'DM Sans', sans-serif;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-pill: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--ff-body); background: var(--white); color: var(--black); font-size: 17px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-mid);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; height: 68px; gap: 1.5rem;
}
.nav-logo {
  font-family: var(--ff-head); font-weight: 700; font-size: .9rem;
  letter-spacing: -.01em; white-space: nowrap; line-height: 1.15;
  display: flex; flex-direction: column;
}
.nav-logo-name span { color: var(--blue); }
.nav-logo-region {
  font-size: .6rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gray); font-family: var(--ff-body);
}
.nav-links { display: flex; gap: 1.25rem; list-style: none; margin-left: auto; align-items: center; }
.nav-links > li > a { font-size: .875rem; font-weight: 500; color: var(--gray); transition: color .18s; }
.nav-links > li > a:hover { color: var(--black); }

/* Dropdowns */
.nav-dropdown { position: relative; }
.nav-sub {
  display: none; position: absolute; top: calc(100% + .5rem); left: 0;
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: var(--r-md); padding: .75rem 0; min-width: 200px;
  box-shadow: var(--shadow-md); z-index: 200; list-style: none;
}
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: .6rem;
}
.nav-sub--wide { min-width: 240px; }
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub li a { display: block; padding: .4rem 1.25rem; font-size: .875rem; color: var(--gray); transition: color .18s, background .18s; }
.nav-sub li a:hover { color: var(--black); background: var(--off-white); }
.nav-sub-label { display: block; padding: .5rem 1.25rem .2rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); opacity: .5; }

/* Nav buttons */
.nav-links .nav-phone { font-size: .78rem; color: var(--blue); letter-spacing: .03em; font-weight: 500; }
.nav-links .nav-phone:hover { color: var(--blue-dark); text-decoration: underline; }
.nav-client {
  font-size: .8125rem; font-weight: 500; color: var(--gray);
  padding: .4rem .875rem; border: 1.5px solid var(--gray-mid);
  border-radius: var(--r-pill); transition: border-color .18s, color .18s;
}
.nav-client:hover { border-color: var(--black); color: var(--black); }
.nav-book {
  background: var(--blue); color: var(--white) !important;
  font-size: .875rem; font-weight: 600; padding: .575rem 1.25rem;
  border-radius: var(--r-pill); transition: background .18s; white-space: nowrap;
}
.nav-book:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all .2s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mob-menu { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--black); overflow-y: auto; z-index: 99; padding: 1.5rem 0 2rem; }
.mob-menu.open { display: flex; }
.mob-section { padding: .5rem 1.5rem .25rem; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.mob-sub { display: flex; flex-direction: column; margin-bottom: 1rem; }
.mob-sub a { padding: .625rem 1.5rem; font-size: .9375rem; color: rgba(255,255,255,.85); transition: color .18s; border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-sub a:hover { color: var(--white); }
.mob-phone-link { display: block; text-align: center; padding: .65rem 1.5rem; font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .03em; }
.mob-book { display: block; margin: 1rem 1.5rem 0; background: var(--blue); color: var(--white); text-align: center; padding: .875rem; border-radius: var(--r-pill); font-weight: 600; font-size: .9375rem; transition: background .18s; }
.mob-book:hover { background: var(--blue-dark); color: var(--white); }

/* Phone modal overlay */
.nav-phone-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 300; align-items: center; justify-content: center; }
.nav-phone-overlay.open { display: flex; }
.nav-phone-modal { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem 2rem; max-width: 380px; width: 90%; text-align: center; position: relative; }
.nav-phone-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--gray); }
.nav-phone-modal-label { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin-bottom: .75rem; }
.nav-phone-modal-number { font-family: var(--ff-head); font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.nav-phone-modal-sub { font-size: .8125rem; color: var(--gray); margin-bottom: 1.5rem; }
.nav-phone-modal-actions { display: flex; flex-direction: column; gap: .75rem; }
.nav-phone-modal-call { background: var(--blue); color: var(--white); padding: .875rem; border-radius: var(--r-pill); font-weight: 600; transition: background .18s; }
.nav-phone-modal-call:hover { background: var(--blue-dark); color: var(--white); }
.nav-phone-modal-book { color: var(--gray); font-size: .875rem; padding: .625rem; transition: color .18s; }
.nav-phone-modal-book:hover { color: var(--black); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue); color: var(--white); font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 600; padding: .875rem 1.875rem;
  border-radius: var(--r-pill); transition: background .18s, transform .12s;
  display: inline-flex; align-items: center; gap: .4rem; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--black); font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 600; padding: .875rem 1.875rem;
  border-radius: var(--r-pill); border: 1.5px solid var(--gray-mid);
  transition: border-color .18s, transform .12s; display: inline-flex; align-items: center;
}
.btn-outline:hover { border-color: var(--black); transform: translateY(-1px); }
.btn-white {
  background: var(--white); color: var(--black); font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 600; padding: .875rem 1.875rem;
  border-radius: var(--r-pill); transition: background .18s, transform .12s;
  display: inline-flex; align-items: center;
}
.btn-white:hover { background: var(--gray-light); transform: translateY(-1px); color: var(--black); }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,.75); font-family: var(--ff-body);
  font-size: .9375rem; font-weight: 600; padding: .875rem 1.875rem;
  border-radius: var(--r-pill); border: 1.5px solid rgba(255,255,255,.25);
  transition: border-color .18s, color .18s; display: inline-flex; align-items: center;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-link { font-size: .9rem; font-weight: 600; color: var(--blue); }
.btn-link:hover { text-decoration: underline; }

/* ── HERO (homepage) ── */
.hero {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 460px; gap: 4rem; align-items: center;
  min-height: calc(100vh - 68px);
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; }
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.hero h1 { font-family: var(--ff-head); font-size: clamp(3rem, 5.5vw, 4.5rem); font-weight: 700; line-height: 1.08; letter-spacing: -.015em; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--blue); }
.hero-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.65; max-width: 500px; margin-bottom: 2.25rem; }
.hero-btns { display: flex; gap: .875rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: .5rem; margin-top: 1.75rem; font-size: .8125rem; color: var(--gray); }
.hero-trust-stars { color: #f59e0b; }

/* Service page hero — same layout, no full-viewport height */
.hero--page { min-height: 0; padding: 3.5rem 2rem 3rem; }

/* Hero photo stack */
.hero-photos { position: relative; height: 600px; }
.hero-photo-main { position: absolute; top: 0; left: 0; width: 310px; height: 100%; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-b { position: absolute; top: 0; right: 0; width: 220px; height: 290px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo-b img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-c { position: absolute; bottom: 0; right: 0; width: 220px; height: 285px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo-c img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge-float { position: absolute; bottom: 2.5rem; left: -1.5rem; background: var(--white); border-radius: var(--r-md); padding: 1rem 1.25rem; box-shadow: var(--shadow-lg); max-width: 230px; z-index: 2; }
.hero-badge-float .b-stars { color: #f59e0b; font-size: .75rem; margin-bottom: .3rem; letter-spacing: 1px; }
.hero-badge-float .b-text { font-size: .8rem; line-height: 1.45; color: var(--black); margin-bottom: .4rem; font-weight: 500; }
.hero-badge-float .b-name { font-size: .7rem; color: var(--gray); }

/* ── PAGE HERO (service pages) ── */
.page-hero--split {
  display: grid; grid-template-columns: 1fr 480px; min-height: 580px;
}
.page-hero-inner {
  padding: 4.5rem 4rem 4rem; background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
}
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.5rem; }
.page-hero-eyebrow-rule { width: 24px; height: 1.5px; background: currentColor; border-radius: 2px; }
.page-hero-inner h1 { font-family: var(--ff-head); font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -.015em; color: var(--white); margin-bottom: 1.25rem; }
.page-hero-inner h1 em { font-style: italic; color: rgba(255,255,255,.65); }
.page-hero-desc { font-size: 1.0625rem; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 520px; margin-bottom: 2rem; }
.page-hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; align-items: center; margin-bottom: 1rem; }
.hero-contact { font-size: .85rem; color: rgba(255,255,255,.4); }
.hero-contact a { color: rgba(255,255,255,.65); font-weight: 500; transition: color .18s; }
.hero-contact a:hover { color: var(--white); }
.page-hero--split-img { position: relative; overflow: hidden; }
.phr-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.phr-slide.active { opacity: 1; }

/* ── BREADCRUMB ── */
.breadcrumb { border-bottom: 1px solid var(--gray-mid); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: .75rem 2rem; display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--gray); }
.breadcrumb-inner a { color: var(--gray); transition: color .18s; }
.breadcrumb-inner a:hover { color: var(--black); }
.breadcrumb-sep { opacity: .5; }

/* ── TRUST STRIP ── */
.trust { background: var(--off-white); border-bottom: 1px solid var(--gray-mid); }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: .875rem 2rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; font-weight: 500; color: var(--gray); }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ── STATS ── */
.stats { border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); background: var(--off-white); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 2.5rem 1.5rem; text-align: center; border-right: 1px solid var(--gray-mid); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-head); font-size: 2.75rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; margin-bottom: .4rem; }
.stat-num.blue { color: var(--blue); }
.stat-lbl { font-size: .775rem; color: var(--gray); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }

/* ── LOGOS ── */
.logos { padding: 2.25rem 0; overflow: hidden; border-bottom: 1px solid var(--gray-mid); }
.logos-label { text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); margin-bottom: 1.5rem; }
.logo-track-wrap { overflow: hidden; }
.logo-track { display: flex; gap: 3rem; align-items: center; animation: scroll-logos 38s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.client-logo { height: 58px; width: auto; opacity: .65; filter: grayscale(1); transition: opacity .2s, filter .2s; flex-shrink: 0; }
.client-logo:hover { opacity: 1; filter: grayscale(0); }
@keyframes scroll-logos { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.sec { padding: 6rem 2rem; }
.sec-inner { max-width: 1200px; margin: 0 auto; }
.sec-inner--narrow { max-width: 760px; margin: 0 auto; }
.sec-gray { background: var(--off-white); }
.sec-black { background: var(--black); }

/* ── EYEBROW ── */
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1rem; }
.eyebrow-rule { width: 24px; height: 1.5px; background: currentColor; border-radius: 2px; flex-shrink: 0; }
.eyebrow-light { color: rgba(255,255,255,.4); }
.eyebrow.centered { display: flex; justify-content: center; }

/* ── TYPOGRAPHY ── */
.sec-h { font-family: var(--ff-head); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; color: var(--black); margin-bottom: 1rem; }
.sec-h.light { color: var(--white); }
.sec-h em { font-style: italic; }
.sec-sub { font-size: 1.0625rem; color: var(--gray); line-height: 1.65; max-width: 600px; margin-bottom: 3.5rem; }
.sec-sub.light { color: rgba(255,255,255,.55); }
.sec-sub.wide { max-width: 800px; }
.sec-sub.mb-0 { margin-bottom: 0; }
.sec-sub.mb-sm { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.sec-sub.center { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.link-inherit { color: var(--blue); font-weight: 500; }
.link-inherit:hover { text-decoration: underline; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-card { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--r-md); padding: 1.25rem 1.5rem; transition: border-color .2s, box-shadow .2s; }
.svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.svc-tag { font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: .4rem; }
.svc-card h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .4rem; }
.svc-card p { font-size: .875rem; color: var(--gray); line-height: 1.55; margin-bottom: .875rem; }
.svc-link { font-size: .8125rem; font-weight: 600; color: var(--blue); }
.svc-link:hover { text-decoration: underline; }

/* ── PHOTO STRIP (homepage) ── */
.strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; padding: 0 2rem; max-width: 1200px; margin: 0 auto 5rem; }
.strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-sm); }
.strip img:nth-child(2), .strip img:nth-child(4) { margin-top: 1.5rem; }

/* ── PHOTO STRIP (service pages) ── */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; overflow: hidden; }
.photo-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ── PORTFOLIO ── */
.port-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.port-view-all, .port-link { font-size: .875rem; font-weight: 600; color: var(--blue); }
.port-view-all:hover, .port-link:hover { text-decoration: underline; }
.port-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .875rem; }
.port-item { border-radius: var(--r-sm); overflow: hidden; background: var(--gray-light); aspect-ratio: 4/5; }
.port-item figure { height: 100%; }
.port-item img, .port-item figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; display: block; }
.port-item:hover img, .port-item:hover figure img { transform: scale(1.04); }
.port-item figcaption { display: none; }
.port-item--portrait { aspect-ratio: 3/4; }
.port-grid--gallery { grid-template-columns: repeat(5, 1fr); gap: .5rem; }

/* ── PORTFOLIO PAGE ── */
.port-page-intro { padding: 5rem 2rem 2.5rem; text-align: center; }
.port-page-intro h1 { font-family: var(--ff-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin: .75rem 0 1rem; }
.port-page-intro h1 em { font-style: italic; font-weight: 700; color: var(--blue); }
.port-page-intro .port-intro-sub { max-width: 580px; margin: 0 auto 1.75rem; color: var(--gray); line-height: 1.65; }
.port-page-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.port-page-nav a { font-size: .875rem; font-weight: 600; color: var(--black); border-bottom: 2px solid transparent; padding-bottom: 2px; transition: border-color .2s; }
.port-page-nav a.active, .port-page-nav a:hover { border-color: var(--blue); color: var(--blue); }
.port-page-nav .port-nav-sep { color: var(--gray-mid); font-size: .75rem; }
.port-masonry { columns: 4; column-gap: .375rem; padding: 0 .75rem 1rem; }
.port-masonry-item { break-inside: avoid; margin-bottom: .375rem; border-radius: var(--r-sm); overflow: hidden; display: block; }
.port-masonry-item img { width: 100%; display: block; transition: transform .5s; }
.port-masonry-item:hover img { transform: scale(1.03); }
.port-book-strip { display: flex; align-items: center; justify-content: space-between; padding: 3rem; border-top: 1px solid var(--gray-mid); max-width: 1200px; margin: 1rem auto 0; }
.port-book-strip-text h2 { font-family: var(--ff-head); font-size: 1.75rem; font-weight: 800; margin-bottom: .35rem; }
.port-book-strip-text h2 em { font-style: italic; color: var(--blue); }
.port-book-strip-text p { color: var(--gray); font-size: .95rem; }

/* ── PROCESS GRID (homepage) ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.process-grid .process-step { padding: 2rem; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-mid); }
.process-num { font-family: var(--ff-head); font-size: 3.5rem; font-weight: 800; color: var(--blue); opacity: .12; line-height: 1; margin-bottom: 1rem; }
.process-grid .process-step h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.process-grid .process-step p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ── PROCESS STEPS (service pages numbered list) ── */
.process-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.process-steps .process-step { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.5rem; background: var(--off-white); border-radius: var(--r-md); }
.process-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white); font-family: var(--ff-head); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-step-body h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.process-step-body p { font-size: .9375rem; color: var(--gray); line-height: 1.65; }

/* ── HOW STEPS (dark sections) ── */
.how-steps { display: flex; flex-direction: column; gap: 2.5rem; }
.how-step { padding-left: 4rem; position: relative; }
.how-num { position: absolute; left: 0; top: -.25rem; font-family: var(--ff-head); font-size: 2.5rem; font-weight: 800; color: var(--blue); opacity: .2; line-height: 1; }
.how-step h3 { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; color: var(--white); }
.how-step p { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.delivery-tl { display: flex; align-items: flex-start; overflow-x: auto; margin: 1rem 0; }
.dtl-node { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 80px; }
.dtl-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-mid); margin-bottom: .5rem; }
.dtl-dot.dtl-on { background: var(--blue); }
.dtl-dot.dtl-amber { background: #f59e0b; }
.dtl-line { flex: 1; height: 2px; background: rgba(255,255,255,.15); align-self: center; margin-bottom: 1.4rem; min-width: 20px; }
.dtl-label { font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.85); }
.dtl-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: .2rem; }
.dtl-note { font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: .75rem; }

/* ── INCLUDES GRID ── */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.include-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.75rem; }
.include-item h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.include-item p { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── PRICING ── */
.price-tabs { display: inline-flex; background: var(--off-white); border-radius: var(--r-pill); padding: .25rem; gap: .25rem; margin-bottom: 3rem; border: 1px solid var(--gray-mid); }
.ptab { padding: .625rem 1.5rem; border-radius: var(--r-pill); font-size: .875rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: all .18s; border: none; background: none; font-family: var(--ff-body); }
.ptab.active { background: var(--white); color: var(--black); box-shadow: 0 1px 4px rgba(0,0,0,.12); }
.p-panel { display: none; }
.p-panel.active { display: block; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.price-card { background: var(--white); border: 1.5px solid var(--gray-mid); border-radius: var(--r-md); padding: 2rem; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--blue); background: var(--black); }
.price-card.featured .price-card-name { color: var(--white); }
.price-card.featured .price-card-price { color: var(--white); }
.price-card.featured .price-card-meta { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.1); }
.price-card.featured .price-feats li { color: rgba(255,255,255,.7); }
.price-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .875rem; border-radius: 0 0 var(--r-sm) var(--r-sm); }
.price-card-name { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.price-card-price { font-family: var(--ff-head); font-size: 2.375rem; font-weight: 700; letter-spacing: -.015em; line-height: 1; margin-bottom: .25rem; }
.price-card-price .suffix { font-size: 1rem; font-weight: 500; color: var(--gray); letter-spacing: 0; }
.price-card-meta { font-size: .8125rem; color: var(--gray); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-mid); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.price-feats li { font-size: .9rem; color: var(--gray); display: flex; gap: .6rem; align-items: flex-start; }
.price-feats li::before { content: '\2713'; color: var(--blue); font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: 2px; }
.price-cta .btn-primary, .price-cta .btn-outline { width: 100%; justify-content: center; font-size: .9rem; padding: .75rem 1.5rem; }

/* Corporate table */
.corp-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.corp-table { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--gray-mid); background: var(--white); }
.corp-table-head { display: grid; grid-template-columns: 1fr 1fr; background: var(--black); padding: .875rem 1.25rem; }
.corp-table-head span { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.corp-row { display: grid; grid-template-columns: 1fr 1fr; padding: .875rem 1.25rem; border-top: 1px solid var(--gray-mid); }
.corp-row:nth-child(even) { background: var(--off-white); }
.corp-row .size { font-size: .9rem; color: var(--gray); }
.corp-row .price { font-family: var(--ff-head); font-size: .95rem; font-weight: 700; }
.corp-info h3 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.corp-info p { font-size: .9375rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.25rem; }
.corp-bullets { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.corp-bullets li { font-size: .9rem; color: var(--gray); display: flex; gap: .6rem; align-items: flex-start; }
.corp-bullets li::before { content: '\2713'; color: var(--blue); font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: 2px; }

.pricing-callout { background: var(--off-white); border-radius: var(--r-md); padding: 1.25rem 1.5rem; border-left: 3px solid var(--blue); margin-top: 2rem; font-size: .9375rem; color: var(--gray); line-height: 1.65; }
.pricing-callout p strong { color: var(--black); }

/* Scheduling portal */
.pricing-split { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: center; }
.checkin-img-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.checkin-img-card img { width: 100%; display: block; }
.checkin-img-caption { background: var(--off-white); padding: .75rem 1.25rem; font-size: .8125rem; color: var(--gray); text-align: center; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--off-white); border-radius: var(--r-sm); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; font-size: .9375rem; background: none; border: none; width: 100%; text-align: left; font-family: var(--ff-body); color: var(--black); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-mid); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gray); flex-shrink: 0; transition: all .2s; line-height: 1; }
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: .9375rem; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── TESTIMONIALS (homepage rotator) ── */
.testi-rotator { max-width: 700px; margin: 0 auto; text-align: center; }
.testi-feat-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 1.5rem; }
.testi-feat-quote { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 600; letter-spacing: -.008em; line-height: 1.5; color: var(--black); margin-bottom: 1.25rem; transition: opacity .4s ease; }
.testi-feat-author { font-size: .78rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; transition: opacity .4s ease; }
.testi-rotator.fading .testi-feat-quote, .testi-rotator.fading .testi-feat-author { opacity: 0; }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-mid); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.testi-dot.active { background: var(--blue); transform: scale(1.25); }
.reviews-link { text-align: center; margin-top: 2.5rem; }
.reviews-link a { font-size: .875rem; font-weight: 600; color: var(--blue); }
.reviews-link a:hover { text-decoration: underline; }

/* ── TESTIMONIALS (service pages) ── */
.testi-featured { background: var(--off-white); border-radius: var(--r-lg); padding: 3rem; text-align: center; margin-bottom: 2rem; }
.testi-featured-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 1.25rem; }
.testi-featured-quote { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600; letter-spacing: -.008em; line-height: 1.5; color: var(--black); margin-bottom: 1rem; }
.testi-featured-author { font-size: .78rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.testi-supporting { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.testi { background: var(--off-white); border-radius: var(--r-md); padding: 1.75rem; }
.testi-stars { color: #f59e0b; font-size: .8rem; letter-spacing: 2px; margin-bottom: .75rem; }
.testi-quote { font-size: .9375rem; line-height: 1.65; color: var(--black); margin-bottom: 1rem; }
.testi-author { font-size: .775rem; color: var(--gray); font-weight: 600; }

/* ── ABOUT (homepage) ── */
.about-split { display: grid; grid-template-columns: 400px 1fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.about-stats-float { position: absolute; bottom: 2rem; right: -2.5rem; background: var(--white); border-radius: var(--r-md); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-lg); display: flex; gap: 1.75rem; }
.astat { text-align: center; }
.astat-num { font-family: var(--ff-head); font-size: 1.875rem; font-weight: 700; letter-spacing: -.015em; line-height: 1; color: var(--blue); }
.astat-lbl { font-size: .68rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }
.about-body h1, .about-body h2 { font-family: var(--ff-head); font-size: clamp(1.75rem, 3vw, 2.625rem); font-weight: 700; letter-spacing: -.01em; line-height: 1.12; margin-bottom: 1.5rem; }
.about-body h1 em { font-style: italic; color: var(--blue); }
.about-body p { color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.about-body p strong { color: var(--black); }
.about-body p:last-of-type { margin-bottom: 1.75rem; }

/* ── PHOTOGRAPHER SECTION (service pages) ── */
.photographer-grid { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.about-photo { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }
.about-bio-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 1.25rem; margin-top: 1rem; }
.about-bio-name { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.about-bio-title { font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: .875rem; }
.about-bio-stats { display: flex; gap: 1.5rem; }
.about-stat-num { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.about-stat-label { font-size: .7rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.photographer-grid .about-body p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1rem; }

/* ── INDUSTRIES ── */
.ind-grid { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.5rem; }
.ind-item { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--r-pill); padding: .5rem 1.25rem; font-size: .875rem; font-weight: 500; color: var(--gray); transition: background .18s, color .18s, border-color .18s; }
.ind-item:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── SERVICE AREAS (accordion) ── */
.areas-toggle { border: 1px solid var(--gray-mid); border-radius: var(--r-md); overflow: hidden; }
.areas-toggle summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; font-size: .9375rem; list-style: none; display: flex; justify-content: space-between; align-items: center; background: var(--off-white); }
.areas-toggle summary::-webkit-details-marker { display: none; }
.areas-toggle[open] summary { border-bottom: 1px solid var(--gray-mid); }
.areas-arrow { font-size: .875rem; color: var(--gray); transition: transform .2s; }
.areas-toggle[open] .areas-arrow { transform: rotate(180deg); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 1.5rem; }
.area-col h3 { font-family: var(--ff-head); font-size: .9375rem; font-weight: 700; margin-bottom: .75rem; }
.area-col ul { list-style: none; display: flex; flex-direction: column; gap: .375rem; }
.area-col ul li a { font-size: .875rem; color: var(--gray); transition: color .18s; }
.area-col ul li a:hover { color: var(--blue); }

/* ── SERVICE AREAS (homepage cards) ── */
.areas-grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.area-card { background: var(--white); border-radius: var(--r-md); padding: 1.75rem; border: 1px solid var(--gray-mid); }
.area-card h3 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.area-card p { font-size: .875rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.area-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.area-pill { background: var(--off-white); border-radius: var(--r-pill); padding: .3rem .875rem; font-size: .775rem; font-weight: 500; color: var(--gray); transition: background .18s, color .18s; border: 1px solid var(--gray-mid); }
.area-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ── CONTACT / INQUIRY FORM ── */
.contact-box { background: var(--off-white); border-radius: var(--r-lg); padding: 2.5rem; }
.contact-box h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-field label { font-size: .8125rem; font-weight: 600; color: var(--black); }
.form-field input, .form-field select, .form-field textarea { padding: .75rem 1rem; border: 1.5px solid var(--gray-mid); border-radius: var(--r-sm); font-family: var(--ff-body); font-size: .9375rem; background: var(--white); color: var(--black); transition: border-color .18s; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); }
.form-field textarea { resize: vertical; }
.form-field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; color-scheme: light; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
.form-submit { background: var(--blue); color: var(--white); font-family: var(--ff-body); font-size: .9375rem; font-weight: 600; padding: .875rem 2rem; border-radius: var(--r-pill); border: none; cursor: pointer; transition: background .18s; width: 100%; margin-top: .5rem; }
.form-submit:hover { background: var(--blue-dark); }

/* ── CONTACT PAGE ── */
.contact-split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
.contact-aside-h { font-family: var(--ff-head); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.contact-aside-h em { font-style: italic; color: var(--blue); }
.contact-aside p { color: var(--gray); line-height: 1.65; margin-bottom: 1.5rem; font-size: .9375rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .875rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-mid); }
.contact-detail:first-of-type { border-top: 1px solid var(--gray-mid); }
.contact-detail-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--gray-mid); display: flex; align-items: center; justify-content: center; font-size: .875rem; flex-shrink: 0; }
.contact-detail-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.contact-detail-val { font-size: .9375rem; font-weight: 500; margin-top: .15rem; }
.contact-detail-val a { color: var(--blue); }
.contact-turnaround { margin-top: 1.5rem; }
.contact-turnaround-title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: .75rem; }
.contact-turnaround-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .625rem; }
.contact-turnaround-item { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--r-sm); padding: .75rem 1rem; }
.ctt-time { font-family: var(--ff-head); font-size: .9375rem; font-weight: 700; color: var(--blue); }
.ctt-label { font-size: .725rem; color: var(--gray); margin-top: .15rem; }
.contact-corp-callout { margin-top: 1.75rem; background: var(--black); border-radius: var(--r-md); padding: 1.5rem; }
.contact-corp-callout h3 { font-family: var(--ff-head); font-size: .9375rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.contact-corp-callout p { font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.5); margin-bottom: 1rem; }

/* ── GUIDES HUB ── */
.guides-filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2.5rem; }
.guide-filter-btn { padding: .45rem 1.1rem; border-radius: var(--r-pill); border: 1.5px solid var(--gray-mid); background: none; font-family: var(--ff-body); font-size: .8125rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: background .18s, color .18s, border-color .18s; }
.guide-filter-btn:hover, .guide-filter-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--r-md); padding: 1.75rem; text-decoration: none; color: inherit; transition: box-shadow .25s, transform .25s; }
.guide-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-2px); }
.guide-tag { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); background: rgba(23,89,255,.07); border-radius: var(--r-pill); padding: .275rem .75rem; margin-bottom: 1rem; align-self: flex-start; }
.guide-card h2 { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: .75rem; color: var(--black); }
.guide-card p { font-size: .875rem; color: var(--gray); line-height: 1.65; flex: 1; }
.guide-read { font-size: .8125rem; font-weight: 600; color: var(--blue); margin-top: 1.25rem; }
.guide-card[hidden] { display: none; }

/* ── FAQ PAGE ── */
.faq-page-layout { display: grid; grid-template-columns: 200px 1fr; gap: 4rem; align-items: start; }
.faq-nav-sticky { position: sticky; top: 5rem; }
.faq-nav-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gray); margin-bottom: .75rem; }
.faq-nav-list { list-style: none; display: flex; flex-direction: column; gap: .125rem; }
.faq-nav-list a { display: block; padding: .45rem .875rem; font-size: .875rem; font-weight: 500; color: var(--gray); border-radius: var(--r-sm); transition: background .18s, color .18s; text-decoration: none; }
.faq-nav-list a:hover { background: var(--off-white); color: var(--blue); }
.faq-category { margin-bottom: 3rem; }
.faq-category-h { font-family: var(--ff-head); font-size: 1.125rem; font-weight: 800; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 2px solid var(--blue); display: flex; align-items: center; gap: .625rem; }
.faq-category-h span { display: inline-flex; align-items: center; justify-content: center; width: 1.5rem; height: 1.5rem; background: var(--blue); color: var(--white); border-radius: 50%; font-size: .75rem; }

/* ── CASE STUDIES PAGE ── */
.cs-featured { border: 1px solid var(--gray-mid); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
.cs-featured-eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); margin-bottom: .75rem; }
.cs-featured-body { padding: 2.5rem; }
.cs-featured h3 { font-family: var(--ff-head); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.15; }
.cs-featured p { color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; }
.cs-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.cs-stat { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--r-md); padding: 1.25rem; text-align: center; }
.cs-stat-num { font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.cs-stat-lbl { font-size: .725rem; color: var(--gray); margin-top: .35rem; text-transform: uppercase; letter-spacing: .08em; }
.cs-quote { font-size: 1.05rem; font-style: italic; color: var(--gray); line-height: 1.7; padding: 1.5rem; border-left: 3px solid var(--blue); background: var(--off-white); border-radius: 0 var(--r-sm) var(--r-sm) 0; margin: 1.5rem 0; }
.cs-quote cite { display: block; font-style: normal; font-size: .8125rem; font-weight: 600; color: var(--black); margin-top: .75rem; }

/* Calendar widget (corporate inquiry) */
.inq-cal-box { background: var(--black); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-sm); padding: 1rem; margin-top: .35rem; }
.inq-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.inq-cal-nav { background: none; border: none; color: rgba(255,255,255,.6); font-size: 1.1rem; cursor: pointer; padding: .2rem .5rem; line-height: 1; }
.inq-cal-nav:hover { color: var(--white); }
.inq-cal-month-label { font-size: .82rem; font-weight: 600; color: var(--white); letter-spacing: .06em; }
.inq-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: .4rem; }
.inq-cal-weekday { font-size: .65rem; color: rgba(255,255,255,.45); text-align: center; padding: .2rem 0; }
.inq-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.inq-cal-loading { text-align: center; font-size: .75rem; color: rgba(255,255,255,.45); padding: .5rem 0; display: none; }
.inq-sel-label { font-size: .7rem; color: var(--blue); display: none; margin-left: .5rem; }

/* Form feedback */
.form-success { display: none; margin-top: .75rem; color: #2e7d52; font-size: .88rem; font-weight: 500; }
.form-error { display: none; margin-top: .75rem; color: #c0392b; font-size: .88rem; }

/* ── CTA SECTION ── */
.cta, .cta-sec { background: var(--black); padding: 7rem 2rem; text-align: center; }
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta h2, .cta-sec h2 { font-family: var(--ff-head); font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 700; letter-spacing: -.015em; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
.cta h2 em, .cta-sec h2 em { font-style: italic; color: var(--blue); }
.cta h2 .accent, .cta-sec h2 .accent { color: var(--blue); }
.cta p, .cta-sec p { font-size: 1.0625rem; color: rgba(255,255,255,.5); margin-bottom: 2.5rem; line-height: 1.65; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-footnote { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: 1.5rem; }

/* ── QUOTE PAGE ── */
.quote-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.quote-info-h { font-family: var(--ff-head); font-size: clamp(1.4rem, 2.5vw, 1.75rem); font-weight: 800; line-height: 1.15; margin-bottom: .5rem; }
.quote-info-h em { font-style: italic; color: var(--blue); }
.quote-info > p { color: var(--gray); font-size: .9375rem; line-height: 1.65; margin-bottom: 1.5rem; }
.tier-table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.tier-table th { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); padding: .5rem .75rem; border-bottom: 2px solid var(--gray-mid); text-align: left; }
.tier-table th:last-child { text-align: right; }
.tier-table td { padding: .65rem .75rem; font-size: .875rem; color: var(--black); border-bottom: 1px solid var(--gray-mid); }
.tier-table td:last-child { font-weight: 700; color: var(--blue); text-align: right; }
.tier-table tr:last-child td { border-bottom: none; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; background: var(--off-white); padding: 1.25rem; border-radius: var(--r-sm); margin-bottom: 1.25rem; }
.includes-list li { font-size: .875rem; color: var(--gray); display: flex; gap: .65rem; align-items: flex-start; }
.includes-list li::before { content: "✓"; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.quote-deposit-note { font-size: .8125rem; color: var(--gray); border-top: 1px solid var(--gray-mid); padding-top: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
.quote-contact-links { display: flex; flex-direction: column; gap: .4rem; font-size: .875rem; color: var(--gray); }
.quote-contact-links a { color: var(--blue); font-weight: 600; }
/* Quote form — light variant */
.quote-form-light { background: var(--off-white); border-radius: var(--r-lg); padding: 2.5rem; }
.quote-form-light h3 { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 700; color: var(--black); margin-bottom: 1.5rem; line-height: 1.15; }
.quote-form-light h3 em { font-style: italic; color: var(--blue); }

/* Calendar widget */
.quote-cal { background: var(--off-white); border: 1.5px solid var(--gray-mid); border-radius: var(--r-sm); padding: 1rem; margin-top: .35rem; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.cal-nav-btn { background: none; border: none; color: var(--gray); font-size: 1.2rem; cursor: pointer; padding: .2rem .5rem; line-height: 1; border-radius: var(--r-sm); transition: background .15s, color .15s; }
.cal-nav-btn:hover:not(:disabled) { background: var(--gray-mid); color: var(--black); }
.cal-nav-btn:disabled { opacity: .3; cursor: default; }
.cal-month-label { font-size: .82rem; font-weight: 600; color: var(--black); letter-spacing: .06em; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: .4rem; }
.cal-weekday { font-size: .65rem; color: var(--gray); text-align: center; padding: .2rem 0; font-weight: 600; }
.cal-grid-wrap { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-loading { text-align: center; font-size: .75rem; color: var(--gray); padding: .5rem 0; display: none; }
.cal-loading.visible { display: block; }
.cal-cell { text-align: center; padding: .35rem .1rem; font-size: .78rem; border-radius: 3px; line-height: 1; }
.cal-cell--available { color: var(--black); cursor: pointer; }
.cal-cell--available:hover { background: var(--gray-mid); }
.cal-cell--selected { background: var(--blue); color: #fff; font-weight: 700; cursor: pointer; }
.cal-cell--unavailable { color: var(--gray-mid); cursor: default; }

/* Helper labels */
.tier-auto-label { font-size: .7rem; color: var(--blue); display: none; }
.tier-auto-label.visible { display: inline; }
.cal-selected-label { font-size: .7rem; color: var(--blue); display: none; }
.cal-selected-label.visible { display: inline; }

/* Quote messages */
.quote-success { display: none; background: rgba(21,128,61,.07); border: 1px solid rgba(21,128,61,.2); border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .85rem; color: #15803d; margin-bottom: 1rem; }
.quote-success.visible { display: block; }
.quote-error { display: none; background: rgba(220,53,53,.07); border: 1px solid rgba(220,53,53,.2); border-radius: var(--r-sm); padding: .85rem 1rem; font-size: .85rem; color: #b91c1c; margin-bottom: 1rem; }
.quote-error.visible { display: block; }

/* Utilities */
.sec--no-top-pad { padding-top: 0; }
.cta a { color: var(--blue); font-weight: 600; }

.quote-form-dark { background: var(--black); padding: 2.5rem; border-radius: var(--r-md); }
.quote-form-dark h3 { font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1.5rem; line-height: 1.15; }
.quote-form-dark h3 em { font-style: italic; color: var(--blue); }
.quote-form-dark .form-field label { color: rgba(255,255,255,.65); }
.quote-form-dark .form-field input,
.quote-form-dark .form-field textarea { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); color: var(--white); }
.quote-form-dark .form-field select { background-color: rgba(255,255,255,.07); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; border-color: rgba(255,255,255,.12); color: var(--white); color-scheme: dark; }
.quote-form-dark .form-field input::placeholder,
.quote-form-dark .form-field textarea::placeholder { color: rgba(255,255,255,.25); }
.quote-form-dark .form-field input:focus,
.quote-form-dark .form-field select:focus,
.quote-form-dark .form-field textarea:focus { border-color: var(--blue); }

/* ── REVIEWS PAGE ── */
.reviews-rating-bar { background: var(--off-white); border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); padding: 2.5rem 2rem; display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.reviews-rating-score { font-family: var(--ff-head); font-size: 3.5rem; font-weight: 800; color: var(--black); line-height: 1; }
.reviews-rating-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 3px; margin: .2rem 0; }
.reviews-rating-label { font-size: .8125rem; color: var(--gray); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { background: var(--white); border: 1px solid var(--gray-mid); padding: 1.5rem; border-radius: var(--r-md); display: flex; flex-direction: column; gap: .75rem; }
.review-stars { color: #f59e0b; font-size: .9375rem; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--gray); line-height: 1.7; flex: 1; }
.review-author { font-size: .8125rem; font-weight: 700; color: var(--black); }
.review-type { font-size: .75rem; color: var(--gray); }
.google-live-sec { background: var(--black); padding: 5rem 2rem; }
.google-live-inner { max-width: 1100px; margin: 0 auto; }
.google-live-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; text-align: left; }
.google-review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.gr-header { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.gr-author { font-size: .9rem; font-weight: 600; color: var(--white); }
.gr-stars { color: #f59e0b; font-size: .875rem; letter-spacing: 1px; }
.gr-date { font-size: .75rem; color: rgba(255,255,255,.4); }
.gr-text { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.leave-review-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn-google { display: inline-flex; align-items: center; gap: .6rem; background: var(--black); color: #fff; font-family: var(--ff-body); font-size: .8125rem; font-weight: 600; letter-spacing: .06em; padding: .8rem 1.75rem; border-radius: var(--r-sm); transition: opacity .18s; }
.btn-google:hover { opacity: .85; }
.btn-yelp { display: inline-flex; align-items: center; gap: .6rem; background: #d32323; color: #fff; font-family: var(--ff-body); font-size: .8125rem; font-weight: 600; letter-spacing: .06em; padding: .8rem 1.75rem; border-radius: var(--r-sm); transition: opacity .18s; }
.btn-yelp:hover { opacity: .85; }

/* ── FOOTER (injected by footer.js, these classes match its output) ── */
#tmh-chat-btn { transition: bottom .3s ease, background .15s, transform .15s !important; }
#site-footer { background: var(--black); color: rgba(255,255,255,.55); min-height: 300px; }
.foot-inner { max-width: 1200px; margin: 0 auto; padding: 4.5rem 2rem 2rem; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand-name { font-family: var(--ff-head); font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: -.01em; margin-bottom: .15rem; }
.foot-brand-region { font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); font-family: var(--ff-body); margin-bottom: 1rem; }
.foot-brand p { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.45); margin-bottom: .5rem; }
.foot-phone a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.foot-phone a:hover { color: var(--white); }
.foot-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.foot-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.5); transition: color .18s, border-color .18s; }
.foot-social a:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.foot-col h4 { font-family: var(--ff-head); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .875rem; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.foot-col a { font-size: .875rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .18s; }
.foot-col a:hover { color: var(--white); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.5rem 0; }
.foot-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { font-size: .8rem; color: rgba(255,255,255,.3); text-decoration: none; transition: color .18s; }
.foot-links a:hover { color: rgba(255,255,255,.7); }
.foot-col-gap { margin-top: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 3rem 1.5rem; gap: 3rem; }
  .hero-photos { height: 420px; }
  .hero-photo-main { width: 260px; }
  .hero-photo-b, .hero-photo-c { width: 185px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: repeat(3, 1fr); }
  .port-grid--gallery { grid-template-columns: repeat(3, 1fr); }
  .port-masonry { columns: 3; }
  .port-book-strip { flex-direction: column; gap: 1.5rem; text-align: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats-float { right: 0; }
  .areas-grid-cards { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .corp-layout { grid-template-columns: 1fr; gap: 2rem; }
  .strip { grid-template-columns: repeat(3, 1fr); }
  .page-hero--split { grid-template-columns: 1fr; }
  .page-hero--split-img { min-height: 320px; position: relative; }
  .page-hero-inner { padding: 3rem 2rem; }
  .photographer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-split { grid-template-columns: 1fr; gap: 2rem; }
  .includes-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img:nth-child(4), .photo-strip img:nth-child(5) { display: none; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-page-layout { grid-template-columns: 1fr; }
  .faq-nav-sticky { display: none; }
  .cs-stat-row { grid-template-columns: 1fr; }
  .quote-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .testi-supporting { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 2rem 1rem; }
  .hero-photos { display: none; }
  .sec { padding: 4rem 1rem; }
  .services-grid, .price-cards { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid--gallery { grid-template-columns: repeat(2, 1fr); }
  .port-masonry { columns: 2; }
  .port-book-strip { padding: 2.5rem 1.25rem; margin: 0; }
  .guides-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .strip { display: none; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip img:nth-child(3), .photo-strip img:nth-child(4), .photo-strip img:nth-child(5) { display: none; }
  .foot-links { display: none; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .contact-box { padding: 1.5rem; }
  .testi-featured { padding: 2rem 1.5rem; }
  .page-hero-inner { padding: 2.5rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-form-dark { padding: 1.5rem; }
}

/* ── Organizer portal section (homepage) ── */
.org-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 2.5rem; }
.org-step { background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--r-md); padding: 2rem 1.75rem; transition: border-color .18s, transform .18s, box-shadow .18s; }
.org-step:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 12px 32px -16px rgba(23,89,255,.18); }
.org-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(23,89,255,.08); color: var(--blue); margin-bottom: 1.1rem; }
.org-step h3 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 0 0 .6rem; line-height: 1.25; }
.org-step p { font-size: .95rem; color: var(--gray); line-height: 1.65; margin: 0; }
.org-cta-wrap { display: flex; justify-content: center; margin-top: 2.5rem; }

/* Small "Solo session?" text link below pricing CTA */
.solo-link-note { font-size: .82rem; color: var(--gray); margin-top: .85rem; }
.solo-link-note a { color: var(--blue); font-weight: 600; text-decoration: none; }
.solo-link-note a:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .org-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .org-step { padding: 1.5rem 1.25rem; }
}

/* ── CITY LANDING PAGES ── */

/* Section background modifiers */
.sec--dark { background: var(--black); }
.sec--cream { background: var(--off-white); }
.sec--sand { background: var(--gray-light); }

/* Section label (v1 compat — maps to eyebrow) */
.sec-label { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.sec-label-rule { width: 24px; height: 1.5px; background: var(--blue); border-radius: 2px; }
.sec-label span { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.sec-label--center { justify-content: center; }

/* Page hero (non-split, dark background — city pages) */
.page-hero { background: var(--black); padding: clamp(5rem, 8vh, 8rem) 2rem clamp(3rem, 5vh, 5rem); position: relative; overflow: hidden; }
.page-hero .page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .page-hero-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.page-hero .page-hero-eyebrow-rule { width: 24px; height: 1.5px; background: var(--blue); border-radius: 2px; }
.page-hero .page-hero-eyebrow span { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.page-hero h1 { font-family: var(--ff-head); font-size: clamp(1.5rem, 4vw, 3.2rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -.01em; margin-bottom: 1.25rem; }
.page-hero h1 em { font-style: italic; color: rgba(255,255,255,.65); }
.page-hero .page-hero-desc { font-size: 1.0625rem; line-height: 1.65; color: rgba(255,255,255,.6); max-width: 540px; margin-bottom: 2rem; }
.page-hero .page-hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; }

/* Why grid (city pages) */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.why-item { background: var(--white); border: 1px solid var(--gray-mid); border-radius: var(--r-md); padding: 1.75rem; position: relative; overflow: hidden; border-left: 3px solid var(--blue); }
.why-item h3 { font-family: var(--ff-head); font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.why-item p { font-size: .9rem; line-height: 1.65; color: var(--gray); }

/* Nearby cities / service area pills */
.nearby-cities { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.5rem; }
.nearby-city { padding: .5rem 1.25rem; background: var(--off-white); border: 1px solid var(--gray-mid); border-radius: var(--r-pill); font-size: .875rem; font-weight: 500; color: var(--gray); transition: background .18s, color .18s, border-color .18s; }
.nearby-city:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.nearby-links { display: flex; flex-wrap: wrap; gap: .625rem; margin-top: 1.5rem; }
.nearby-links a { font-size: .8125rem; color: var(--blue); font-weight: 500; transition: color .18s; }
.nearby-links a:hover { text-decoration: underline; }

/* Testimonial grid (city pages — 3-col) */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }

/* Portfolio figure & caption (city pages) */
.port-fig { margin: 0; height: 100%; }
.port-caption { font-size: .7rem; color: rgba(255,255,255,.4); text-align: center; padding: .35rem 0; line-height: 1.4; }

/* Centered FAQ heading wrapper */
.faq-heading-center { text-align: center; margin-bottom: 0; }

/* Review link (city pages) */
.reviews-link-city { text-align: center; margin-top: 1.5rem; }
.reviews-link-city a { font-size: .875rem; font-weight: 600; color: var(--blue); }
.reviews-link-city a:hover { text-decoration: underline; }

/* CTA footnote (city pages) */
.cta-footnote { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: 1.5rem; text-align: center; }

/* Pricing note (city pages) */
.pricing-note { text-align: center; font-size: .875rem; color: var(--gray); margin-top: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* Cross-sell banner (city pages) */
.cross-sell { text-align: center; padding: 2.5rem 1.5rem; }
.cross-sell p { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.65; max-width: 520px; margin: 0 auto 1.5rem; }
.cross-sell h2 { font-family: var(--ff-head); font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cross-sell .btn-primary { margin-bottom: .75rem; }
.cross-sell-sub { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: .875rem; }
.cross-sell-sub a { color: rgba(255,255,255,.5); }
.cross-sell-sub a:hover { color: var(--white); }

/* About photographer (city page dark variant) */
.about-photo-city { width: 100%; display: block; margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); }
.about-card-city { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 1.5rem; text-align: center; }
.about-card-city-name { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.about-card-city-title { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-top: .3rem; }
.about-body-city p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.about-body-city .btn-link { color: var(--blue); }

/* Pricing callout box (city pages) */
.pricing-callout-city { margin-top: 1.25rem; text-align: center; padding: 1rem 1.5rem; background: rgba(23,89,255,.06); border: 1px solid rgba(23,89,255,.2); border-radius: var(--r-sm); }

/* ── ARTICLE / GUIDE PAGES ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-body h2 { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); margin: 2rem 0 .75rem; }
.article-body p { font-size: 1rem; line-height: 1.85; color: rgba(20,18,16,.75); margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-body li { font-size: 1rem; line-height: 1.75; color: rgba(20,18,16,.75); margin-bottom: .4rem; }
.article-body a { color: var(--blue); text-decoration: none; border-bottom: 1px solid rgba(23,89,255,.25); }
.article-body a:hover { border-color: var(--blue); }
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: 860px; margin: 0 auto; padding: .6rem 2rem; font-size: .78rem; color: var(--gray); display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--gray); text-decoration: none; }
.breadcrumb-inner a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--gray-mid); }
@media (max-width: 640px) { .article-body { padding: 2rem 1.25rem 3rem; } }

/* ── CITY PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(1.4rem, 3.5vw, 2.5rem); }
}
@media (max-width: 640px) {
  .page-hero { padding: 3rem 1rem 2rem; }
  .nearby-cities { gap: .5rem; }
}

