/* =============================================================
   Two Swords Digital Solutions — Main Stylesheet
   Brand: Navy #1A2A4A | Gold #C9973A | Warm White #F6F5F2
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy:        #1A2A4A;
  --navy-mid:    #2E4270;
  --navy-dark:   #111D33;
  --gold:        #C9973A;
  --gold-light:  #E8C06A;
  --gold-pale:   #FDF4E3;
  --warm-white:  #F6F5F2;
  --white:       #FFFFFF;
  --text-dark:   #1C1C1E;
  --text-muted:  #5A5A6E;
  --border:      #E2E0DB;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1100px;
  --section-pad:   90px 0;
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.25s ease;
  --shadow-sm:     0 2px 8px rgba(26,42,74,0.08);
  --shadow-md:     0 6px 24px rgba(26,42,74,0.12);
  --shadow-lg:     0 16px 48px rgba(26,42,74,0.16);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography helpers ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 12px;
  line-height: 1.7;
}

.section-sub.light { color: rgba(255,255,255,0.75); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,151,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ── Topbar ── */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar-item a:hover { color: var(--gold-light); }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark img { width: 70px; height: 70px; border-radius: 8px; display: block; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
}

.nav-logo-text .brand-sub {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.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 nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .btn { font-size: 1rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,66,112,0.5) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* ── Credentials Ribbon ── */
.ribbon {
  background: var(--gold);
  padding: 28px 0;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.ribbon-item {
  border-right: 1px solid rgba(255,255,255,0.25);
}
.ribbon-item:last-child { border-right: none; }

.ribbon-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
}

.ribbon-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy-dark);
  opacity: 0.75;
  margin-top: 6px;
}

/* ── Why Choose Us ── */
.why {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Approach / Venn ── */
.approach {
  padding: var(--section-pad);
  background: var(--navy);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach-venn {
  display: flex;
  justify-content: center;
}

.approach-venn svg { max-width: 360px; width: 100%; }

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

.approach-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.approach-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.approach-point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.approach-point p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}

.approach-point strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Services ── */
.services {
  padding: var(--section-pad);
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--white);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Last card spans to center if odd */
.service-card.wide {
  grid-column: span 1;
}

/* ── Client Journey ── */
.journey {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.journey-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 40px;
  align-items: center;
}

.journey-step:last-child { margin-bottom: 0; }

.journey-content {
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.journey-content h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.journey-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.journey-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* Even steps: text right, empty left */
.journey-step.even .journey-content { order: 3; }
.journey-step.even .journey-node   { order: 2; }
.journey-step.even .journey-empty  { order: 1; }

/* Odd steps: text left, empty right */
.journey-step.odd .journey-content { order: 1; }
.journey-step.odd .journey-node    { order: 2; }
.journey-step.odd .journey-empty   { order: 3; }

.journey-empty { /* spacer column */ }

/* ── Pricing ── */
.pricing {
  padding: var(--section-pad);
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(201,151,58,0.1);
  position: relative;
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.pricing-price .currency { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.pricing-price .amount   { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--navy); }
.pricing-price .period   { font-size: 0.8125rem; color: var(--text-muted); }

.pricing-annual {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: -2px;
}

.pricing-annual strong {
  color: var(--navy);
  font-weight: 600;
}

.pricing-save {
  display: inline-block;
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 100px;
  margin-left: 4px;
  vertical-align: middle;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-features {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-features li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
}

.pricing-cta.primary {
  background: var(--gold);
  color: var(--navy-dark);
  border: 2px solid var(--gold);
}
.pricing-cta.primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.pricing-cta.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.pricing-cta.secondary:hover {
  border-color: var(--navy);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Launch card — sits above the monthly grid */
.pricing-launch-wrap {
  margin-bottom: 32px;
}

.pricing-launch {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 32px;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pricing-launch .pricing-badge   { grid-column: 1 / 2; grid-row: 1; align-self: start; margin-bottom: 8px; }
.pricing-launch .pricing-tier    { grid-column: 1 / 2; grid-row: 2; color: var(--white); font-size: 1.25rem; }
.pricing-launch .pricing-price   { grid-column: 1 / 2; grid-row: 3; }
.pricing-launch .pricing-price .currency,
.pricing-launch .pricing-price .amount { color: var(--gold-light); }
.pricing-launch .pricing-price .period { color: rgba(255,255,255,0.6); }
.pricing-launch .pricing-desc    { grid-column: 2 / 3; grid-row: 1 / 4; color: rgba(255,255,255,0.75); font-size: 0.9375rem; }
.pricing-launch .pricing-cta     { grid-column: 3 / 4; grid-row: 1 / 4; white-space: nowrap; }

.pricing-features-row {
  display: none;
}

.pricing-monthly-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .pricing-launch {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .pricing-launch .pricing-badge,
  .pricing-launch .pricing-tier,
  .pricing-launch .pricing-price,
  .pricing-launch .pricing-desc,
  .pricing-launch .pricing-cta   { grid-column: 1; grid-row: auto; }
  .pricing-launch .pricing-cta { text-align: center; }
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.cta-band p {
  font-size: 1.0625rem;
  color: var(--navy);
  opacity: 0.8;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-band .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(26,42,74,0.35);
}

/* ── About ── */
.about {
  padding: var(--section-pad);
  background: var(--warm-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-initials {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.about-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .section-title { margin-bottom: 16px; }

.about-bio {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-verse {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.65;
}

.about-verse cite {
  display: block;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 6px;
}

/* ── Contact ── */
.contact {
  padding: var(--section-pad);
  background: var(--navy-dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-title.light { margin-bottom: 16px; }
.contact-info .section-sub.light  { margin-bottom: 32px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(201,151,58,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-detail-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
}

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.ohnohoney { display: none; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group select option { background: var(--navy-dark); }

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

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.form-privacy {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.5;
}

/* ── Footer ── */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }

.footer-brand .nav-logo-text .brand-name { color: var(--white); }

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── Utility ── */
.text-gold  { color: var(--gold); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 300px 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 64px 0; }

  .approach-inner { grid-template-columns: 1fr; }
  .approach-venn  { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 16px; margin-bottom: 8px; }
  .ribbon-item:last-child { border-bottom: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 16/9; }
  .about-accent { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .topbar .topbar-items { gap: 12px; }
  .topbar-item:nth-child(2) { display: none; }

  .nav-links, .nav-links + .btn { display: none; }
  .nav-hamburger { display: flex; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* Journey stacks to left */
  .journey-timeline::before { left: 20px; }
  .journey-step {
    grid-template-columns: 40px 1fr;
    margin-bottom: 24px;
  }
  .journey-step.even .journey-content,
  .journey-step.odd .journey-content  { order: 2; }
  .journey-step.even .journey-node,
  .journey-step.odd .journey-node     { order: 1; }
  .journey-step.even .journey-empty,
  .journey-step.odd .journey-empty    { display: none; }

  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero { padding: 72px 0 64px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .ribbon-grid { grid-template-columns: 1fr; }
  .ribbon-item { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
