/* =====================================================
   The Parascand Agency — Shared Stylesheet
   Inspired by the Pioneer Wealth aesthetic:
   deep navy, gold accents, serif display, clean sans
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-900: #0a1d35;
  --navy-800: #0e2a47;
  --navy-700: #143456;
  --navy-600: #1c4070;
  --gold-500: #b8935a;
  --gold-400: #c9a878;
  --gold-300: #dec39a;
  --cream-100: #f6f2ea;
  --cream-200: #ebe4d4;
  --ink-900: #0c1a2c;
  --ink-700: #2c3e54;
  --ink-500: #5a6b80;
  --ink-300: #97a3b3;
  --line: rgba(255, 255, 255, 0.08);
  --line-dark: rgba(12, 26, 44, 0.1);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 29, 53, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 29, 53, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 29, 53, 0.18);
  --radius: 4px;
  --radius-lg: 8px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-100);
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-500); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: inline-block;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-700);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container, .container-narrow { padding: 0 20px; }
}

/* ---------- Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}

.brand:hover { color: var(--navy-900); }

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-900);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-500);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold-500);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-100);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 22px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-cta.open { display: inline-flex; margin: 0 32px 24px; align-self: flex-start; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: var(--gold-500);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--cream-100);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--cream-100);
  border-color: var(--cream-100);
}

.btn-dark {
  background: var(--navy-800);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-700);
  color: #fff;
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.05rem;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--cream-100);
  background: var(--navy-900);
  overflow: hidden;
  padding: 120px 0 100px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.6) brightness(0.55);
  transform: scale(1.04);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,29,53,0.78) 0%, rgba(14,42,71,0.7) 55%, rgba(20,52,86,0.55) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(184,147,90,0.18), transparent 55%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.hero h1 {
  color: var(--cream-100);
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--gold-300);
  font-style: italic;
  font-weight: 400;
}

.hero .lead {
  color: rgba(246, 242, 234, 0.85);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 640px;
  margin-bottom: 40px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
}
.hero-tags span { display: inline-flex; align-items: center; }
.hero-tags span + span::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-right: 18px;
  margin-left: -4px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(246, 242, 234, 0.55);
}
.hero-meta .container { display: flex; justify-content: space-between; }

@media (max-width: 700px) {
  .hero { min-height: auto; padding: 80px 0 80px; }
  .hero-meta { display: none; }
}

/* ---------- Section heading ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 1.08rem; }

/* ---------- Pillars (intro callout) ---------- */
.pillars {
  background: #fff;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pillars-grid .lead-block .eyebrow { color: var(--gold-500); }
.pillars-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 24px;
}
.pillars-grid blockquote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
  margin: 28px 0;
  line-height: 1.4;
}
.pillars-cards {
  display: grid;
  gap: 20px;
}
.pillar-card {
  background: var(--cream-100);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
}
.pillar-card .icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
  color: var(--gold-300);
  border-radius: 50%;
  margin-bottom: 18px;
}
.pillar-card h3 { font-family: var(--sans); font-size: 1.1rem; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.pillar-card p { color: var(--ink-500); font-size: 0.98rem; margin: 0; }

@media (max-width: 800px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Services grid ---------- */
.services { background: var(--cream-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: #fff;
  padding: 36px 32px;
  transition: background .25s ease, transform .25s ease;
  position: relative;
}
.service-card:hover {
  background: var(--navy-800);
  color: var(--cream-100);
}
.service-card:hover h3,
.service-card:hover p { color: inherit; }
.service-card:hover .service-num { color: var(--gold-300); }
.service-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 12px;
  transition: color .2s ease;
}
.service-card p {
  font-size: 0.96rem;
  color: var(--ink-500);
  margin: 0;
  transition: color .2s ease;
}

/* ---------- Process / Journey ---------- */
.journey {
  background: var(--navy-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184,147,90,0.15), transparent 50%);
  pointer-events: none;
}
.journey .section-head h2 { color: var(--cream-100); }
.journey .section-head p { color: rgba(246,242,234,0.7); }
.journey .eyebrow { color: var(--gold-300); }

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.journey-step {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.journey-step:hover {
  background: rgba(184,147,90,0.06);
  border-color: rgba(184,147,90,0.3);
  transform: translateY(-4px);
}
.journey-step .step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.journey-step h3 {
  font-family: var(--sans);
  color: var(--cream-100);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.journey-step p { color: rgba(246,242,234,0.7); font-size: 0.92rem; margin: 0; }

@media (max-width: 1000px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .journey-grid { grid-template-columns: 1fr; }
}

/* ---------- Why us ---------- */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 32px;
}
.why-item .icon-bar {
  width: 48px;
  height: 3px;
  background: var(--gold-500);
  margin-bottom: 24px;
}
.why-item h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--navy-900);
}
.why-item p { color: var(--ink-500); }

@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.testimonial {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--gold-300);
  line-height: 1;
}
.testimonial p {
  position: relative;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.55;
  margin: 24px 0 24px;
}
.testimonial .who {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
}
.testimonial .who span {
  display: block;
  font-weight: 400;
  color: var(--ink-500);
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--navy-900);
  color: var(--cream-100);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,147,90,0.18), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 {
  color: var(--cream-100);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}
.cta-strip h2 em {
  color: var(--gold-300);
  font-style: italic;
  font-weight: 400;
}
.cta-strip p {
  color: rgba(246,242,234,0.78);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-strip .actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Contact form ---------- */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--ink-500); margin-bottom: 24px; }
.contact-info ul { list-style: none; padding: 0; }
.contact-info li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  gap: 14px;
  align-items: start;
  font-size: 0.95rem;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.contact-info li .icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--cream-100);
  color: var(--navy-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.form {
  background: var(--cream-100);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form .field { margin-bottom: 18px; }
.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.form input, .form textarea, .form select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(184,147,90,0.18);
}
.form textarea { resize: vertical; min-height: 120px; }
.form .disclaimer { font-size: 0.82rem; color: var(--ink-500); margin: 16px 0 24px; line-height: 1.5; }
.form .btn { width: 100%; justify-content: center; padding: 16px; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form .row { grid-template-columns: 1fr; }
  .form { padding: 28px; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(246,242,234,0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-grid p, .footer-grid li { font-size: 0.92rem; color: rgba(246,242,234,0.65); }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(246,242,234,0.7); }
.footer-grid a:hover { color: var(--gold-300); }
.footer-brand .brand {
  color: var(--cream-100);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.footer-brand p { max-width: 320px; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(246,242,234,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(246,242,234,0.45);
  max-width: 100%;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184,147,90,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(28,64,112,0.7), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; max-width: 880px; }
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero h1 {
  color: var(--cream-100);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold-300); font-style: italic; font-weight: 400; }
.page-hero p {
  color: rgba(246,242,234,0.78);
  font-size: 1.15rem;
  max-width: 640px;
}

/* ---------- Prose (about page etc.) ---------- */
.prose {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--ink-700);
}
.prose h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-top: 56px;
  margin-bottom: 18px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.2rem; }
.prose blockquote {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-500);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.45;
}
.prose ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--gold-500);
}

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.service-detail:last-child { border-bottom: 0; }
.service-detail .num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
}
.service-detail h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 12px;
}
.service-detail .tag {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 8px;
}
.service-detail p { color: var(--ink-500); margin-bottom: 14px; }

@media (max-width: 700px) {
  .service-detail { grid-template-columns: 1fr; gap: 16px; }
  .service-detail .num { font-size: 3rem; }
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin: 48px 0;
}
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--navy-900);
  display: block;
  line-height: 1;
}
.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 8px;
  display: block;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Meet James block ---------- */
.meet { background: #fff; }
.meet-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.meet-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 5;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.meet-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,29,53,0.5));
  pointer-events: none;
}
.meet-photo .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: #fff;
}
.meet-photo .badge .name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.meet-photo .badge .role {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.meet h2 { margin-bottom: 20px; }
.meet .lead { margin-bottom: 24px; }
.meet .credentials {
  display: flex;
  gap: 36px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}
.meet .credentials .item .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-500);
  display: block;
  line-height: 1;
}
.meet .credentials .item .label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 6px;
  display: block;
}

@media (max-width: 800px) {
  .meet-grid { grid-template-columns: 1fr; gap: 32px; }
  .meet-photo { max-width: 360px; margin: 0 auto; }
}

/* ---------- Imagery band ---------- */
.imagery-band {
  position: relative;
  height: 360px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.imagery-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,29,53,0.25), rgba(10,29,53,0.5));
}
.imagery-band .band-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream-100);
  padding: 0 32px;
}
.imagery-band h2 {
  color: var(--cream-100);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  max-width: 820px;
  line-height: 1.3;
}

/* ---------- About hero portrait ---------- */
.about-hero {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184,147,90,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(28,64,112,0.7), transparent 55%);
  pointer-events: none;
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-hero h1 {
  color: var(--cream-100);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
.about-hero h1 em { color: var(--gold-300); font-style: italic; font-weight: 400; }
.about-hero p {
  color: rgba(246,242,234,0.8);
  font-size: 1.15rem;
}
.about-hero .portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 5;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow-lg);
}
.about-hero .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero .eyebrow { color: var(--gold-300); }
@media (max-width: 800px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero .portrait { max-width: 360px; margin: 0 auto; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0 !important; }
