/* ============================================
   SOW MOTION — Main Stylesheet
   Warm earthy organic aesthetic
   ============================================ */

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

:root {
  --cream:        #F8F4EC;
  --cream-warm:   #F2EBD9;
  --parchment:    #E8DFC8;
  --ink:          #1C1A14;
  --ink-muted:    #5C5645;
  --ink-faint:    #9C9079;
  --sage:         #6B7C5E;
  --sage-light:   #A8BC97;
  --sage-pale:    #E8EFDF;
  --earth:        #7A6245;
  --earth-light:  #B89E7A;
  --earth-pale:   #F0E8D8;
  --terracotta:   #C06B45;
  --terracotta-l: #E09070;
  --green-deep:   #3D5C35;
  --white:        #FDFAF5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1160px;
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* GRAIN */
.grain {
  position: fixed; inset: 0; z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }

em { font-style: italic; color: var(--earth); }

p { color: var(--ink-muted); font-weight: 300; line-height: 1.8; }

a { color: inherit; text-decoration: none; }

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

/* LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; }
.text-center { text-align: center; }
.section-pad { padding: 6rem 0; }
.bg-warm { background: var(--cream-warm); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.5rem; height: 1px;
  background: var(--sage);
  flex-shrink: 0;
}
.text-center .eyebrow { justify-content: center; }
.text-center .eyebrow::before { display: none; }

.section-intro {
  font-size: 1.05rem;
  max-width: 58ch;
  margin: 1.2rem auto 0;
  font-weight: 300;
  line-height: 1.85;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(192,107,69,0.28);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-primary:hover {
  background: #A85A35;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,107,69,0.35);
}
.btn-primary:active { transform: scale(0.98); }
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent;
  color: var(--ink);
  padding: 0.85rem 1.8rem;
  border-radius: 2rem;
  border: 1.5px solid var(--parchment);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--earth-light);
  background: var(--earth-pale);
  transform: translateY(-1px);
}

/* ============================================
   NAV
   ============================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 98, 69, 0.1);
  transition: box-shadow 0.3s;
}
#nav.scrolled {
  box-shadow: 0 2px 20px rgba(28, 26, 20, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  display: flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.02em;
}
.logo-leaf { color: var(--sage); font-size: 0.9rem; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--cream-warm);
}
.nav-links .nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
  font-weight: 500;
}
.nav-links .nav-cta:hover { background: #A85A35; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 2.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}

.hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 25vw, 22rem);
  font-weight: 600;
  color: var(--parchment);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
  z-index: 0;
  opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.hero-text .eyebrow { margin-bottom: 1.2rem; }

.hero-text h1 {
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}

/* Book mockup */
.hero-product {
  display: flex; justify-content: center; align-items: center;
}
.product-float {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  animation: floatSlow 5s ease-in-out infinite;
}
@keyframes floatSlow {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(0.8deg); }
}

.product-badge {
  position: absolute; top: -1.2rem; right: -1.5rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(192,107,69,0.35);
  z-index: 2;
}
.product-badge span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-mockup {
  display: flex; align-items: stretch;
  filter: drop-shadow(0 20px 40px rgba(28,26,20,0.2)) drop-shadow(0 4px 12px rgba(28,26,20,0.1));
}
.book-spine {
  width: 20px;
  background: linear-gradient(180deg, #4e6040 0%, #6B7C5E 50%, #8fa07e 100%);
  border-radius: 3px 0 0 3px;
  flex-shrink: 0;
}
.book-face { border-radius: 0 6px 6px 0; overflow: hidden; }
.book-cover-img {
  width: min(260px, 65vw);
  aspect-ratio: 7/9;
  object-fit: cover;
  display: block;
}

.product-tag {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 0.7rem 1.2rem;
  text-align: center;
}
.product-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.product-tag span {
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-weight: 300;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--sage);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0 2rem;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   FEATURED PRODUCT
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.featured-img-wrap {
  position: relative;
}
.featured-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--parchment);
}
.featured-img-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(122,98,69,0.08));
  z-index: 1;
}
.featured-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.featured-img-frame:hover .featured-img { transform: scale(1.02); }

.featured-stamp {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 110px; height: 110px;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.featured-text h2 { margin-bottom: 1.2rem; }
.featured-desc {
  margin-bottom: 1.8rem;
  font-size: 0.98rem;
  line-height: 1.85;
}

.feature-pills {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  background: var(--sage-pale);
  color: var(--green-deep);
  letter-spacing: 0.02em;
  border: 1px solid rgba(107,124,94,0.2);
}

.featured-price {
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: 1.8rem;
}
.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}
.price-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
  background: var(--earth-pale);
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
}

/* ============================================
   PILLARS
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,26,20,0.07);
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.pillar p { font-size: 0.9rem; }

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.email-capture {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.email-capture::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.capture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.capture-text .eyebrow { color: var(--sage-light); }
.capture-text .eyebrow::before { background: var(--sage-light); }
.capture-text h2 { color: var(--white); margin-bottom: 1rem; }
.capture-text h2 em { color: var(--sage-light); }
.capture-text p { color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

.capture-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.capture-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.capture-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.capture-form {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.capture-form label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.capture-form input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.capture-form input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,124,94,0.12);
}
.capture-form .btn-primary { margin-top: 0.8rem; }
.form-note {
  font-size: 0.75rem;
  text-align: center;
  color: var(--ink-faint);
  margin-top: 0.4rem;
}

.capture-success { text-align: center; padding: 1rem 0; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.capture-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.capture-success p { color: var(--ink-muted); font-size: 0.9rem; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.section-header-row h2 { margin: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--parchment);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(28,26,20,0.08);
}
.blog-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.bg-sage { background: linear-gradient(135deg, var(--sage-pale), #D4E8C4); }
.bg-earth { background: linear-gradient(135deg, var(--earth-pale), #E8D5B0); }
.bg-green { background: linear-gradient(135deg, #E0EED8, var(--sage-pale)); }

.blog-card-body { padding: 1.5rem; }
.blog-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.6rem;
  display: block;
}
.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.blog-card h3 a { color: var(--ink); transition: color 0.2s; }
.blog-card h3 a:hover { color: var(--terracotta); }
.blog-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.read-more {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}
.read-more:hover { text-decoration: underline; }

/* ============================================
   INSTAGRAM CTA
   ============================================ */
.instagram-cta { background: var(--cream); }
.instagram-cta .section-intro { margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
  margin-bottom: 1.2rem;
}
.footer-ig {
  font-size: 0.8rem;
  color: var(--sage-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--white); }

.footer-links h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-newsletter h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2rem;
  overflow: hidden;
}
.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-form button {
  background: var(--terracotta);
  border: none;
  color: var(--white);
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}
.footer-form button:hover { background: #A85A35; }

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 2rem 4rem;
  text-align: center;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--parchment);
}
.page-header h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin-bottom: 0.8rem; }
.page-header p { max-width: 52ch; margin: 0 auto; font-size: 1.02rem; }

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28,26,20,0.1);
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-warm);
  display: flex; align-items: center; justify-content: center;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img .product-emoji { font-size: 4rem; }
.product-card-body { padding: 1.4rem; }
.product-card-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.product-card-body p { font-size: 0.88rem; margin-bottom: 1rem; }
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
}
.product-card-price .was {
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-right: 0.4rem;
}
.btn-small {
  font-size: 0.8rem;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  background: var(--terracotta);
  color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-small:hover { background: #A85A35; }
.badge-featured {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 0.6rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ============================================
   BLOG POST CONTENT
   ============================================ */
.blog-post-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 2.5rem 0 1rem;
}
.blog-post-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin: 2rem 0 0.8rem;
}
.blog-post-content p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.blog-post-content ul,
.blog-post-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--ink-muted);
  font-weight: 300;
  line-height: 1.8;
}
.blog-post-content li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}
.blog-post-content strong {
  font-weight: 500;
  color: var(--ink);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-warm);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.88rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; font-size: 0.95rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.contact-link span:first-child { font-size: 1.2rem; }

.contact-form { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-form label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.4rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--parchment);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,124,94,0.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form .btn-primary { margin-top: 0.5rem; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .featured-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 1.5rem 2rem 2rem;
    gap: 0.3rem;
    border-bottom: 1px solid var(--parchment);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0.5rem; font-size: 1rem; }
  .nav-links .nav-cta { text-align: center; margin: 0.5rem 0 0; }
  .nav-toggle { display: flex; }

  .hero { padding: calc(var(--nav-h) + 2.5rem) 1.5rem 4rem; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-bg-text { display: none; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-scroll { display: none; }
  .hero-product { order: -1; }
  .product-float { align-items: center; }

  .featured-grid { grid-template-columns: 1fr; gap: 3rem; }
  .featured-stamp { bottom: -1rem; right: -0.5rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .capture-inner { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }

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

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
  .section-pad { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  h2 { font-size: 1.9rem; }
  .blog-list { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
}
