:root {
  --navy: #0b2b66;
  --navy-dark: #082250;
  --teal: #58b7a7;
  --teal-soft: #e8f5f1;
  --cream: #fbfaf7;
  --warm: #f4eee7;
  --text: #18233a;
  --muted: #687287;
  --line: #e7e9ee;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(22, 40, 76, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,233,238,.75);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { width: 290px; height: auto; display: block; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 600; }
.nav > a:not(.button):hover { color: var(--teal); }
.menu-button { display: none; border: 0; background: none; font-size: 26px; color: var(--navy); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 24px;
  border-radius: 10px; background: var(--navy); color: white;
  font-weight: 700; border: 1px solid var(--navy);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(11,43,102,.18); background: var(--navy-dark); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-secondary { background: white; color: var(--navy); }
.button-secondary:hover { background: #f8fafc; }

.hero { padding: 88px 0 76px; background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 72px; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: #4f987d; font-size: 13px; font-weight: 800; margin: 0 0 16px; }
h1, h2 { font-family: "Libre Baskerville", Georgia, serif; color: var(--navy-dark); line-height: 1.12; margin: 0; }
h1 { font-size: clamp(46px, 5.6vw, 74px); letter-spacing: -.03em; }
h2 { font-size: clamp(32px, 3.6vw, 48px); letter-spacing: -.02em; }
h3 { color: var(--navy-dark); line-height: 1.3; }
.lead { margin: 26px 0 6px; max-width: 630px; font-size: 22px; line-height: 1.55; }
.system-line { margin: 4px 0 28px; color: var(--muted); font-size: 18px; font-weight: 600; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.founder-note { margin: 24px 0 0; font-size: 14px; color: var(--muted); }

.cubby-board { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.board-topline { display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.status-dot { font-size: 12px; color: #438a70; background: var(--teal-soft); padding: 7px 10px; border-radius: 99px; }
.room-row { display: grid; grid-template-columns: 1.15fr .7fr 1fr; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding: 18px 0; }
.room-row:first-of-type { border-top: 0; }
.room-row div:first-child { display: flex; flex-direction: column; }
.room-row span { font-size: 12px; color: var(--muted); }
.capacity { font-size: 25px; font-weight: 800; color: var(--navy); }
.opening { background: #f7faf9; border: 1px solid #e4efeb; border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; }
.opening strong { color: #3d7e68; }
.planning-note { margin-top: 12px; background: linear-gradient(90deg, #edf8f4, #f8fbfa); border-radius: 14px; padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
.check { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; display: grid; place-items: center; background: var(--teal); color: white; font-weight: 900; }
.planning-note span:last-child { color: var(--muted); font-size: 13px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid > div { padding: 28px 32px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: var(--navy); }
.trust-grid span { color: var(--muted); font-size: 14px; margin-top: 3px; }

.section { padding: 92px 0; }
.section-tint { background: var(--cream); }
.narrow-heading { max-width: 760px; margin-bottom: 44px; }
.narrow-heading > p:last-child, .section-lead { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: white; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--teal-soft); color: #3e8971; font-weight: 800; font-size: 13px; }
.feature-card h3 { margin: 22px 0 9px; font-size: 20px; }
.feature-card p { color: var(--muted); margin: 0; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.steps { display: grid; gap: 18px; }
.step { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.step > span { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: white; font-weight: 800; }
.step h3 { margin: 0 0 4px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); }

.pricing-wrap { max-width: 760px; }
.pricing-card { border: 1px solid #cfe1da; border-radius: 20px; padding: 36px; background: white; box-shadow: 0 18px 50px rgba(35, 77, 63, .07); display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 34px; align-items: center; }
.plan-name { color: #438a70; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; font-size: 12px; }
.price span { font-size: 48px; font-weight: 800; color: var(--navy); }
.price small { color: var(--muted); }
.muted { color: var(--muted); }
.pricing-card ul { list-style: none; padding: 0; margin: 0; }
.pricing-card li { margin: 8px 0; position: relative; padding-left: 22px; }
.pricing-card li::before { content: "✓"; color: #438a70; position: absolute; left: 0; font-weight: 900; }

.section-story { background: #f8faf9; }
.story-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; align-items: center; }
.story-mark { min-height: 300px; display: grid; place-items: center; }
.mini-cubbies { width: 190px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-cubbies i { aspect-ratio: 1; border-radius: 22px; background: var(--navy); }
.mini-cubbies .open { background: white; border: 6px solid var(--teal); }
.story-grid p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.faq-list { max-width: 860px; display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: white; }
summary { cursor: pointer; font-weight: 700; color: var(--navy); }
details p { color: var(--muted); margin-bottom: 0; }

.cta-section { padding: 0 0 88px; }
.cta-box { background: linear-gradient(135deg, #eef8f4, #f9fbfa); border: 1px solid #dcece6; border-radius: 22px; padding: 42px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-box h2 { font-size: clamp(28px, 3vw, 40px); }
.cta-box p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); }

footer { border-top: 1px solid var(--line); padding: 34px 0; color: var(--muted); font-size: 14px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid strong { color: var(--navy); font-size: 18px; }
.footer-grid p { margin: 3px 0 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--navy); }

@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 78px; left: 0; right: 0; background: white; padding: 22px; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .menu-button { display: block; }
  .hero-grid, .split-layout, .story-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .pricing-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-logo { width: 230px; }
  .hero { padding: 44px 0 54px; }
  h1 { font-size: 44px; }
  .lead { font-size: 19px; }
  .feature-grid { grid-template-columns: 1fr; }
  .room-row { grid-template-columns: 1fr .7fr; }
  .opening { grid-column: 1 / -1; }
  .cta-box, .footer-grid { align-items: flex-start; flex-direction: column; }
  .pricing-card { padding: 26px; }
  .section { padding: 70px 0; }
}
