:root {
  --cream: #f7f4ee;
  --cream-2: #ede9e0;
  --forest: #1e2e1e;
  --forest-mid: #2c3f2c;
  --forest-light: #3d5c3a;
  --gold: #a88a44;
  --gold-light: #c9a85c;
  --gold-pale: #e8d9b4;
  --charcoal: #2a2a2a;
  --ink: #1a1a18;
  --muted: #7a7264;
  --muted-light: #9e9688;
  --border: rgba(30,46,30,0.1);
  --border-gold: rgba(168,138,68,0.2);
  --glass: rgba(247,244,238,0.9);
  --shadow-soft: 0 4px 32px rgba(26,26,24,0.06);
  --shadow-med: 0 12px 48px rgba(26,26,24,0.1);
  --shadow-strong: 0 24px 80px rgba(26,26,24,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

.container {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-inner {
  margin: 20px auto;
  width: min(1160px, calc(100% - 56px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 82px;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 48px;
  height: 48px;
  position: relative;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.1;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: 0.25s ease;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

main {
  min-height: 100vh;
}

section {
  padding: 96px 0;
}

.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero {
  min-height: 64vh;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(44,63,44,0.07), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(168,138,68,0.06), transparent),
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(30,46,30,0.05), transparent);
  pointer-events: none;
}

.hero-grid,
.founder-grid,
.contact-grid,
.two-col {
  display: grid;
  gap: 56px;
  align-items
: center;
}

.hero-grid {
  grid-template-columns: 1.03fr 0.97fr;
  position: relative;
  z-index: 1;
}

.founder-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
}

.contact-grid,
.two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.hero-eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-eyebrow-line,
.section-label-line {
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-line { width: 34px; }
.section-label-line { width: 24px; }

.hero-eyebrow span,
.section-label span,
.eyebrow-mini,
.sol-number,
.step-num {
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.section-label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.eyebrow-mini,
.sol-number,
.step-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

h1 {
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ink);
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h3 {
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
}

h4 {
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}

p {
  line-height: 1.7;
}

.hero-desc,
.section-intro,
.founder-copy p,
.contact-card p,
.about-mini p,
.bio-card p,
.solution-card p,
.process-step p,
.package-card p,
.story-card p,
.value-card li,
.solution-card-premium p {
  color: #5a5446;
}

.hero-desc {
  font-size: 17px;
  max-width: 520px;
  margin: 28px 0 40px;
}

.section-intro {
  font-size: 17px;
  max-width: 560px;
}

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

.btn-primary,
.btn-secondary,
.btn-cta,
.small-link,
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary,
.btn-cta,
.linkedin-btn {
  padding: 14px 28px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-primary:hover,
.btn-cta:hover,
.linkedin-btn:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,46,30,0.2);
}

.btn-secondary {
  padding: 14px 24px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-secondary:hover {
  background: rgba(30,46,30,0.04);
  border-color: rgba(30,46,30,0.2);
  transform: translateY(-1px);
}

.small-link {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.small-link:hover {
  background: rgba(30,46,30,0.04);
}

.hero-metrics {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.metric-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-num sup {
  font-size: 18px;
  vertical-align: super;
  color: var(--gold);
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

.dashboard-shell {
  background: #efeae0;
  border: 1px solid rgba(30,46,30,0.12);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-strong);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 4px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-dot.red { background: #e57b71; }
.dash-dot.yellow { background: #f0b34d; }
.dash-dot.green { background: #81b97d; }

.dash-title {
  margin-left: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-light);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.dash-card {
  background: #faf8f4;
  border: 1px solid rgba(30,46,30,0.07);
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
}

.dash-card.large { min-height: 260px; }
.dash-card.side { min-height: 260px; }

.dash-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.dash-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.dash-sub {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest-light);
  margin-top: 10px;
}

.sparkline {
  height: 88px;
  margin-top: 16px;
}

.sparkline svg,
.chart-wrap svg {
  width: 100%;
  height: 100%;
}

.chart-wrap {
  height: 158px;
  margin-top: 18px;
}

.mini-bars {
  height: 104px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.mini-bars span {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #779271, #2d4930);
}

.mini-bars span.active {
  background: linear-gradient(180deg, #c9a85c, #ab8a42);
}

.stat-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30,46,30,0.08);
}

.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-row span:first-child {
  font-size: 15px;
  color: #3b392f;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(30,46,30,0.07);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--charcoal);
}

.stat-chip.gold {
  color: #8e6d28;
  background: rgba(171,138,66,0.12);
}

.marquee-wrap {
  padding: 24px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(247,244,238,0.55);
}

.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6a6254;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head,
.solutions-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 46px;
}

.solutions-grid,
.packages-layout,
.process-grid {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.solutions-grid { grid-template-columns: repeat(3, 1fr); }
.packages-layout { grid-template-columns: 1fr 1fr; }
.process-grid { grid-template-columns: repeat(3, 1fr); }

.solution-card,
.package-card,
.process-step {
  background: var(--cream);
  padding: 38px 30px;
}

.solution-card h3,
.package-card h3 {
  margin-bottom: 12px;
}

.solution-card p,
.process-step p,
.package-card p {
  font-size: 15px;
}

.solution-visual {
  margin-top: 28px;
  padding: 22px;
  border-top: 1px solid var(--border);
  background: rgba(30,46,30,0.03);
  border-radius: 18px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* premium home solutions section */
.solutions-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.solution-card-premium {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.25s ease;
}

.solution-card-premium:hover {
  background: #f0ede4;
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30,46,30,0.06);
  border: 1px solid rgba(30,46,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--forest);
}

.sol-icon svg {
  width: 22px;
  height: 22px;
}

.solution-card-premium h3 {
  margin-bottom: 12px;
}

.solution-card-premium p {
  font-size: 15px;
}

.sol-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.chart-visual,
.flow-visual,
.bars-visual {
  width: 100%;
  height: 58px;
}

.chart-visual {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.chart-visual span {
  flex: 1;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #40623c, #16341a);
}

.chart-visual span:nth-child(1) { height: 28px; }
.chart-visual span:nth-child(2) { height: 36px; }
.chart-visual span:nth-child(3) { height: 46px; }
.chart-visual span:nth-child(4) {
  height: 56px;
  background: linear-gradient(180deg, #c9a85c, #ab8a42);
}

.flow-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.flow-visual::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 2px;
  background: rgba(30,46,30,0.18);
  transform: translateY(-50%);
}

.flow-visual span {
  width: 56px;
  height: 36px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}

.flow-visual span:nth-child(1) { background: #16341a; }
.flow-visual span:nth-child(2) { background: #40623c; }
.flow-visual span:nth-child(3) { background: #ab8a42; }

.bars-visual {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.bars-visual span {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
}

.bars-visual span:nth-child(1) { height: 38px; background: #16341a; }
.bars-visual span:nth-child(2) { height: 56px; background: #55774a; }
.bars-visual span:nth-child(3) { height: 74px; background: #16341a; }
.bars-visual span:nth-child(4) { height: 84px; background: #ab8a42; }

.package-copy {
  margin-top: 4px;
  margin-bottom: 22px;
  max-width: 440px;
}

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

.dark-section h2,
.dark-section h3 {
  color: var(--cream);
}

.dark-section .section-intro,
.dark-section .package-card p,
.dark-section li {
  color: rgba(247,244,238,0.74);
}

.dark-section .package-card {
  background: rgba(44,63,44,0.3);
}

.dark-section .package-card.featured {
  background: rgba(168,138,68,0.12);
}

.pkg-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.pkg-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pkg-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(44,63,44,0.15);
  border: 1px solid rgba(44,63,44,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--forest);
}

.pkg-check.gold {
  background: rgba(168,138,68,0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

.dark-section .small-link {
  border-color: rgba(255,255,255,0.16);
  color: var(--cream);
}

.dark-section .small-link:hover {
  background: rgba(255,255,255,0.06);
}

.placeholder-card,
.bio-card,
.contact-card,
.about-mini,
.story-card,
.value-card {
  background: #faf8f4;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

.placeholder-card h3,
.contact-card h3,
.bio-card h3,
.story-card h3,
.value-card h3 {
  margin-bottom: 10px;
}

.placeholder-card p,
.contact-card p,
.bio-card p {
  margin-bottom: 16px;
}

.placeholder-list,
.value-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.placeholder-list li,
.value-card li {
  padding: 12px 14px;
  background: rgba(30,46,30,0.04);
  border: 1px solid rgba(30,46,30,0.08);
  border-radius: 12px;
  color: var(--charcoal);
  font-size: 14px;
}

.note-box {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(168,138,68,0.09);
  border: 1px solid rgba(168,138,68,0.18);
  color: #6a5b34;
  font-size: 14px;
}

.about-founder-section {
  padding-top: 28px;
}

.founder-grid-tight {
  align-items: start;
}

.founder-visual-stack {
  display: grid;
  gap: 18px;
}

.founder-main-image-card {
  background: linear-gradient(180deg, #f3efe7, #ece7dc);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-med);
  overflow: hidden;
}

.founder-main-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-copy p {
  font-size: 16px;
  margin-bottom: 18px;
}

.founder-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}

.stat-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(30,46,30,0.04);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
}

.about-story-section .story-grid,
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-story-section .story-grid {
  margin-bottom: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover {
  color: var(--forest-light);
}

.cta-section {
  padding: 80px 0;
}

.cta-inner {
  background: var(--forest);
  border-radius: 28px;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,138,68,0.12), transparent 70%);
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: var(--cream);
  margin: 12px 0 16px;
}

.cta-text p {
  font-size: 17px;
  color: rgba(247,244,238,0.65);
  max-width: 500px;
}

.cta-action {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-note {
  font-size: 11px;
  color: rgba(247,244,238,0.35);
  letter-spacing: 0.06em;
}

footer {
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: var(--charcoal);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 14px;
    right: 14px;
    background: rgba(247,244,238,0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-med);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links a,
  .nav-menu .nav-cta {
    width: 100%;
  }

  .nav-menu .nav-cta {
    justify-content: center;
  }

  .hero-grid,
  .founder-grid,
  .contact-grid,
  .two-col,
  .section-head,
  .solutions-header,
  .solutions-grid,
  .solutions-grid-premium,
  .packages-layout,
  .process-grid,
  .cta-inner,
  .dash-grid,
  .about-story-section .story-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    padding-top: 145px;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 20px;
  }

  .cta-inner {
    padding: 48px 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .container,
  .nav-inner {
    width: min(100% - 28px, 1200px);
  }

  .nav-inner {
    padding: 0 18px;
    height: 78px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-tagline {
    font-size: 10px;
  }

  .hero-home,
  .page-hero {
    padding-top: 132px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 44px;
  }

  .dashboard-shell,
  .placeholder-card,
  .bio-card,
  .contact-card,
  .solution-card,
  .solution-card-premium,
  .process-step,
  .package-card,
  .story-card,
  .value-card {
    padding: 24px;
  }

  .dash-value {
    font-size: 50px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-cta,
  .small-link,
  .linkedin-btn {
    width: 100%;
  }

  .hero-actions,
  .cta-action {
    width: 100%;
  }
}
