/* ════════════════════════════════════════════════════════════════════
   COASTAL MORNING — design system
   Navy #221C12 · Sky #9B6B2F · Light #FFFBEF
════════════════════════════════════════════════════════════════════ */

/* ── Shared design tokens ── */
:root {
  --bg:         #FFFBEF;
  --bg-alt:     #F5E9CC;
  --white:      #FFFFFF;
  --accent:     #9B6B2F;
  --dark:       #221C12;
  --text:       #2D2417;
  --text-muted: #6F6249;
  --border:     #C6B89D;
  --shadow-sm:  0 2px 12px rgba(34,28,18,0.07);
  --shadow-md:  0 8px 32px rgba(34,28,18,0.12);
  --radius:     12px;
  --radius-lg:  20px;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max-w:      1140px;
  --max-text:   660px;
}

/* ── Header ── */
.site-header {
  background: #F8F1E7 !important;
  border-bottom-color: #C6B89D !important;
}
.nav-cta { background: #221C12 !important; border-radius: 50px !important; }
.nav-cta:hover { background: #0F0A05 !important; opacity: 1 !important; }

/* ── Slogan ── */
.slogan-section {
  background: linear-gradient(180deg, #FFFDF7 0%, #FFFDF7 60%, #FFFDF7 100%);
  border-top: 1px solid rgba(155,107,47,0.18);
  border-bottom-color: transparent;
  position: relative;
}
/* Hair-thin accent gleam across the join */
.slogan-section::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(155,107,47,0.45) 50%, transparent 90%);
  pointer-events: none;
}
.slogan-section::before { background: radial-gradient(ellipse, #9B6B2F 0%, transparent 70%); }
.slogan-words .sw { font-family: 'DM Sans', system-ui, sans-serif; font-weight: 300; color: #221C12; }
.slogan-words .sw::after { color: #9B6B2F; }
.slogan-desc { color: #6F6249; margin-top: 1.75rem; text-align: center; }

/* ── Hero ── */
.site-hero { background: #FFFDF7; }
.site-hero::before { background: radial-gradient(ellipse, #9B6B2F 0%, transparent 70%); }
.eyebrow-pill {
  background: rgba(155,107,47,0.08);
  border-color: rgba(155,107,47,0.22);
  color: #7A4F1F;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  padding: 0.42rem 1rem;
  position: relative;
}
.eyebrow-pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #9B6B2F;
  border-radius: 50%;
  margin-right: 0.55rem;
  box-shadow: 0 0 0 3px rgba(155,107,47,0.18);
}
.hero-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  color: #221C12;
  font-size: clamp(2.1rem, 4.4vw, 3.75rem);
  line-height: 1.05;
}
.hero-title em {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #7A4F1F;
}
.hero-img-outer::before {
  background: radial-gradient(closest-side, rgba(155,107,47,0.22), rgba(155,107,47,0.04) 65%, transparent 80%);
  opacity: 1;
  width: 440px;
  height: 440px;
  filter: blur(6px);
}
.hero-img-wrap {
  border-radius: 48% 52% 55% 45% / 52% 58% 42% 48%;
  box-shadow: 0 32px 60px -10px rgba(34,28,18,0.22),
              0 0 0 1px rgba(255,255,255,0.6) inset,
              0 0 0 10px rgba(255,255,255,0.7),
              0 0 0 11px rgba(155,107,47,0.28),
              0 0 0 22px rgba(155,107,47,0.07);
}
.hero-link { color: #221C12; }
.btn, a.btn {
  background: linear-gradient(180deg, #3A2D1E 0%, #221C12 100%);
  border-radius: 50px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 0 0 1px rgba(34,28,18,0.6),
    0 6px 20px -4px rgba(34,28,18,0.32);
  transition: background 0.25s ease, transform 0.18s cubic-bezier(.2,.7,.3,1), box-shadow 0.25s ease !important;
}
.btn:hover, a.btn:hover {
  background: linear-gradient(180deg, #4A3A26 0%, #0F0A05 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(34,28,18,0.7),
    0 14px 32px -8px rgba(34,28,18,0.45);
}
.btn:active, a.btn:active { transform: translateY(0); transition-duration: 0.05s; }
.btn:focus-visible, a.btn:focus-visible {
  outline: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(34,28,18,0.6),
    0 0 0 4px rgba(155,107,47,0.45);
}
.hero-link:focus-visible {
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(155,107,47,0.7);
}

/* ── Cards / Sections ── */
/* Scoped to grid pillars only — carousel pillars stay transparent. */
.post-card, .step, .pillars-grid .pillar {
  border-top: 3px solid #9B6B2F;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step-num { color: #9B6B2F; }
.read-more { color: #221C12; }
.read-more::after { background: #221C12; }
.team-photo-overlay { background: rgba(34,28,18,0.55); }
.section-heading { color: #221C12; }
.section-eyebrow { color: #9B6B2F; }
.page-hero { background: #FFFDF7; }
.page-hero + .section { background: #FFFDF7; }
.page-title { color: #221C12; }
.site-footer { background: #F8F1E7; border-top: 1px solid #C6B89D; color: #221C12; }
.footer-inner a { color: #6F6249; }
.footer-inner a:hover { color: #221C12; }
.footer-copy { color: #9C8B6D; }


/* ── Logo — Wide Light ───────────────────────────────────────────
   DM Sans 300, ultra-spaced uppercase
─────────────────────────────────────────────────────────────────── */
.logo-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.05rem;
  letter-spacing: 0.38em;
  color: #5D6282;
  text-transform: uppercase;
}
.logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  color: #5D6282;
  text-transform: uppercase;
}


