/* ============================================================
   Crystal & Linen Co. — Brand-Forward Landing Page
   Faith · Health · Serenity · Intentional Living
   ============================================================ */

:root {
  --linen:       #F5F0E8;
  --linen-dark:  #EAE4D8;
  --sage:        #8B9A6F;
  --sage-light:  #A8B89A;
  --sage-dark:   #6E7E56;
  --terracotta:  #C4836A;
  --stone:       #A89F91;
  --charcoal:    #2C2C2C;
  --warm-white:  #FDFAF7;
  --cream:       #FAF8F3;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;

  --max-w:       1120px;
  --shadow-sm:   0 1px 4px rgba(44,44,44,0.06);
  --shadow-md:   0 4px 20px rgba(44,44,44,0.09);
  --shadow-lg:   0 12px 40px rgba(44,44,44,0.13);
  --shadow-xl:   0 20px 60px rgba(44,44,44,0.16);

  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

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

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

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--linen); }
::-webkit-scrollbar-thumb  { background: var(--sage-light); border-radius: 3px; }

::selection { background: var(--sage-light); color: white; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-sage {
  background: var(--sage);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-sage:hover { background: var(--sage-dark); box-shadow: var(--shadow-md); }

.btn-tiktok {
  background: #1a1a1a;
  color: white;
}
.btn-tiktok:hover { background: #2d2d2d; }

.btn-shop {
  background: var(--charcoal);
  color: white;
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
  padding: 11px 16px;
}
.btn-shop:hover { background: var(--sage-dark); }

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Section label ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.section-label-alt { color: var(--sage-light); }

/* ============================================================ */
/*  NAVIGATION                                                    */
/* ============================================================ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 32px;
}

.site-nav.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-link:hover { color: white; }

.scrolled .nav-link { color: var(--stone); }
.scrolled .nav-link:hover { color: var(--charcoal); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s var(--ease-spring);
}
.nav-cta:hover { background: rgba(255,255,255,0.28); transform: translateY(-1px); }

.scrolled .nav-cta {
  background: var(--charcoal);
  color: white;
  border-color: var(--charcoal);
}
.scrolled .nav-cta:hover { background: var(--sage); border-color: var(--sage); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.scrolled .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-top: 1px solid var(--linen-dark);
}
.nav-mobile-menu.open { display: flex; }

.nav-mobile-link {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  border-bottom: 1px solid var(--linen-dark);
}
.nav-mobile-tiktok {
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage);
}

/* ============================================================ */
/*  HERO                                                         */
/* ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 20, 15, 0.78) 0%,
    rgba(25, 20, 15, 0.42) 45%,
    rgba(25, 20, 15, 0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 500;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
}

.hero-pillar-tag {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}

.hero-pillar-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ============================================================ */
/*  MISSION                                                      */
/* ============================================================ */

.mission-section {
  background: var(--linen);
  padding: 100px 40px;
  text-align: center;
}

.mission-inner {
  max-width: 680px;
  margin: 0 auto;
}

.mission-ornament {
  margin-bottom: 24px;
  opacity: 0.7;
}

.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}

.mission-body {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
  border: none;
  margin-top: 32px;
  padding: 0;
  line-height: 1.5;
}

/* ============================================================ */
/*  PILLARS                                                      */
/* ============================================================ */

.pillars-section {
  background: var(--warm-white);
  padding: 96px 40px;
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.pillars-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  line-height: 1.2;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease-spring), box-shadow 0.22s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--linen-dark);
}

.pillar-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pillar-card:hover .pillar-img-wrap img {
  transform: scale(1.05);
}

.pillar-content {
  padding: 22px 20px;
  text-align: left;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ============================================================ */
/*  PRODUCT SECTIONS                                             */
/* ============================================================ */

.product-section {
  background: var(--cream);
  padding: 96px 40px;
}

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

.product-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.product-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.product-sub {
  font-size: 1rem;
  color: var(--stone);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

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

.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--linen-dark);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-price {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 4px;
}

/* ============================================================ */
/*  TIKTOK SECTION                                               */
/* ============================================================ */

.tiktok-section {
  background: var(--charcoal);
  padding: 96px 40px;
  text-align: center;
}

.tiktok-inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.tiktok-icon {
  color: var(--sage-light);
  opacity: 0.75;
  margin-bottom: 8px;
}

.tiktok-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tiktok-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 420px;
}

.tiktok-sub strong { color: rgba(255,255,255,0.85); }

/* ============================================================ */
/*  EMAIL                                                        */
/* ============================================================ */

.email-section {
  background: var(--sage-dark);
  padding: 80px 40px;
}

.email-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.email-text {
  flex: 1;
  min-width: 260px;
}

.email-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.email-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 360px;
}

.email-form {
  flex: 1;
  min-width: 300px;
}

.email-field-row {
  display: flex;
  gap: 10px;
}

.email-field-row input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.email-field-row input::placeholder { color: rgba(255,255,255,0.4); }
.email-field-row input:focus {
  border-color: var(--sage-light);
  background: rgba(255,255,255,0.15);
}

.email-form .btn-sage {
  flex-shrink: 0;
  background: white;
  color: var(--sage-dark);
}
.email-form .btn-sage:hover { background: var(--linen); }

.email-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}

.email-success {
  font-size: 0.9rem;
  color: white;
  margin-top: 10px;
  font-weight: 500;
}

.email-error {
  font-size: 0.85rem;
  color: #f0a898;
  margin-top: 8px;
}

/* ============================================================ */
/*  FOOTER                                                       */
/* ============================================================ */

.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-disclosure {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclosure p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
}

/* ============================================================ */
/*  EVENT PLANNING                                               */
/* ============================================================ */

.planning-section {
  background: var(--linen);
  padding: 100px 40px;
}

.planning-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.planning-header {
  text-align: center;
  margin-bottom: 56px;
}

.planning-ornament {
  margin-bottom: 20px;
  opacity: 0.8;
}

.planning-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.planning-sub {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.planning-hero-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
  aspect-ratio: 16/6;
}

.planning-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.planning-hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(to top, rgba(25,20,15,0.72) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.planning-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease-spring), box-shadow 0.22s ease;
}

.planning-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.planning-card-large {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.planning-card-large .planning-card-header {
  padding: 36px 32px;
}

.planning-card-large .planning-card-header::after {
  display: none;
}

.planning-card-header {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 18px;
}

.planning-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--linen-dark);
}

.planning-tier-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.planning-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.planning-card-tagline {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.5;
  font-style: italic;
}

.planning-card-desc {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 20px;
}

.planning-inventory {
  margin-bottom: 20px;
  flex: 1;
}

.planning-inventory-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.planning-inventory-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.planning-inventory-list li {
  font-size: 0.82rem;
  color: var(--stone);
  padding: 6px 0;
  border-bottom: 1px solid var(--linen-dark);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.planning-inventory-list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--sage);
  font-size: 1.1rem;
  line-height: 1.4;
}

.planning-inventory-list li:last-child {
  border-bottom: none;
}

.planning-card-zen {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--linen-dark);
}

.planning-card-large .planning-inventory {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid var(--linen-dark);
}

.planning-card-large .planning-inventory-col {
  padding: 24px 28px;
  border-right: 1px solid var(--linen-dark);
}

.planning-card-large .planning-inventory-col:last-child {
  border-right: none;
}

.planning-card-large .planning-inventory-list li {
  font-size: 0.8rem;
}

.planning-col {
  padding: 32px 28px;
  border-right: 1px solid var(--linen-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.planning-col:last-child {
  border-right: none;
}

.planning-col-zen {
  border-top: 1px solid var(--linen-dark);
  grid-column: 1 / -1;
  border-right: none;
  border-top: 1px solid var(--linen-dark);
  padding-top: 28px;
  padding-bottom: 0;
}

.planning-cta-row {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.planning-cta-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 32px;
}

.planning-email-form {
  max-width: 480px;
  margin: 0 auto;
}

.planning-email-field-row {
  display: flex;
  gap: 10px;
}

.planning-email-field-row input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--linen-dark);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.planning-email-field-row input::placeholder { color: var(--stone); }
.planning-email-field-row input:focus { border-color: var(--sage); }

.btn-planning {
  background: var(--sage);
  color: white;
  flex-shrink: 0;
}
.btn-planning:hover { background: var(--sage-dark); }

.planning-email-disclaimer {
  font-size: 0.78rem;
  color: var(--stone);
  margin-top: 10px;
}

.planning-email-success {
  font-size: 0.9rem;
  color: var(--sage-dark);
  margin-top: 10px;
  font-weight: 500;
}

.planning-email-error {
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-top: 8px;
}

/* ============================================================ */
/*  RESPONSIVE                                                   */
/* ============================================================ */

@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-card-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .planning-card-large .planning-card-header { padding: 28px 28px 24px; }
  .planning-card-large .planning-inventory {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 0 24px; }

  .mission-section, .pillars-section,
  .product-section, .planning-section,
  .tiktok-section, .email-section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .mission-section { padding-top: 72px; padding-bottom: 72px; }
  .pillars-section { padding-top: 72px; padding-bottom: 72px; }
  .product-section { padding-top: 72px; padding-bottom: 72px; }
  .planning-section { padding-top: 72px; padding-bottom: 72px; }
  .email-section { padding-top: 64px; padding-bottom: 64px; }

  .email-inner { gap: 32px; }
  .email-form { min-width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .site-nav { padding: 0 20px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.6rem; }
  .hero-sub { font-size: 0.98rem; }

  .pillars-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .planning-grid { grid-template-columns: 1fr; }
  .planning-card-large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .planning-card-large .planning-inventory { grid-template-columns: 1fr; }
  .planning-col { border-right: none; border-bottom: 1px solid var(--linen-dark); }
  .planning-col:last-child { border-bottom: none; }
  .planning-email-field-row { flex-direction: column; }
  .planning-email-field-row .btn { width: 100%; justify-content: center; }

  .email-field-row { flex-direction: column; }
  .email-field-row .btn { width: 100%; justify-content: center; }

  .hero-pillars { display: none; }
}