/* ========================================
   The Stroll Co. — Shared Stylesheet
======================================== */

:root {
  --cream: #F4EFE6;
  --bone: #EDE6D8;
  --sage: #8FA68E;
  --sage-deep: #6B8270;
  --sand: #D4C5A9;
  --charcoal: #2D2A26;
  --terracotta: #C97B5A;
  --mustard: #D4A574;
  --coral: #E8956B;
  --sky: #7FA9C7;
  --lavender: #A892B8;
  --text-muted: #6b6660;
  --text-soft: #3a3631;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== NAVIGATION ========== */
.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(45,42,38,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(244, 239, 230, 0.92);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.nav-logo .wheel-mini { width: 24px; height: 24px; margin: 0 1px; }
.nav-logo .co { font-style: italic; font-weight: 400; margin-left: 5px; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-cta:hover { background: #1a1815; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px 20px;
    gap: 18px;
    border-bottom: 1px solid rgba(45,42,38,0.08);
  }
  .mobile-toggle { display: block; }
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ========== HEADINGS ========== */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: 'Fraunces', serif;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.1;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 300;
  color: var(--terracotta);
}

/* ========== HERO ========== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 540px;
  margin: 0 auto 36px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover { background: #1a1815; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--charcoal) !important;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(45,42,38,0.05); }

/* Rainbow accent bar */
.rainbow-bar {
  height: 6px;
  background: linear-gradient(to right, var(--terracotta), var(--coral), var(--mustard), var(--sage), var(--sky), var(--lavender));
  opacity: 0.9;
}
.rainbow-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0;
}
.rainbow-divider span {
  width: 36px;
  height: 4px;
  border-radius: 2px;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
}
.section-tight { padding: 56px 0; }
.section.alt { background: var(--bone); }
.section.dark {
  background: var(--charcoal);
  color: var(--cream);
}
.section.dark h2, .section.dark h3 { color: var(--cream); }
.section.dark .eyebrow { color: var(--sand); }
.section.dark p { color: var(--sand); }
.section h2 {
  font-size: clamp(30px, 4.5vw, 44px);
  margin-bottom: 24px;
}
.section-intro {
  max-width: 640px;
  font-size: 16px;
  color: var(--text-soft);
  line-height: 1.75;
}
.section.dark .section-intro { color: var(--sand); }
.section-header {
  margin-bottom: 48px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-intro { margin: 0 auto; }

/* ========== CARDS / GRIDS ========== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(45,42,38,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(45,42,38,0.08); }
.card-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  color: white;
  font-weight: 500;
}
.card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.footer-brand .co { font-style: italic; font-weight: 400; }
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--coral);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 13.5px;
  color: var(--sand);
  line-height: 1.7;
  max-width: 320px;
}
.footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 13.5px;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,230,0.1);
  font-size: 12px;
  color: var(--sand);
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== FORMS ========== */
.form-row {
  margin-bottom: 20px;
}
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row.two-col { grid-template-columns: 1fr; }
}
.form-row label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: white;
  border: 1px solid rgba(45,42,38,0.12);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--charcoal);
  transition: border 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--sage);
}
.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Logo wheel SVG reuse — sized via parent */
.wheel-logo { display: inline-block; vertical-align: middle; }
