/*
  PorroVia — Main Stylesheet
  Palette: Navy #00004C · Amber #FFB703
  Fonts:   Cormorant Garamond (headings) · Inter (body)
*/

/* ─── TOKENS ─── */
:root {
  --navy:       #00004C;
  --navy-dark:  #00003A;
  --amber:      #FFB703;
  --amber-dark: #D4980A;
  --amber-light:#FFF8E1;
  --text:       #1A1A2E;
  --text-muted: #6B6B7B;
  --bg:         #F8F7F4;
  --bg-alt:     #EEECEA;
  --border:     #E8E6DF;
  --white:      #FFFFFF;
  --navy-tint:  #EEEEF8;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,30,.06), 0 1px 2px rgba(0,0,30,.04);
  --shadow-md: 0 4px 12px rgba(0,0,30,.08), 0 2px 6px rgba(0,0,30,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,30,.10), 0 4px 12px rgba(0,0,30,.06);

  --ease: 200ms cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── TYPE SCALE ─── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }
p + p { margin-top: 16px; }

em { font-style: italic; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 48px; } }
@media (min-width: 1280px) { .container { padding: 0 64px; } }

.section     { padding: 96px 0; }
.section-alt { background: var(--bg); }

.section-header         { max-width: 640px; margin-bottom: 56px; }
.section-header.centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }

.section-sub { margin-top: 16px; font-size: 1.05rem; line-height: 1.75; }

.section-cta { margin-top: 48px; text-align: center; }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.eyebrow-dark { color: var(--navy); }
.eyebrow-dark::before { background: var(--navy); }
.eyebrow-white { color: rgba(255,183,3,1); }
.eyebrow-white::before { background: var(--amber); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-sm { padding: 10px 20px; font-size: .8125rem; }

.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
  padding: 12px 28px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-tint);
}

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color var(--ease), gap var(--ease);
}
.link-arrow:hover { border-color: var(--navy); gap: 10px; }

/* ─── NAVIGATION ─── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  flex: 1;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 600; }

.nav .btn { margin-left: auto; display: none; }
@media (min-width: 1024px) { .nav .btn { display: inline-flex; } }

.nav-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--ease);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: white;
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--ease);
}
.nav-mobile a:hover { background: var(--bg); }
.nav-mobile .btn { margin-top: 12px; justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 120px 0 104px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 85% 15%, rgba(255,183,3,.09) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 15% 85%, rgba(10,10,80,.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  border: 1px solid rgba(255,183,3,.07);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  color: white;
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 300;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
}
.hero-trust .dot { color: rgba(255,183,3,.7); }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}
.trust-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  padding: 5px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  text-align: center;
}

/* ─── IMPACT ─── */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .impact-grid { grid-template-columns: 1.15fr .85fr; gap: 80px; }
}

.impact-text h2 { margin-bottom: 24px; }
.impact-text .link-arrow { margin-top: 24px; }

.impact-stats { display: flex; flex-direction: column; gap: 16px; }

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: box-shadow var(--ease);
}
.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  opacity: .7;
}

.service-card h3 { color: var(--navy); margin: 0; }
.service-card p  { font-size: .875rem; line-height: 1.65; flex: 1; }

.service-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  transition: gap var(--ease);
}
.service-link:hover { gap: 8px; }

/* ─── APPROACH / DYNAMIC MEDIATION BANNER ─── */
.approach-banner {
  background: var(--navy);
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}
.approach-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  border: 1px solid rgba(255,183,3,.08);
  border-radius: 50%;
  pointer-events: none;
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .approach-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.approach-text h2     { color: white; margin-bottom: 20px; }
.approach-text p      { color: rgba(255,255,255,.82); font-weight: 300; }
.approach-text .btn   { margin-top: 20px; }

.approach-model {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,183,3,.15);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.approach-model h4 {
  font-family: var(--font-serif);
  color: var(--amber);
  font-size: 1.375rem;
  margin-bottom: 12px;
}

.approach-model > p {
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  line-height: 1.65;
}

.book-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: rgba(255,183,3,.1);
  border: 1px solid rgba(255,183,3,.2);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ─── PROCESS ─── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}
@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3,1fr); } }

.process-step {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  counter-increment: step;
  transition: box-shadow var(--ease);
}
.process-step:hover { box-shadow: var(--shadow-md); }

.process-step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.process-step p  { font-size: .875rem; line-height: 1.65; }

/* ─── SUCCESS STORIES ─── */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .stories-grid { grid-template-columns: repeat(3,1fr); } }

.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-light);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.story-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy);
  font-style: italic;
  flex: 1;
}

.story-outcome {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.story-outcome strong { color: var(--navy); font-weight: 600; }

/* ─── ABOUT TEASER ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 80px; }
}

.about-photo-wrap {
  max-width: 340px;
  position: relative;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--navy-tint);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: .8rem;
  text-align: center;
  padding: 32px;
}

.about-photo-placeholder .ph-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--border);
}

.about-book-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-book-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.about-book-title {
  font-size: .8rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}

.about-book-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.78);
  margin-top: 2px;
}

.about-text h2          { margin-bottom: 20px; }
.credentials-list       { margin-top: 24px; display: flex; flex-direction: column; gap: 11px; }

.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-muted);
}
.credential-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.about-text .link-arrow { margin-top: 28px; }

/* ─── LEAD MAGNET ─── */
.lead-magnet {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
}

.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .lead-magnet-inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.lead-magnet h2 { margin-bottom: 16px; }

.guide-download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.guide-download-card h3 { margin-bottom: 12px; }

.guide-download-card p {
  font-size: .95rem;
  margin-bottom: 24px;
}

/* ─── FORM ─── */
.lead-form    { display: flex; flex-direction: column; gap: 16px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: .55;
}

.form-note { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--navy);
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,183,3,.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section > .container > p {
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.cta-section .btn-group {
  justify-content: center;
  margin-bottom: 32px;
}

.cta-contact {
  margin-top: 0;
  font-size: .825rem;
  color: rgba(255,255,255,.72);
}
.cta-contact a {
  color: rgba(255,255,255,.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img {
  height: 34px;
  width: auto;
  opacity: .8;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 280px;
}

.footer-tagline {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  transition: color var(--ease);
}
.footer-links a:hover { color: white; }

.footer-note {
  font-size: .8rem;
  color: rgba(255,255,255,.62);
  margin-top: 8px;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
  color: rgba(255,255,255,.62);
}

.footer-bottom a {
  color: rgba(255,255,255,.65);
  transition: color var(--ease);
}
.footer-bottom a:hover { color: white; }

.footer-quintech { font-size: .75rem; color: rgba(255,255,255,.52); }
.footer-quintech a { color: rgba(255,255,255,.65); text-decoration: underline; text-underline-offset: 3px; }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--navy);
  padding: 80px 0 72px;
}
.contact-hero h1 { color: white; margin-bottom: 16px; }
.contact-hero p  { color: rgba(255,255,255,.62); font-weight: 300; max-width: 520px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  padding: 88px 0;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form > h2 { margin-bottom: 32px; }
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .btn[type="submit"] { margin: 8px 0; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }

.contact-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-info p  { font-size: .9rem; }
.contact-info p + p { margin-top: 8px; }

.contact-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-aside h3 { margin-bottom: 12px; }

.contact-info a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.assurance-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  color: var(--text-muted);
}
.assurance-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--navy);
  padding: 80px 0 72px;
}
.about-hero h1  { color: white; margin-bottom: 16px; }
.about-hero p   { color: rgba(255,255,255,.62); font-weight: 300; max-width: 520px; }

.bio-section {
  padding: 88px 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .bio-grid { grid-template-columns: .75fr 1.25fr; gap: 72px; }
}

/* ─── SERVICES PAGE ─── */
.services-hero {
  background: var(--navy);
  padding: 80px 0 72px;
}
.services-hero h1 { color: white; margin-bottom: 16px; }
.services-hero p  { color: rgba(255,255,255,.62); font-weight: 300; max-width: 520px; }

.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--bg); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .service-detail-inner { grid-template-columns: 1fr 1fr; gap: 72px; }
}
@media (min-width: 900px) {
  .service-detail:nth-child(even) .service-detail-inner { direction: rtl; }
  .service-detail:nth-child(even) .service-detail-inner > * { direction: ltr; }
}

.service-detail-icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  opacity: .7;
  margin-bottom: 24px;
}

.service-detail h2 { margin-bottom: 16px; }

.service-detail .credentials-list { margin-top: 24px; }
.service-detail .btn              { margin-top: 28px; }

.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--navy-tint);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--navy);
  opacity: .3;
}

/* ─── PAGE HERO (shared) ─── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,183,3,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  letter-spacing: .05em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb a:hover { color: white; }
.page-hero h1  { color: white; margin-bottom: 16px; }
.page-hero > .container > p { color: rgba(255,255,255,.82); font-weight: 300; max-width: 560px; font-size: 1.05rem; line-height: 1.75; }

/* ─── LEGAL PAGES ─── */
.legal-section {
  background: var(--white);
  padding: 80px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .legal-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 72px; }
}

.legal-aside {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.legal-aside h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.legal-aside p {
  font-size: .875rem;
  line-height: 1.65;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-size: 1.75rem;
  margin: 36px 0 12px;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.75;
}

.legal-card p + p { margin-top: 12px; }

.legal-card ul {
  list-style: disc;
  padding-left: 22px;
  margin: 12px 0 0;
}

.legal-card li + li { margin-top: 8px; }

.legal-card a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ─── UTILITY CLASSES ─── */
.logo-fallback  { display: none; }
.label-optional { font-weight: 400; color: var(--text-muted); }
.mt-8           { margin-top: 8px; }
.mt-16          { margin-top: 16px; }
.mt-32          { margin-top: 32px; }
.btn-full       { width: 100%; justify-content: center; }

.approach-model-note {
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  line-height: 1.65;
}

/* ─── BOOK COVER PLACEHOLDER ─── */
.book-cover-wrap { display: flex; align-items: center; justify-content: center; }

.book-cover-placeholder {
  width: 240px;
  height: 320px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,30,.15);
}

.book-cover-placeholder__inner { text-align: center; padding: 32px; }

.book-cover-placeholder__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 8px;
}

.book-cover-placeholder__label {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE OVERRIDES ─── */
@media (max-width: 640px) {
  .section  { padding: 64px 0; }
  .hero     { padding: 80px 0 72px; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-section .btn-group { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-trust .dot { display: none; }
}
