/* ==========================================================================
   MediaPages - Premium Editorial Design System
   Firefly / Light theme · Navy + Gold
   ========================================================================== */

:root {
  --navy-deep: #0a1930;
  --navy: #0b2545;
  --navy-light: #1b3a5f;
  --navy-mid: #13294b;
  --gold: #d4af37;
  --gold-warm: #e8b04b;
  --gold-soft: rgba(212, 175, 55, 0.15);
  --gold-border: rgba(212, 175, 55, 0.3);
  --cream: #f5f1e8;
  --ivory: #fafaf7;
  --white: #ffffff;
  --text-body: #2a2a2a;
  --text-muted: #5a5a5a;
  --text-light: rgba(245, 241, 232, 0.85);
  --text-light-muted: rgba(245, 241, 232, 0.6);
  --border-light: #e8e4da;
  --shadow-sm: 0 1px 3px rgba(10, 25, 48, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 25, 48, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 25, 48, 0.15);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 2px;
  --container: 1280px;
  --container-narrow: 980px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 17px;
}

body {
  font-family: 'Source Serif Pro', 'Charter', 'Iowan Old Style', Georgia, serif;
  color: var(--text-body);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Canela', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy-deep);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.2rem; }

a { color: var(--navy); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--gold); color: var(--navy-deep); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.2rem;
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow-line::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

.text-gold { color: var(--gold); }
.text-light { color: var(--text-light); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(10, 25, 48, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.3s var(--ease);
}
.site-header.light {
  background: rgba(250, 250, 247, 0.96);
  border-bottom: 1px solid var(--border-light);
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  position: relative;
  padding: 0.4rem 0;
}
.site-header.light .nav-menu a { color: var(--navy-deep); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.65rem 1.4rem;
  background: var(--gold);
  color: var(--navy-deep) !important;
  border: 1px solid var(--gold);
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: transparent;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--cream);
}
.site-header.light .nav-toggle { color: var(--navy-deep); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ==========================================================================
   HERO (Homepage) - Same pattern as subpage heroes: content LEFT, image RIGHT
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  background: var(--navy-deep);
  overflow: hidden;
}
/* Critical fix: when .container is flex child, give it explicit width so
   max-width: 1280px from the base rule actually applies */
.hero > .container {
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-firefly.jpg');
  background-size: cover;
  background-position: right center;
  z-index: 1;
}
/* Light overlay - same pattern as .page-hero-bg::before */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10, 25, 48, 0.4) 0%,
    rgba(10, 25, 48, 0.15) 35%,
    transparent 70%);
  z-index: 2;
}

/* Content constrained to left with max-width - same pattern as .page-hero-content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s var(--ease) both;
  text-shadow: 0 2px 20px rgba(10, 25, 48, 0.5);
}
.hero h1 .gold-word {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s var(--ease) 0.2s both;
  max-width: 480px;
  text-shadow: 0 1px 10px rgba(10, 25, 48, 0.5);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease) 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-warm);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 232, 0.3);
}
.btn-secondary:hover {
  background: rgba(245, 241, 232, 0.08);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.hero-trust {
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-light-muted);
  letter-spacing: 0.03em;
  animation: fadeInUp 1s var(--ease) 0.6s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   PAGE HERO (non-homepage) - LIGHTER overlay, image visible
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  z-index: 1;
}
/* Minimal overlay - images clearly visible throughout */
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10, 25, 48, 0.4) 0%,
    rgba(10, 25, 48, 0.15) 35%,
    transparent 70%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.page-hero h1 {
  color: var(--cream);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(10, 25, 48, 0.5);
}
.page-hero h1 .gold-word {
  color: var(--gold);
  font-style: italic;
}
.page-hero .lead {
  color: var(--text-light);
  font-style: normal;
  font-size: 1.2rem;
  max-width: 580px;
  text-shadow: 0 1px 10px rgba(10, 25, 48, 0.5);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before {
  content: '/';
  color: var(--gold);
  margin-right: 0.25rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb [aria-current="page"] { color: var(--navy-deep); font-weight: 500; }

/* Sections */
section { padding: 6rem 0; }
.section-center { text-align: center; }
.section-header { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section-header.left { text-align: left; margin: 0 0 3rem; }

.section-dark {
  background: var(--navy-deep);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--cream);
}
.section-dark p { color: var(--text-light); }
.section-dark .lead { color: var(--text-light); }

.section-cream { background: var(--cream); }

/* Services Grid */
.services {
  padding: 7rem 0;
  background: var(--ivory);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.service-card {
  background: var(--white);
  padding: 2.8rem 2.4rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.service-card .learn-more:hover { color: var(--gold); }

/* Media Strip */
.media-strip {
  padding: 5rem 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.media-strip-label {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.media-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3rem 2.5rem;
  align-items: center;
  justify-items: center;
}
.media-logos img {
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.4s var(--ease);
}
.media-logos img:hover { filter: grayscale(0) opacity(1); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.stat {
  text-align: center;
  padding: 2rem 1rem;
  border-left: 1px solid var(--gold-border);
}
.stat:first-child { border-left: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* Process */
.process { margin-top: 4rem; }
.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border-light); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.process-body h3 { margin-bottom: 1rem; }
.process-body p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* CTA Section */
.cta-section {
  padding: 7rem 0;
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-section h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.cta-section h2 .gold-word {
  color: var(--gold);
  font-style: italic;
}
.cta-section p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.cta-section .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Feature Grid (for listings page) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold-border);
}
.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.feature p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ==========================================================================
   LISTING TIERS - no pricing
   ========================================================================== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.tier {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease);
}
.tier:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tier-featured {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--gold);
  transform: scale(1.03);
}
.tier-featured h3 { color: var(--cream); }
.tier-featured li { color: var(--text-light); }
.tier-featured:hover { transform: scale(1.03) translateY(-4px); }
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.35rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.tier-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.tier-featured .tier-desc { color: var(--text-light-muted); }
.tier-divider {
  height: 1px;
  background: var(--border-light);
  margin: 1.5rem 0;
}
.tier-featured .tier-divider { background: rgba(212, 175, 55, 0.25); }
.tier ul {
  list-style: none;
  margin: 0 0 2rem 0;
}
.tier li {
  padding: 0.6rem 0 0.6rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.tier-featured li { color: var(--text-light); }
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}

/* Case Studies */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.case {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.case:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.case-image {
  aspect-ratio: 16/10;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.case-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-light));
}
.case-image .industry {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  z-index: 2;
}
.case-body { padding: 2rem; }
.case-body h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.case-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.case-metric {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

/* Logo Grid */
.logo-grid-section { margin-top: 4rem; }
.tier-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.tier-title span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.logo-cell {
  aspect-ratio: 3/2;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.logo-cell:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-sm);
}
.logo-cell img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.3s var(--ease);
}
.logo-cell:hover img { filter: grayscale(0) opacity(1); }

/* Form */
.form-wrap {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  max-width: 720px;
  margin: 4rem auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { margin-bottom: 1.5rem; }
.form-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--border-light);
  background: var(--ivory);
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 1rem;
  color: var(--text-body);
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTENT PAGES - enriched
   ========================================================================== */
.content-main { padding: 5rem 0; }

.content-intro {
  padding: 4rem 0 2rem;
  background: var(--ivory);
}
.content-intro .standfirst {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy-deep);
  max-width: 780px;
  letter-spacing: -0.01em;
}
.content-intro .standfirst em {
  font-style: italic;
  color: var(--gold);
}

.content-main h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
}
.content-main h2:first-of-type { margin-top: 0; }
.content-main h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.content-main p {
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 70ch;
}
.content-main ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
  max-width: 70ch;
}
.content-main ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  line-height: 1.65;
}
.content-main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
  background: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy-deep);
  line-height: 1.5;
  max-width: 70ch;
}

/* Feature row for service pages */
.feature-row {
  padding: 5rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--border-light);
}
.feature-row.cream { background: var(--cream); border-color: var(--gold-border); }
.feature-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row.reverse .feature-row-text { order: 2; }
.feature-row.reverse .feature-row-visual { order: 1; }
.feature-row-text h2 {
  margin-bottom: 1.2rem;
  margin-top: 0;
}
.feature-row-text h2:first-child { margin-top: 0; }
.feature-row-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: none;
}
.feature-row-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid var(--border-light);
}
.feature-row-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Included cards */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0 0;
}
.included-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.4s var(--ease);
}
.included-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.included-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.included-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 0;
}
.included-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

/* FAQ */
.faq {
  max-width: 820px;
  margin: 4rem auto 0;
}
.faq-item {
  border-top: 1px solid var(--border-light);
  padding: 1.8rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--navy-deep);
  margin-top: 0;
}
.faq-item p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-light);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand img {
  height: auto;
  width: 220px;
  max-width: 100%;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-brand p {
  max-width: 340px;
  font-size: 0.95rem;
  color: var(--text-light-muted);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a {
  color: var(--text-light-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin: 0;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}
.footer-legal a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid, .cases, .tiers { grid-template-columns: 1fr 1fr; }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-4px); }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
  .media-logos { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 2rem; }
  .feature-row-inner { gap: 2.5rem; }
  .included-grid { gap: 1.5rem; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  section { padding: 4rem 0; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .hero { min-height: 85vh; padding: 7rem 0 4rem; }
  /* On mobile: tree visible at top, text flows below with a darker bottom gradient */
  .hero-bg {
    background-position: 72% center;
    background-size: cover;
  }
  .hero-bg::before {
    background: linear-gradient(to bottom,
      rgba(10, 25, 48, 0.30) 0%,
      rgba(10, 25, 48, 0.40) 35%,
      rgba(10, 25, 48, 0.82) 65%,
      rgba(10, 25, 48, 0.95) 100%);
  }
  .hero { align-items: flex-end; }
  .hero-content {
    max-width: 100%;
    padding-top: 45vh;
  }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { justify-content: center; }
  .page-hero { padding: 8rem 0 3.5rem; }
  .page-hero-bg::before {
    background: linear-gradient(to bottom, rgba(10,25,48,0.7) 0%, rgba(10,25,48,0.88) 100%);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { color: var(--cream); font-size: 1rem; }
  .nav-toggle { display: block; }
  .site-header.light .nav-menu { background: var(--white); }
  .site-header.light .nav-menu a { color: var(--navy-deep); }

  .services-grid, .cases, .tiers, .feature-grid, .included-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat { border-left: none; border-top: 1px solid var(--gold-border); padding: 1.5rem 0.5rem; }
  .stat:first-child { border-top: none; }
  .stat:nth-child(2) { border-top: none; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .media-logos { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-step { grid-template-columns: 1fr; gap: 0.8rem; padding: 2rem 0; }
  .process-num { font-size: 2rem; }
  .form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .tier-title { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .pullquote { padding: 1.2rem 1.5rem; font-size: 1.15rem; }
  .feature-row-inner { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-row-text { order: 1; }
  .feature-row.reverse .feature-row-visual { order: 2; }
}

@media (max-width: 480px) {
  .btn { padding: 0.85rem 1.4rem; font-size: 0.85rem; width: 100%; justify-content: center; }
  .cta-section .btn-group { flex-direction: column; width: 100%; }
  .hero-trust { margin-top: 2rem; }
  .logo img { height: 38px; }
}
