/* Quiesora — Quiet Sky Design System */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Mono';
  src: url('../fonts/dm-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cloud-white: #F8F4ED;
  --morning-mist: #E1E7EE;
  --warm-taupe: #D8CBB8;
  --deep-slate: #2A2F2D;
  --soft-charcoal: #2F2F2F;
  --dusk-blue: #8FB2C9;
  --sage-green: #8B9D83;
  --warm-sand: #C9B18E;
  --warm-terracotta: #8B5E4B;
  --soft-fog: #F5F5F0;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;

  --max-width: 72rem;
  --content-width: 42rem;
  --header-height: 4.5rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --transition: 0.25s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--deep-slate);
  color: var(--cloud-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--dusk-blue);
  outline-offset: 2px;
}

.icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  color: var(--sage-green);
}

.icon-sm { width: 1.5rem; height: 1.5rem; }
.icon-lg { width: 3rem; height: 3rem; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--deep-slate);
  background: var(--cloud-white);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(143, 178, 201, 0.25);
  color: var(--deep-slate);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dusk-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--warm-terracotta); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--deep-slate);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-width {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(248, 244, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 203, 184, 0.4);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(42, 47, 45, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--deep-slate);
  text-decoration: none;
}

.logo:hover { color: var(--deep-slate); }

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  text-decoration: none;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--warm-terracotta);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--deep-slate);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--cloud-white);
  border-bottom: 1px solid var(--warm-taupe);
  padding: 1.5rem;
  z-index: 99;
}

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

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
}

/* Main */
main {
  padding-top: var(--header-height);
  min-height: 100vh;
}

/* Hero */
.hero {
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cloud-white) 0%, var(--morning-mist) 100%);
  background-image: url('../images/illustrations/hero-horizon.svg');
  background-size: cover;
  background-position: center bottom;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(143, 178, 201, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-sub {
  font-size: 1.125rem;
  color: var(--deep-slate);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero--centered {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--warm-sand);
  color: var(--deep-slate);
}

.btn-primary:hover {
  background: var(--warm-terracotta);
  color: var(--cloud-white);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-slate);
  border: 1px solid var(--warm-taupe);
}

.btn-secondary:hover {
  border-color: var(--dusk-blue);
  color: var(--dusk-blue);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-mist { background: var(--morning-mist); }
.section-fog { background: var(--soft-fog); }
.section-white { background: var(--cloud-white); }

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--deep-slate);
  opacity: 0.85;
  margin-top: 1rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-green);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

/* Philosophy block */
.philosophy-block {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.philosophy-block p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.8;
  color: var(--soft-charcoal);
}

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.bento-card {
  background: var(--cloud-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(42, 47, 45, 0.08);
  color: inherit;
}

.bento-card.sage { background: rgba(139, 157, 131, 0.15); }
.bento-card.taupe { background: rgba(216, 203, 184, 0.35); }
.bento-card.mist { background: rgba(143, 178, 201, 0.18); }

.bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--sage-green);
}

.bento-card h3 { margin-bottom: 0.25rem; }

.bento-card p {
  font-size: 0.9375rem;
  color: var(--deep-slate);
  opacity: 0.9;
  margin: 0;
  flex-grow: 1;
}

.bento-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-terracotta);
}

/* Start Here CTA band — kept for other pages that may reference it */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--warm-taupe);
  border-radius: var(--radius-lg);
  max-width: 48rem;
  margin: 0 auto;
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { margin-bottom: 2rem; opacity: 0.9; }

/* Onboarding CTA — kept for other pages */
.onboarding-cta {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  background: var(--morning-mist);
  border: 1px solid rgba(216, 203, 184, 0.3);
  border-radius: var(--radius-lg);
}
.onboarding-cta h2 { margin-bottom: 1rem; }
.onboarding-cta p { margin-bottom: 2rem; opacity: 0.9; }

/* ── Homepage split CTA ───────────────────────────────────────────────── */
.homepage-split-cta {
  padding: 0;
  overflow: hidden;
}

.split-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.split-cta-panel {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.split-cta-panel h2 {
  margin-bottom: 1rem;
  margin-top: 0.25rem;
}

.split-cta-panel p {
  margin-bottom: 2rem;
  opacity: 0.85;
  max-width: 28rem;
  line-height: 1.7;
}

/* Light panel — airy parchment, editorial */
.split-cta-panel--light {
  background: var(--soft-parchment, #F8F4ED);
  border-right: 1px solid rgba(180, 160, 140, 0.2);
}

.split-cta-panel--light .section-eyebrow {
  color: var(--sage-green, #7A8F6F);
}

/* Dark panel — warm charcoal, inverted */
.split-cta-panel--dark {
  background: var(--warm-charcoal, #3A3530);
  color: var(--soft-parchment, #F8F4ED);
}

.split-cta-panel--dark .section-eyebrow {
  color: rgba(248, 244, 237, 0.55);
}

.split-cta-panel--dark h2 {
  color: var(--soft-parchment, #F8F4ED);
}

.split-cta-panel--dark p {
  color: rgba(248, 244, 237, 0.8);
}

@media (max-width: 768px) {
  .split-cta-grid {
    grid-template-columns: 1fr;
  }
  .split-cta-panel {
    padding: 3.5rem 1.75rem;
  }
  .split-cta-panel--light {
    border-right: none;
    border-bottom: 1px solid rgba(180, 160, 140, 0.2);
  }
}

/* Topic cluster guide lists (evergreen, not a blog feed) */
.cluster-list,
.journal-list {
  max-width: 40rem;
  margin: 0 auto;
  list-style: none;
}

.cluster-item,
.journal-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(216, 203, 184, 0.75);
}

.cluster-item:first-child,
.journal-item:first-child { padding-top: 0; }

.cluster-meta,
.journal-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--sage-green);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.cluster-item h3,
.journal-item h3 {
  margin-bottom: 0.75rem;
}

.cluster-item h3 a,
.journal-item h3 a {
  color: var(--deep-slate);
  text-decoration: none;
  font-weight: 500;
}

.cluster-item h3 a:hover,
.journal-item h3 a:hover { color: var(--warm-terracotta); }

.cluster-excerpt,
.journal-excerpt {
  font-size: 0.9375rem;
  color: var(--deep-slate);
  opacity: 0.85;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--deep-slate);
  color: rgba(248, 244, 237, 0.75);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer-brand .logo-text {
  color: var(--cloud-white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cloud-white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.65);
  text-decoration: none;
}

.footer-col a:hover { color: var(--warm-sand); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 244, 237, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  opacity: 0.5;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.45;
  font-style: italic;
}

/* Page headers */
.page-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(180deg, var(--morning-mist) 0%, var(--cloud-white) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero--vector::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/illustrations/hero-horizon.svg') center bottom / cover no-repeat;
  opacity: 0.45;
  pointer-events: none;
}

.page-hero--vector > * {
  position: relative;
}

.page-hero .hero-eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 32rem; margin: 0 auto; opacity: 0.9; }

/* Article layout */
.article {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--sage-green);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-taupe);
}

.article h2 {
  margin: 2.5rem 0 1rem;
}

.article h3 {
  margin: 2rem 0 0.75rem;
}

.article ul, .article ol {
  margin: 0 0 1.25rem 1.5rem;
}

.article li { margin-bottom: 0.5rem; }

.article blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--warm-taupe);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage-green);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--soft-charcoal);
}

/* Category cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.category-card {
  background: rgba(139, 157, 131, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.category-card:nth-child(2) { background: rgba(216, 203, 184, 0.3); }
.category-card:nth-child(3) { background: rgba(225, 231, 238, 0.5); }
.category-card:nth-child(4) { background: rgba(201, 177, 142, 0.2); }
.category-card:nth-child(5) { background: rgba(139, 157, 131, 0.12); }

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 47, 45, 0.06);
  color: inherit;
}

.category-card h3 { margin-bottom: 0.5rem; }
.category-card p { font-size: 0.875rem; color: var(--deep-slate); opacity: 0.85; margin: 0; }
.category-card .count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--sage-green);
  margin-top: 1rem;
  display: block;
}

/* Gear placeholder categories (prose lists on coming-soon page) */
.gear-categories {
  display: grid;
  gap: 2rem;
}
.gear-category-list {
  margin-top: 0.5rem;
  line-height: 1.6;
}
.gear-cta-note {
  margin-top: 1.5rem;
}

/* Minimal text utilities (used sparingly to replace inline styles) */
.text-center { text-align: center; }

.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.guide-card {
  background: var(--cloud-white);
  border: 1px solid rgba(216, 203, 184, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 47, 45, 0.07);
  color: inherit;
}

.guide-card-image {
  height: 10rem;
  background: var(--morning-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-green);
  overflow: hidden;
}

.guide-card-image img,
.bento-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  opacity: 0.85;
}

.bento-illustration-wrap {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.guide-card-body { padding: 1.5rem; }

.guide-card-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 0.5rem;
}

.guide-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }

.guide-card p {
  font-size: 0.875rem;
  color: var(--deep-slate);
  opacity: 0.85;
  margin: 0;
}

/* Related guides (auto-injected on articles) */
.related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--warm-taupe);
}
.related-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.related-list {
  list-style: none;
}
.related-list li {
  margin-bottom: 0.6rem;
}
.related-list a {
  display: block;
}
.related-list .related-excerpt {
  display: block;
  font-size: 0.9em;
  opacity: 0.75;
  margin-top: 0.1rem;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.product-card {
  background: var(--cloud-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(216, 203, 184, 0.35);
}

.product-card .product-category {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-green);
  margin-bottom: 0.75rem;
}

.product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--deep-slate);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.product-card .product-price {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--warm-terracotta);
  margin-bottom: 1rem;
}

.product-cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--warm-terracotta);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.product-cta:hover {
  color: var(--deep-slate);
  border-bottom-color: var(--dusk-blue);
}

.gear-disclosure {
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.75;
  padding: 2rem 0;
}

.gear-disclosure a {
  color: var(--warm-terracotta);
}

/* 7-Day Reset */
.reset-timeline {
  max-width: 36rem;
  margin: 0 auto;
  list-style: none;
}

.reset-day {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(216, 203, 184, 0.4);
}

.reset-day:last-child { border-bottom: none; }

.reset-day-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-green);
  color: var(--cloud-white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.reset-day-content h3 { margin-bottom: 0.5rem; }
.reset-day-content p { font-size: 0.9375rem; opacity: 0.85; margin: 0; }

/* Start Here FAQ (custom Q&A presentation) */
.start-here-faq {
  max-width: 42rem;
  margin: 0 auto;
}
.start-here-faq > h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.start-here-faq h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.25rem;
}
.start-here-faq p {
  margin-bottom: 0.75rem;
}

/* Philosophy page sections */
.philosophy-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.philosophy-section + .philosophy-section {
  border-top: 1px solid rgba(216, 203, 184, 0.3);
  padding-top: 3rem;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav-desktop { display: none; }
  .menu-toggle { display: block; }

  .hero { padding: 4rem 1.5rem 3rem; }

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

  .footer-bottom { flex-direction: column; text-align: center; }
}