/* ==========================================================================
   Storydha — Premium Consulting Design System
   Typography · Whitespace · Grid · Lines · Icons
   ========================================================================== */

:root {
  /* Storydha logo palette */
  --primary: #001038;      /* Logo navy — "story" */
  --secondary: #007080;    /* Logo teal — "dha" */
  --accent: #F0A018;       /* Logo gold — icon accents */
  --bg: #F7F8F8;           /* Soft cool off-white to match logo white */
  --surface: #FFFFFF;
  --border: #E2E6EB;
  --text: #1A2740;
  --muted: #5B6575;

  --primary-soft: rgba(0, 16, 56, 0.05);
  --secondary-soft: rgba(0, 112, 128, 0.09);
  --accent-soft: rgba(240, 160, 24, 0.14);

  --radius: 16px;
  --radius-btn: 12px;
  --radius-sm: 10px;
  --container: 1120px;
  --space: 8px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --focus: 0 0 0 3px rgba(0, 112, 128, 0.28);
  --shadow-card: 0 18px 40px rgba(0, 16, 56, 0.08);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { max-width: 100%; display: block; }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.site-nav a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

button, input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5 {
  margin: 0 0 calc(var(--space) * 2);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

p { margin: 0 0 calc(var(--space) * 2); }
ul { margin: 0; padding: 0; list-style: none; }

/* Utilities
   ========================================================================== */
.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--surface);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--primary);
  font-weight: 600;
}

.eyebrow {
  display: inline-block;
  margin-bottom: calc(var(--space) * 2.5);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.text-muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: calc(var(--space) * 1.25); }
.mb-2 { margin-bottom: calc(var(--space) * 2.25); }
.mb-3 { margin-bottom: calc(var(--space) * 3.5); }
.mt-2 { margin-top: calc(var(--space) * 2.25); }
.mt-3 { margin-top: calc(var(--space) * 3.5); }
.mt-4 { margin-top: calc(var(--space) * 5); }
.center { text-align: center; }

.section {
  padding: 120px 0;
  position: relative;
}

.section-alt { background: var(--surface); }

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  max-width: 16ch;
  overflow-wrap: break-word;
}

.section-header.center h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 0;
  margin-top: 16px;
}

/* Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn i, .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #000a24;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
}

.btn-accent:hover {
  background: #d89010;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 18px; font-size: 0.875rem; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }

/* Cards
   ========================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card-hover:hover,
.card-link:hover .card,
a.card:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.card-link:hover { color: inherit; }

/* Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

body.nav-open .site-header {
  z-index: 125;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 16, 56, 0.05);
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 176px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 28px;
  grid-column: 2;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--secondary);
  transition: width 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a.active { color: var(--primary); }

.site-nav a.active::after,
.site-nav a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  grid-column: 3;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin-left: auto;
  z-index: 130;
  flex-shrink: 0;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--primary);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav-overlay,
.mobile-drawer {
  display: none;
}

/* Mobile drawer lives outside sticky header so links stay clickable */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: var(--surface);
  padding: 100px 28px 40px;
  z-index: 120;
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px rgba(0, 16, 56, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  pointer-events: none;
}

.mobile-drawer.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-drawer a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--secondary);
}

.mobile-drawer-cta {
  display: inline-flex !important;
  margin-top: 28px;
  width: 100%;
  justify-content: center;
  border-bottom: 0 !important;
  padding: 14px 24px !important;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 16, 56, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 110;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#main { min-height: 50vh; }

/* Hero — full-bleed portrait + left-padded copy
   ========================================================================== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58%, 780px);
  max-width: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-portrait {
  margin: 0;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--bg);
}

/* Soft blend into hero background (left) and under navbar (top) */
.hero-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(247, 248, 248, 0.95) 10%,
      rgba(247, 248, 248, 0.6) 24%,
      rgba(247, 248, 248, 0.2) 40%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--bg) 0%,
      rgba(247, 248, 248, 0.65) 6%,
      transparent 18%
    ),
    linear-gradient(
      0deg,
      var(--bg) 0%,
      rgba(247, 248, 248, 0.4) 8%,
      transparent 22%
    );
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
  transform: scale(1.01);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  /* Do not set width:100% — it overrides .container side gutters */
  min-height: calc(100vh - var(--header-h));
  padding: 72px 0 88px;
  box-sizing: border-box;
}

.hero-copy {
  max-width: min(480px, 44%);
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 3;
  padding-right: 24px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  max-width: 14ch;
  margin: 0 0 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}

.hero .lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 40ch;
  margin: 0 0 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Card motion
   ========================================================================== */
.card-animate {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.card-animate:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

/* Beliefs — colorful animated panels
   ========================================================================== */
.beliefs-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(0, 112, 128, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(240, 160, 24, 0.08), transparent 50%),
    var(--bg);
  overflow: hidden;
}

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

.belief-panel {
  position: relative;
  padding: 36px 28px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.belief-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}

.belief-panel::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.55;
  z-index: -1;
  animation: belief-orb 8s ease-in-out infinite;
}

.belief-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 16, 56, 0.1);
}

.belief-teal {
  border-color: rgba(0, 112, 128, 0.22);
}

.belief-teal::before {
  background: linear-gradient(160deg, rgba(0, 112, 128, 0.12) 0%, transparent 55%);
}

.belief-teal::after {
  background: rgba(0, 112, 128, 0.14);
}

.belief-teal .belief-icon {
  background: rgba(0, 112, 128, 0.12);
  color: var(--secondary);
}

.belief-navy {
  border-color: rgba(0, 16, 56, 0.18);
}

.belief-navy::before {
  background: linear-gradient(160deg, rgba(0, 16, 56, 0.08) 0%, transparent 55%);
}

.belief-navy::after {
  background: rgba(0, 16, 56, 0.1);
  animation-delay: -2.5s;
}

.belief-navy .belief-icon {
  background: rgba(0, 16, 56, 0.08);
  color: var(--primary);
}

.belief-gold {
  border-color: rgba(240, 160, 24, 0.35);
}

.belief-gold::before {
  background: linear-gradient(160deg, rgba(240, 160, 24, 0.16) 0%, transparent 55%);
}

.belief-gold::after {
  background: rgba(240, 160, 24, 0.18);
  animation-delay: -5s;
}

.belief-gold .belief-icon {
  background: rgba(240, 160, 24, 0.18);
  color: #b8780c;
}

.belief-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.belief-panel .belief-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: belief-icon-float 4.5s ease-in-out infinite;
}

.belief-navy .belief-icon { animation-delay: -1.2s; }
.belief-gold .belief-icon { animation-delay: -2.4s; }

.belief-panel .belief-icon i,
.belief-panel .belief-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.belief-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: -0.015em;
}

@keyframes belief-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-18px, 14px) scale(1.08); }
}

@keyframes belief-icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .belief-panel::after,
  .belief-panel .belief-icon {
    animation: none;
  }
}

/* Animated storytelling
   ========================================================================== */
.story-tell {
  max-width: 920px;
  margin: 0 auto;
  padding: 8px 0 0;
}

.story-tell-stage {
  min-height: 140px;
  text-align: center;
  margin-bottom: 48px;
  padding: 0 16px;
}

.story-tell-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.35s var(--ease);
}

.story-tell-line {
  margin: 0 auto;
  max-width: 36ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.story-tell.is-switching .story-tell-kicker,
.story-tell.is-switching .story-tell-line {
  opacity: 0;
  transform: translateY(8px);
}

.story-tell-path {
  position: relative;
  height: 2px;
  margin: 0 48px 8px;
}

.story-tell-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.story-tell-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  transition: width 0.55s var(--ease);
}

.story-tell-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-tell-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 28px 16px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  color: inherit;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.story-tell-btn:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.story-tell-step.is-active .story-tell-btn {
  border-color: var(--secondary);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.story-tell-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  margin-bottom: 4px;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.story-tell-step.is-active .story-tell-dot,
.story-tell-step.is-done .story-tell-dot {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: scale(1.15);
}

.story-tell-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.story-tell-btn strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.story-tell-desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Keep legacy flow styles for about page */
.flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.flow-step {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.flow-step:last-child { border-right: 0; }

.flow-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.flow-step span {
  font-size: 0.875rem;
  color: var(--muted);
}

.flow-step .flow-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Services / Offerings
   ========================================================================== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.offering-card {
  display: block;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
  color: inherit;
}

.offering-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offering-icon i,
.offering-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.offering-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.offering-card p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.9875rem;
}

.offering-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
}

.offering-link i,
.offering-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.offering-card:hover .offering-link i,
.offering-card:hover .offering-link svg {
  transform: translateX(4px);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-preview {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.service-preview:hover {
  transform: translateY(-4px);
  border-color: #d1d5db;
}

.service-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
}

.service-preview h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.service-preview p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 0.9875rem;
}

/* Audience grid
   ========================================================================== */
.audience-section {
  background:
    radial-gradient(ellipse 55% 50% at 100% 0%, rgba(240, 160, 24, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 45% at 0% 100%, rgba(0, 112, 128, 0.07), transparent 50%),
    var(--surface);
  overflow: hidden;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-item {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 168px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.audience-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(155deg, rgba(0, 112, 128, 0.06) 0%, transparent 55%);
}

.audience-item::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(0, 112, 128, 0.08);
  z-index: -1;
  transition: transform 0.5s var(--ease);
}

.audience-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0, 16, 56, 0.1);
}

.audience-item:hover::after {
  transform: scale(1.2) translate(-6px, -8px);
}

.audience-item .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--secondary);
  background: rgba(0, 112, 128, 0.1);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease);
}

.audience-item:hover .icon-wrap {
  transform: translateY(-3px) scale(1.05);
}

.audience-item .icon-wrap i,
.audience-item .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.audience-copy h3 {
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.audience-copy p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.audience-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.audience-teal {
  border-color: rgba(0, 112, 128, 0.22);
}

.audience-teal::before {
  background: linear-gradient(155deg, rgba(0, 112, 128, 0.12) 0%, transparent 55%);
}

.audience-teal::after {
  background: rgba(0, 112, 128, 0.12);
}

.audience-teal .icon-wrap {
  background: rgba(0, 112, 128, 0.12);
  color: var(--secondary);
}

.audience-navy {
  border-color: rgba(0, 16, 56, 0.16);
}

.audience-navy::before {
  background: linear-gradient(155deg, rgba(0, 16, 56, 0.08) 0%, transparent 55%);
}

.audience-navy::after {
  background: rgba(0, 16, 56, 0.08);
}

.audience-navy .icon-wrap {
  background: rgba(0, 16, 56, 0.08);
  color: var(--primary);
}

.audience-gold {
  border-color: rgba(240, 160, 24, 0.32);
}

.audience-gold::before {
  background: linear-gradient(155deg, rgba(240, 160, 24, 0.14) 0%, transparent 55%);
}

.audience-gold::after {
  background: rgba(240, 160, 24, 0.16);
}

.audience-gold .icon-wrap {
  background: rgba(240, 160, 24, 0.18);
  color: #b8780c;
}

/* Why Storydha — horizontal stats
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 64px;
}

.stat-cell {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child { border-right: 0; }

.stat-cell .counter,
.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-cell .counter {
  color: var(--accent);
}

.stat-cell span {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
  display: block;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
}

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: 0; padding-bottom: 0; }

.why-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9375rem;
  color: var(--accent);
  padding-top: 4px;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.9875rem;
}

/* Insights / Blog — editorial, no images
   ========================================================================== */
.insights-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.insight-card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.insight-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--primary-soft);
}

.insight-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.insight-card:hover .insight-cover img {
  transform: scale(1.05);
}

.insight-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.8125rem;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--secondary-soft);
  color: var(--secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-accent {
  background: var(--accent-soft);
  color: #b8760c;
}

.badge-primary {
  background: var(--primary-soft);
  color: var(--primary);
}

.insight-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.insight-body h3 a:hover { color: var(--secondary); }

.insight-body p {
  color: var(--muted);
  font-size: 0.9375rem;
  flex: 1;
  margin-bottom: 20px;
}

.read-meta {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 0.8125rem;
  margin-top: auto;
  padding-top: 4px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.blog-featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
  color: inherit;
}

.blog-featured-cover {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--primary-soft);
}

.blog-featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-featured:hover .blog-featured-cover img {
  transform: scale(1.04);
}

.blog-featured h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  max-width: 16ch;
  margin: 12px 0 16px;
}

.post-hero-cover {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  background: var(--primary-soft);
}

.post-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: stretch;
}

.blog-toolbar .field { flex: 1; min-width: 200px; }
.blog-toolbar .select { min-width: 180px; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--muted);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.single-post { max-width: 720px; }

.single-post .content {
  font-size: 1.0625rem;
  line-height: 1.85;
}

.single-post .content p {
  margin-bottom: 24px;
  color: var(--text);
}

.single-post .content h2,
.single-post .content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.related-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* CTA — light panel (distinct from dark footer)
   ========================================================================== */
.cta-section {
  padding: 88px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 52px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card);
}

.cta-panel-copy {
  max-width: 580px;
}

.cta-panel-copy .eyebrow {
  color: var(--secondary);
}

.cta-panel-copy h2 {
  color: var(--primary);
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  max-width: 18ch;
  margin-bottom: 12px;
}

.cta-panel-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.0125rem;
  max-width: 48ch;
}

.cta-panel-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-panel-action .btn {
  min-width: 200px;
}

/* Legacy centered CTA (other pages) */
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--secondary);
}

.cta-inner .eyebrow { color: var(--secondary); }

.cta-inner h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  max-width: none;
  margin-bottom: 16px;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.0625rem;
  margin-bottom: 28px;
}

/* Page hero
   ========================================================================== */
.page-hero {
  padding: 112px 0 64px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(0, 112, 128, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(240, 160, 24, 0.06), transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  max-width: 16ch;
  margin-bottom: 20px;
}

.page-hero .section-intro {
  margin-top: 0;
  margin-bottom: 0;
}

.page-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero-about h1,
.page-hero-contact h1 {
  max-width: 18ch;
}

/* Founder
   ========================================================================== */
.founder-intro {
  margin-bottom: 48px;
  max-width: 640px;
}

.founder-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 12px;
}

.founder-roles {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.founder-media {
  position: sticky;
  top: 112px;
}

.founder-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--primary);
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 48px -28px rgba(0, 16, 56, 0.35);
}

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

.founder-credentials {
  margin-top: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.founder-credentials h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 16px;
}

.founder-credentials ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.founder-credentials li {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}

.founder-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.founder-credentials li:last-child { margin-bottom: 0; }

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.founder-linkedin:hover { color: var(--primary); }

.founder-linkedin i,
.founder-linkedin svg {
  width: 16px;
  height: 16px;
}

.founder-content p {
  color: var(--muted);
  max-width: 58ch;
}

.founder-lead {
  font-size: 1.125rem;
  color: var(--text) !important;
  font-weight: 500;
  line-height: 1.65;
}

.founder-expertise-block {
  margin: 36px 0;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.founder-content h3,
.founder-expertise-block h3 {
  font-size: 1.05rem;
  margin: 0 0 16px;
}

.founder-expertise {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-expertise li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.founder-expertise li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

.section-quote {
  text-align: center;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 100px 0;
}

.section-quote .eyebrow {
  color: var(--accent);
}

.quote-heading {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 16ch;
  margin: 0 auto 32px;
}

.section-quote .philosophy-quote {
  color: rgba(255, 255, 255, 0.92);
  max-width: 32ch;
}

.section-quote .founder-philosophy-copy {
  color: rgba(255, 255, 255, 0.65);
}

.founder-philosophy-copy {
  max-width: 58ch;
  margin: 28px auto 0;
  text-align: center;
  color: var(--muted);
}

.founder-articles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.founder-article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 24px 8px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s var(--ease), padding-left 0.2s var(--ease);
  border-radius: 8px;
}

.founder-article:hover {
  background: var(--bg);
  padding-left: 16px;
}

.founder-article-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.founder-article h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-pillar {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.about-pillar:hover {
  border-color: rgba(0, 112, 128, 0.35);
  transform: translateY(-2px);
}

.about-pillar-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.about-pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.about-pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

.about-stats {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  max-width: 28ch;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.02em;
  border: 0;
  padding: 0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: method;
}

.method-step {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.method-step:hover {
  border-color: rgba(0, 112, 128, 0.35);
  transform: translateY(-2px);
}

.method-step::before {
  counter-increment: method;
  content: counter(method, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.method-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.method-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Service detail
   ========================================================================== */
.service-hero { padding: 100px 0 64px; }

.service-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  max-width: 16ch;
}

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

.benefit-item {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-item h3 i,
.benefit-item h3 svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  stroke-width: 1.5;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.process-list {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.process-item:last-child { border-bottom: 0; }

.process-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8125rem;
}

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item .faq-answer {
  padding: 0 0 24px;
  color: var(--muted);
}

.for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.for-tag {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

/* Contact
   ========================================================================== */
.contact-section {
  padding-top: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info {
  padding: 48px 40px;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(0, 112, 128, 0.35), transparent 55%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(240, 160, 24, 0.12), transparent 50%),
    var(--primary);
  border-radius: calc(var(--radius) + 4px);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  box-shadow: 0 28px 56px -32px rgba(0, 16, 56, 0.45);
}

.contact-info-eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}

.contact-info h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: 16px;
  max-width: 14ch;
}

.contact-info > p {
  margin-bottom: 36px;
  line-height: 1.65;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s var(--ease);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-detail .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .icon i,
.contact-detail .icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.contact-detail strong {
  display: block;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span:not(.icon) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-detail a:hover { color: var(--accent); }

.contact-note {
  margin-top: auto;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: rgba(240, 160, 24, 0.1);
  border: 1px solid rgba(240, 160, 24, 0.25);
}

.contact-note i,
.contact-note svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form-wrap {
  padding: 48px 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 20px 40px -28px rgba(0, 16, 56, 0.18);
}

.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
}

.contact-form .req {
  color: var(--accent);
  font-weight: 700;
}

.contact-form .field,
.contact-form .select,
.contact-form textarea {
  background: var(--bg);
  border-color: rgba(0, 16, 56, 0.1);
}

.contact-form .field:hover,
.contact-form .select:hover,
.contact-form textarea:hover {
  border-color: rgba(0, 112, 128, 0.35);
}

.contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Forms
   ========================================================================== */
.field,
.select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field:focus,
.select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: var(--focus);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
}

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

.form-group { margin-bottom: 22px; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.alert-success {
  background: #ecf8ef;
  color: #1a6b3a;
  border: 1px solid #c5e6cf;
}

.alert-error {
  background: #fef2f1;
  color: #9b2c20;
  border: 1px solid #f0c9c4;
}

/* Footer
   ========================================================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #fff;
  border-radius: 12px;
}

.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 34ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.footer-social a i,
.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
}

.footer-links a:hover { color: #fff; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form .field {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.newsletter-form .field::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form .field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 160, 24, 0.18);
}

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* Powered by bar
   ========================================================================== */
.powered-bar {
  background: #00081f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.powered-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.powered-bar a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.powered-bar a:hover {
  color: var(--accent);
}

/* Admin
   ========================================================================== */
.admin-body {
  background: #eef2f5;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background:
    radial-gradient(ellipse 80% 40% at 0% 0%, rgba(0, 112, 128, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 35% at 100% 100%, rgba(240, 160, 24, 0.18), transparent 50%),
    var(--primary);
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 22px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.admin-brand img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.admin-signed-in {
  margin: 0 0 18px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.admin-signed-in strong {
  color: #fff;
  font-weight: 600;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.admin-nav a i,
.admin-nav a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
  flex-shrink: 0;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--accent);
}

.admin-nav-logout {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 12px 12px !important;
  padding-top: 18px !important;
  margin-top: 20px;
}

.admin-view-site {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 600;
}

.admin-view-site:hover {
  color: #fff;
  border-color: rgba(240, 160, 24, 0.55);
}

.admin-view-site i,
.admin-view-site svg {
  width: 16px;
  height: 16px;
}

.admin-main {
  padding: 36px 40px 48px;
  background:
    radial-gradient(ellipse 50% 30% at 100% 0%, rgba(0, 112, 128, 0.05), transparent 55%),
    #eef2f5;
  min-width: 0;
}

.admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.admin-page-head h1 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 2.5vw, 2.15rem);
}

.admin-page-intro {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.admin-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-card,
.inquiry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0, 16, 56, 0.04);
}

.admin-card h2 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.admin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.admin-link:hover { color: var(--primary); }

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 16, 56, 0.04);
  position: relative;
  overflow: hidden;
}

.admin-stat::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
}

.admin-stat-navy::before { background: var(--primary); }
.admin-stat-teal::before { background: var(--secondary); }
.admin-stat-gold::before { background: var(--accent); }
.admin-stat-soft::before { background: rgba(0, 112, 128, 0.45); }

.admin-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-stat-navy .admin-stat-icon {
  background: rgba(0, 16, 56, 0.08);
  color: var(--primary);
}

.admin-stat-teal .admin-stat-icon {
  background: rgba(0, 112, 128, 0.12);
  color: var(--secondary);
}

.admin-stat-gold .admin-stat-icon {
  background: rgba(240, 160, 24, 0.16);
  color: #b8780c;
}

.admin-stat-soft .admin-stat-icon {
  background: rgba(0, 112, 128, 0.08);
  color: var(--secondary);
}

.admin-stat-icon i,
.admin-stat-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.admin-stat h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}

.admin-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.admin-stat span {
  font-size: 0.8125rem;
  color: var(--muted);
}

.admin-dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.admin-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-quick h2 { margin-bottom: 16px; }

.admin-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.925rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}

.admin-quick-item:last-child { margin-bottom: 0; }

.admin-quick-item:hover {
  border-color: rgba(0, 112, 128, 0.35);
  background: #fff;
  transform: translateX(3px);
}

.admin-quick-item i,
.admin-quick-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.admin-inquiry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.admin-inquiry-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-inquiry-list li:first-child { padding-top: 0; }
.admin-inquiry-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.admin-inquiry-item {
  flex-direction: row !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px !important;
}

.admin-inquiry-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.admin-message-cell {
  max-width: 240px;
  white-space: normal;
  word-break: break-word;
  font-size: 0.875rem;
  color: var(--muted);
}

.admin-inquiry-list strong {
  color: var(--primary);
  font-size: 0.95rem;
}

.admin-inquiry-list span {
  color: var(--muted);
  font-size: 0.875rem;
}

.admin-inquiry-list em {
  font-style: normal;
  color: var(--secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 4px;
}

.admin-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.admin-category-list li:first-child { padding-top: 0; }
.admin-category-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.admin-category-list strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
}

.admin-category-list span {
  display: block;
  color: var(--muted);
  font-size: 0.8125rem;
  margin-top: 2px;
}

.admin-inline-form {
  margin: 0;
  display: inline-flex;
}

.admin-btn-delete {
  appearance: none;
  border: 1px solid rgba(180, 40, 40, 0.25);
  background: rgba(180, 40, 40, 0.08);
  color: #9b1c1c;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.admin-btn-delete:hover {
  background: rgba(180, 40, 40, 0.14);
  border-color: rgba(180, 40, 40, 0.4);
}

.admin-slug {
  font-size: 0.8125rem;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 6px;
}

.admin-form-flush {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.admin-table-wrap {
  overflow: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.admin-card > .admin-table-wrap {
  margin: 0 -8px;
}

.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 0.925rem;
}

.admin-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.admin-table tr:last-child td { border-bottom: 0; }

.admin-table-title {
  font-weight: 600;
  color: var(--primary);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.admin-badge-published {
  background: rgba(0, 112, 128, 0.12);
  color: var(--secondary);
}

.admin-badge-draft {
  background: rgba(240, 160, 24, 0.16);
  color: #9a650c;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-actions a {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.875rem;
}

.admin-actions a:hover { color: var(--primary); }

.admin-form {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 16, 56, 0.04);
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(0, 112, 128, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(240, 160, 24, 0.1), transparent 50%),
    var(--bg);
}

.login-card {
  width: min(100%, 460px);
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 16, 56, 0.08);
}

/* Responsive
   ========================================================================== */

/* Mid desktop — prevent hero text/image collision */
@media (max-width: 1200px) {
  .hero-media {
    width: min(46%, 520px);
  }

  .hero-copy {
    max-width: min(420px, 48%);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 3vw, 2.45rem);
  }

  .site-nav {
    gap: 20px;
  }

  .belief-panels,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-cell:nth-child(3) {
    border-right: 0;
  }

  .stat-cell:nth-child(n + 4) {
    border-top: 1px solid var(--border);
  }
}

/* Tablet / compact laptop */
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-media {
    position: relative;
    order: -1;
    width: 100%;
    max-width: none;
    height: clamp(240px, 48vw, 400px);
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-portrait::before {
    background:
      linear-gradient(
        180deg,
        var(--bg) 0%,
        rgba(247, 248, 248, 0.7) 10%,
        transparent 34%
      ),
      linear-gradient(
        0deg,
        var(--bg) 0%,
        rgba(247, 248, 248, 0.85) 14%,
        transparent 42%
      );
  }

  .hero-portrait img {
    object-position: 62% 12%;
  }

  .hero-grid {
    min-height: 0;
    padding: 28px 0 56px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 4.5vw, 2.4rem);
    max-width: 18ch;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    padding-right: 0;
  }

  .hero .lead {
    max-width: 52ch;
  }

  .hero-actions {
    gap: 10px;
  }

  .story-tell-path { margin: 0 16px 8px; }

  .story-tell-steps {
    grid-template-columns: 1fr 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section { padding: 88px 0; }

  .belief-panels,
  .offerings-grid,
  .benefit-grid,
  .method-steps,
  .about-pillars,
  .footer-grid,
  .audience-grid,
  .insights-grid,
  .blog-grid,
  .related-posts {
    grid-template-columns: 1fr 1fr;
  }

  .belief-panels {
    gap: 16px;
  }

  .flow-row,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-step {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-row .stat-cell {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-row .stat-cell:nth-child(2n) {
    border-right: 0;
  }

  .stats-row .stat-cell:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .stats-row .stat-cell:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid var(--border);
  }

  .about-stats .stat-cell {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-preview {
    grid-template-columns: 56px 1fr;
  }

  .service-preview .btn { grid-column: 2; }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .founder-media {
    position: static;
    max-width: 420px;
  }

  .founder-expertise {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .brand,
  .site-nav,
  .nav-cta {
    grid-column: auto;
    justify-self: auto;
  }

  .site-nav,
  .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
  }

  .brand-logo {
    height: 34px;
    max-width: 150px;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .mobile-drawer {
    display: flex;
  }

  .admin-layout,
  .admin-dash-grid {
    grid-template-columns: 1fr;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .admin-main { padding: 24px 20px 40px; }

  .admin-page-head {
    align-items: flex-start;
  }

  .admin-nav-logout {
    margin-top: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
    gap: 24px;
  }

  .cta-panel-action {
    width: 100%;
  }

  .cta-panel-action .btn {
    width: 100%;
    min-width: 0;
  }

  .hero {
    padding: 0;
    min-height: auto;
  }

  .hero-media {
    height: min(56vw, 300px);
  }

  .hero-portrait img {
    object-position: 68% 10%;
  }

  .hero-grid {
    padding: 24px 0 48px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 1.95rem);
    max-width: none;
    line-height: 1.2;
  }

  .hero .lead {
    font-size: 1rem;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .story-tell-steps {
    grid-template-columns: 1fr;
  }

  .story-tell-path {
    display: none;
  }

  .story-tell-stage {
    min-height: 0;
    margin-bottom: 28px;
    text-align: left;
    padding: 0;
  }

  .section,
  .cta-section,
  .beliefs-section,
  .audience-section { padding: 72px 0; }

  .page-hero { padding: 72px 0 36px; }

  .page-hero-links {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-links .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header { margin-bottom: 36px; }

  .section h2,
  .section-header h2 {
    max-width: none;
  }

  .section-quote { padding: 64px 0; }

  .belief-panels,
  .offerings-grid,
  .audience-grid,
  .insights-grid,
  .blog-grid,
  .related-posts,
  .benefit-grid,
  .method-steps,
  .about-pillars,
  .form-grid,
  .footer-grid,
  .contact-layout,
  .flow-row,
  .stats-row,
  .about-stats,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .belief-panel,
  .audience-item,
  .offering-card {
    min-height: 0;
  }

  .stats-row .stat-cell,
  .stats-row .stat-cell:nth-child(odd),
  .stats-row .stat-cell:last-child:nth-child(odd) {
    grid-column: auto;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--border);
  }

  .flow-step:last-child,
  .stat-cell:last-child { border-bottom: 0; }

  .service-preview {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .service-preview .btn {
    grid-column: 1;
    width: 100%;
  }

  .blog-featured { padding: 16px; }

  .contact-info,
  .contact-form-wrap { padding: 28px 20px; }

  .founder-portrait { aspect-ratio: 5 / 4; }

  .founder-expertise-block { padding: 20px; }

  .about-pillar { padding: 24px 20px; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-logo {
    height: 32px;
    max-width: 140px;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .stat-cell {
    padding: 28px 20px;
  }

  .stat-cell .counter,
  .stat-cell strong {
    font-size: 1.65rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-media {
    height: 220px;
  }

  .eyebrow {
    letter-spacing: 0.12em;
    font-size: 0.6875rem;
  }

  .belief-panel {
    padding: 28px 22px 32px;
  }

  .audience-item {
    min-height: 0;
    padding: 24px 20px;
  }

  .offering-card {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
