/* ==========================================================================
   Danielle Lundquist — site styles
   Bright, sunflower-inspired palette. Built by Under the Cover Ink.
   ========================================================================== */

:root {
  --sun: #FFC634;
  --sun-dark: #F2A900;
  --petal-shadow: #E08E00;
  --leaf: #5FA84A;
  --leaf-dark: #3F7A34;
  --sky: #3FB6E8;
  --cream: #FFFBF1;
  --cream-deep: #FFF3D6;
  --white: #FFFFFF;
  --ink: #3B2E1E;
  --ink-soft: #6B5A44;
  --shadow: rgba(59, 46, 30, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a {
  color: var(--leaf-dark);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 6px 0 #2C8FBD;
}

.btn-primary:hover { box-shadow: 0 4px 0 #2C8FBD; }

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--shadow);
  border: 2px solid var(--sun);
}

.btn-secondary:hover { box-shadow: 0 4px 0 var(--shadow); }

.btn-lg { padding: 16px 34px; font-size: 1.15rem; }

/* ---------- header / nav ---------- */

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 10px var(--shadow);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}

.brand:hover { text-decoration: none; }

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

.brand-sub {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf-dark);
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--cream-deep);
  text-decoration: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--sun-dark);
  background: var(--white);
  border: 2px solid var(--sun);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 0.35em;
}

.hero h1 span { color: var(--sun-dark); }

.hero-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-collage img {
  border-radius: var(--radius);
  box-shadow: 0 12px 26px var(--shadow);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 6px solid var(--white);
}

.hero-collage .tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2.05;
}

/* ---------- section headings ---------- */

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--white);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-size: 2.1rem;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.kicker {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.85rem;
  color: var(--leaf-dark);
  margin-bottom: 8px;
}

/* ---------- category / product cards ---------- */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 22px var(--shadow);
  text-align: center;
  transition: transform 0.15s ease;
}

.category-card:hover { transform: translateY(-4px); }

.category-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.category-card .cc-body { padding: 18px 18px 22px; }

.category-card h3 { font-size: 1.25rem; margin-bottom: 6px; }

.category-card p { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }

.product-groups {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.product-group-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-group-head h2 {
  font-size: 1.7rem;
  margin: 0;
}

.product-group-head .divider {
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--sun) 0 10px, transparent 10px 18px);
  border-radius: 4px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 22px var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card .pc-icon {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.6rem;
  background: linear-gradient(135deg, var(--cream-deep) 0%, #FFE9B0 100%);
}

.category-card .cc-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--cream-deep) 0%, #FFE9B0 100%);
}

.product-card .pc-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 { font-size: 1.2rem; }

.product-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  flex: 1;
}

.tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--cream-deep);
  color: var(--leaf-dark);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- how it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 10px 22px var(--shadow);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 5px 0 var(--petal-shadow);
}

.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); margin-bottom: 0; font-size: 0.96rem; }

/* ---------- CTA banner ---------- */

.cta-band {
  background: var(--leaf);
  color: var(--white);
  text-align: center;
  padding: 54px 24px;
  border-radius: var(--radius);
  margin: 0 24px;
}

.cta-band h2 { color: var(--white); font-size: 2rem; }
.cta-band p { color: #EAF6E4; font-size: 1.1rem; max-width: 52ch; margin: 0 auto 24px; }

.cta-band .btn-primary {
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--petal-shadow);
}

/* ---------- about page ---------- */

.about-hero {
  padding: 56px 0 20px;
  text-align: center;
}

.about-hero .kicker { display: block; margin-bottom: 6px; }

.about-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.12rem;
}

.about-body p { margin-bottom: 1.2em; }

.pull-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px 0 46px;
}

.pull-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px var(--shadow);
  padding: 20px 24px;
  min-width: 150px;
  text-align: center;
}

.pull-card .num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--sun-dark);
}

.pull-card .label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.sunflower-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}

.sunflower-divider .line {
  height: 2px;
  width: 60px;
  background: var(--sun);
  border-radius: 4px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #F3E9D6;
  padding: 46px 0 26px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.site-footer h4 {
  color: var(--sun);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer a { color: #F3E9D6; }
.site-footer a:hover { color: var(--sun); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand svg { width: 32px; height: 32px; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
}

.messenger-btn:hover { text-decoration: none; opacity: 0.92; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 20px;
  text-align: center;
  font-size: 0.88rem;
  color: #C9BCA3;
}

.footer-bottom a { color: #F3E9D6; font-weight: 700; }

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-collage { order: -1; }
  .category-grid,
  .product-grid,
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2.1rem; }
  nav.main-nav ul { gap: 2px; }
  nav.main-nav a { padding: 8px 10px; font-size: 0.92rem; }
  .category-grid,
  .product-grid,
  .steps { grid-template-columns: 1fr; }
  .cta-band { margin: 0 12px; padding: 40px 18px; }
}
