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

:root {
  --green-dark: #2C3B1A;
  --green-mid: #3D5226;
  --green-light: #5B7A3A;
  --gold: #C8871A;
  --gold-light: #E8A830;
  --gold-pale: #F5D98A;
  --cream: #FAF6EC;
  --cream-dark: #F0E8D0;
  --text-dark: #1A1A14;
  --text-mid: #3A3A2A;
  --text-muted: #6B6B50;
  --white: #FFFFFF;
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 2px solid var(--gold);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-badge {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
}

.nav-logo-text span:last-child {
  font-size: 10px;
  font-weight: 300;
  color: rgba(245,217,138,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-pale); }
.nav-links a.active::after { transform: scaleX(1); }

/* Home */
.home .hero {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.home .hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.home .hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home .hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.home .hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.home .hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.home .hero-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 48px;
}

.home .hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home .btn-primary {
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, color 0.25s;
}

.home .btn-primary:hover {
  background: var(--green-mid);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  padding: 16px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--gold-pale);
}

.home .hero-right {
  position: relative;
  background: var(--green-dark);
  overflow: hidden;
}

.home .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}

.home .hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,59,26,0.6) 0%, rgba(200,135,26,0.3) 100%);
}

.home .hero-float-card {
  position: absolute;
  bottom: 48px;
  left: -32px;
  background: var(--white);
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  max-width: 240px;
}

.home .hero-float-card .stat {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.home .hero-float-card .stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.home .products {
  background: var(--white);
  padding: 80px 80px;
}

.home .section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
}

.home .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

.home .section-header .divider {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.home .tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home .tile {
  background: var(--cream);
  padding: 40px 32px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.home .tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.home .tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold-pale);
}

.home .tile:hover::before { transform: scaleX(1); }

.home .tile-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.home .tile h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.home .tile p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.home .tile-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.25s;
}

.home .tile:hover .tile-arrow { opacity: 1; }

.home .why {
  background: var(--green-dark);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home .why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.home .why-left h2 em {
  font-style: italic;
  color: var(--gold);
}

.home .why-left p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(250,246,236,0.7);
  max-width: 380px;
}

.home .why-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.home .why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.home .why-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.home .why-content h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 8px;
}

.home .why-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,246,236,0.6);
}

.home footer {
  background: var(--text-dark);
  padding: 72px 80px 40px;
}

.home .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.home .footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 12px;
}

.home .footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 28px;
}

.home .newsletter-row {
  display: flex;
  gap: 0;
}

.home .newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--white);
  outline: none;
}

.home .newsletter-row input::placeholder {
  color: rgba(255,255,255,0.3);
}

.home .newsletter-row button {
  background: var(--gold);
  border: none;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.home .newsletter-row button:hover { background: var(--gold-light); }

.home .footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.home .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.home .footer-col a:hover { color: var(--gold-pale); }

.home .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home .footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.home .footer-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,135,26,0.5);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.home .hero-left > * {
  animation: fadeUp 0.7s ease both;
}

.home .hero-eyebrow { animation-delay: 0.1s; }
.home .hero h1 { animation-delay: 0.2s; }
.home .hero-sub { animation-delay: 0.35s; }
.home .hero-ctas { animation-delay: 0.5s; }

/* Contact */
.contact-page .contact-main {
  margin-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
}

.contact-page .contact-left {
  background: var(--green-dark);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-page .contact-left::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200,135,26,0.12);
}

.contact-page .contact-left .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-page .contact-left .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.contact-page .contact-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-page .contact-left h1 em {
  font-style: italic;
  color: var(--gold);
}

.contact-page .contact-left > p,
.contact-page .contact-left div > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,246,236,0.65);
  max-width: 380px;
}

.contact-page .contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
}

.contact-page .contact-item h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,217,138,0.5);
  margin-bottom: 6px;
}

.contact-page .contact-item p,
.contact-page .contact-item a {
  font-size: 15px;
  color: rgba(250,246,236,0.8);
  text-decoration: none;
}

.contact-page .contact-item a:hover { color: var(--gold-pale); }

.contact-page .contact-right {
  background: var(--white);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-page .contact-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-page .contact-right .sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.contact-page .form-field { margin-bottom: 20px; }

.contact-page label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea,
.contact-page select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact-page input:focus,
.contact-page textarea:focus,
.contact-page select:focus {
  border-color: var(--gold);
  background: var(--white);
}

.contact-page textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-page .form-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.contact-page .form-submit:hover { background: var(--green-mid); }
.contact-page .form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-page .contact-status {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.contact-page .contact-status--success {
  background: #edf7ed;
  border: 1px solid #a3d9a5;
  color: #2e6b30;
}
.contact-page .contact-status--error {
  background: #fdf2f2;
  border: 1px solid #f0b8b8;
  color: #8b2020;
}

.contact-page footer {
  background: var(--text-dark);
  padding: 40px 80px;
}

.contact-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-page .footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.contact-page .footer-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,135,26,0.5);
}

/* Shop */
.shop-page .page-header {
  margin-top: var(--nav-h);
  background: var(--green-dark);
  padding: 64px 80px 56px;
  position: relative;
  overflow: hidden;
}

.shop-page .page-header::after {
  content: 'SHOP';
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 140px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.shop-page .page-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.shop-page .page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--cream);
}

.shop-page .shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  min-height: 80vh;
}

.shop-page .sidebar {
  background: var(--white);
  border-right: 1px solid var(--cream-dark);
  padding: 40px 28px;
  position: sticky;
  top: var(--nav-h);
  align-self: start;
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}

.shop-page .sidebar h3 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.shop-page .filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}

.shop-page .filter-list li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.shop-page .filter-list li a:hover,
.shop-page .filter-list li a.active {
  background: var(--cream);
  color: var(--green-dark);
  font-weight: 500;
}

.shop-page .filter-list li a.active {
  border-left: 3px solid var(--gold);
  padding-left: 9px;
}

.shop-page .products-area { padding: 40px 48px; }

.shop-page .products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.shop-page .products-count {
  font-size: 13px;
  color: var(--text-muted);
}

.shop-page .products-sort {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  padding: 8px 14px;
  color: var(--text-mid);
  outline: none;
  cursor: pointer;
}

.shop-page .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.shop-page .product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.shop-page .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.shop-page .product-image {
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.shop-page .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
}

.shop-page .product-body { padding: 20px 20px 24px; }
.shop-page .product-category { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.shop-page .product-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.shop-page .product-desc { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin-bottom: 16px; }
.shop-page .product-footer { display: flex; justify-content: space-between; align-items: center; }
.shop-page .product-price { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); }
.shop-page .product-size { font-size: 11px; color: var(--text-muted); }

.shop-page .add-btn {
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.shop-page .add-btn:hover { background: var(--green-mid); }

.shop-page .category-label {
  grid-column: 1 / -1;
  padding: 12px 0 4px;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 8px;
}

.shop-page .category-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.shop-page footer {
  background: var(--text-dark);
  padding: 60px 80px 40px;
}

.shop-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.shop-page .footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.shop-page .footer-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,135,26,0.5);
}

/* Story */
.story-page .story-hero {
  margin-top: var(--nav-h);
  background: var(--green-dark);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story-page .story-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(200,135,26,0.15);
}

.story-page .story-hero::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(200,135,26,0.1);
}

.story-page .story-hero-text .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.story-page .story-hero-text .eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.story-page .story-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}

.story-page .story-hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}

.story-page .story-hero-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,246,236,0.7);
}

.story-page .story-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.story-page .stat-block {
  background: rgba(255,255,255,0.05);
  padding: 36px 28px;
  border: 1px solid rgba(200,135,26,0.2);
}

.story-page .stat-block .num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.story-page .stat-block .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,236,0.5);
}

.story-page .story-body {
  padding: 96px 80px;
  background: var(--white);
}

.story-page .story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-page .story-cols h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.story-page .story-cols h2 em {
  font-style: italic;
  color: var(--gold);
}

.story-page .story-cols p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.story-page .story-cols p:last-child { margin-bottom: 0; }

.story-page .process {
  background: var(--cream);
  padding: 96px 80px;
}

.story-page .process-header {
  text-align: center;
  margin-bottom: 64px;
}

.story-page .process-header .eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.story-page .process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
}

.story-page .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.story-page .step {
  background: var(--white);
  padding: 40px 28px;
  border: 1px solid var(--cream-dark);
  position: relative;
}

.story-page .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.story-page .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
}

.story-page .step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.story-page .step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.story-page .standards {
  background: var(--green-dark);
  padding: 96px 80px;
}

.story-page .standards h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 48px;
  text-align: center;
}

.story-page .standards h2 em {
  font-style: italic;
  color: var(--gold);
}

.story-page .standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-page .standard-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,135,26,0.25);
  padding: 40px 32px;
  transition: background 0.25s;
}

.story-page .standard-card:hover { background: rgba(255,255,255,0.1); }
.story-page .standard-icon { font-size: 36px; margin-bottom: 20px; }
.story-page .standard-card h4 { font-size: 14px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 12px; }
.story-page .standard-card p { font-size: 14px; line-height: 1.75; color: rgba(250,246,236,0.6); }

.story-page .story-cta {
  background: var(--cream-dark);
  padding: 80px;
  text-align: center;
}

.story-page .story-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.story-page .story-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.story-page .btn-primary {
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 18px 48px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s;
}

.story-page .btn-primary:hover { background: var(--green-mid); }

.story-page footer {
  background: var(--text-dark);
  padding: 40px 80px;
}

.story-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-page .footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.story-page .footer-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,135,26,0.5);
}

/* Wholesale */
.wholesale-page .page-header {
  margin-top: var(--nav-h);
  background: var(--green-dark);
  padding: 64px 80px 56px;
  position: relative;
  overflow: hidden;
}

.wholesale-page .page-header::after {
  content: attr(data-text);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.wholesale-page .page-header .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.wholesale-page .page-header h1 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--cream); }
.wholesale-page .page-header p { font-size: 17px; font-weight: 300; color: rgba(250,246,236,0.65); margin-top: 12px; max-width: 560px; }

.wholesale-page .wholesale-body { padding: 80px 80px; background: var(--white); }
.wholesale-page .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.wholesale-page .wholesale-body h2 { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.wholesale-page .wholesale-body h2 em { font-style: italic; color: var(--gold); }
.wholesale-page .wholesale-body p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; }

.wholesale-page .tier-cards { display: flex; flex-direction: column; gap: 16px; }
.wholesale-page .tier {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 28px 28px;
  border-left: 4px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wholesale-page .tier-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); }
.wholesale-page .tier-qty { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.wholesale-page .tier-discount { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: var(--gold); }

.wholesale-page .form-section { background: var(--cream); padding: 80px 80px; }
.wholesale-page .form-section h2 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.wholesale-page .form-section .sub { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.wholesale-page .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; }
.wholesale-page .form-full { grid-column: 1 / -1; }
.wholesale-page label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.wholesale-page input[type="text"],
.wholesale-page input[type="email"],
.wholesale-page input[type="tel"],
.wholesale-page textarea,
.wholesale-page select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.wholesale-page input:focus,
.wholesale-page textarea:focus,
.wholesale-page select:focus { border-color: var(--gold); }
.wholesale-page textarea { min-height: 120px; resize: vertical; }
.wholesale-page .form-submit {
  margin-top: 8px;
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 16px 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.wholesale-page .form-submit:hover { background: var(--green-mid); }

.wholesale-page footer { background: var(--text-dark); padding: 40px 80px; }
.wholesale-page .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.wholesale-page .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.wholesale-page .footer-tagline { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(200,135,26,0.5); }

/* Blog index */
.blog-page .blog-header {
  margin-top: var(--nav-h);
  background: linear-gradient(135deg, var(--green-dark) 0%, #42592A 55%, var(--gold) 100%);
  padding: 84px 80px 72px;
  position: relative;
  overflow: hidden;
}

.blog-page .blog-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,236,0.14);
}

.blog-page .blog-header-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.blog-page .eyebrow,
.blog-post-page .blog-post-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.blog-page .blog-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  margin: 18px 0 18px;
}

.blog-page .blog-header-copy {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(250,246,236,0.8);
  max-width: 620px;
}

.blog-page .blog-main,
.blog-post-page .blog-post-main {
  padding: 72px 80px 88px;
}

.blog-page .blog-section-header,
.blog-post-page .blog-section-header {
  margin-bottom: 28px;
}

.blog-page .blog-featured-wrap {
  margin-bottom: 64px;
}

.blog-loading-card,
.blog-empty,
.blog-status {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 22px 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-page .blog-featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}

.blog-page .blog-featured-media {
  min-height: 360px;
}

.blog-page .blog-featured-image,
.blog-post-page .blog-post-image,
.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-page .blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.blog-page .blog-featured-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  line-height: 1.15;
  color: var(--text-dark);
}

.blog-page .blog-card-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-card-meta,
.blog-post-page .blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.blog-page .btn-primary {
  background: var(--green-dark);
  color: var(--gold-pale);
  border: none;
  padding: 16px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.blog-page .btn-primary:hover { background: var(--green-mid); }

.blog-page .blog-grid,
.blog-post-page .related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-media-link {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--cream-dark);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.2;
}

.blog-card h3 a,
.blog-read-more,
.blog-post-page .blog-back-link {
  color: inherit;
  text-decoration: none;
}

.blog-card p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 14px;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.blog-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}

.blog-page .blog-pagination {
  margin-top: 28px;
}

.blog-page-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  color: var(--text-dark);
  font-size: 13px;
}

.blog-page-chip.active {
  background: var(--green-dark);
  color: var(--gold-pale);
  border-color: var(--green-dark);
}

.blog-page footer,
.blog-post-page footer {
  background: var(--text-dark);
  padding: 40px 80px;
}

.blog-page .blog-footer-bottom,
.blog-post-page .blog-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-page .blog-footer-bottom p,
.blog-post-page .blog-footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Blog post */
.blog-post-page .blog-post-shell {
  max-width: 1080px;
  margin: calc(var(--nav-h) + 24px) auto 0;
}

.blog-post-page .blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.blog-post-page .blog-post-status {
  margin-bottom: 24px;
}

.blog-post-page .blog-post-article {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 32px;
}

.blog-post-page .blog-post-hero {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  margin-bottom: 28px;
}

.blog-post-page .blog-post-meta {
  margin-bottom: 18px;
}

.blog-post-page .blog-post-kicker {
  color: var(--gold);
}

.blog-post-page .blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.blog-post-page .blog-post-excerpt {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 840px;
}

.blog-post-page .blog-post-story {
  max-width: 760px;
}

.blog-post-page .blog-post-story h1,
.blog-post-page .blog-post-story h2,
.blog-post-page .blog-post-story h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin: 30px 0 14px;
}

.blog-post-page .blog-post-story h1 { font-size: 36px; }
.blog-post-page .blog-post-story h2 { font-size: 30px; }
.blog-post-page .blog-post-story h3 { font-size: 24px; }

.blog-post-page .blog-post-story p,
.blog-post-page .blog-post-story li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-mid);
}

.blog-post-page .blog-post-story ul {
  padding-left: 22px;
  margin: 16px 0;
}

.blog-post-page .related-posts {
  margin-top: 48px;
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 16px; }

  .home .hero { grid-template-columns: 1fr; }
  .home .hero-right { display: none; }
  .home .hero-left { padding: 60px 40px; }
  .home .products { padding: 60px 40px; }
  .home .tiles { grid-template-columns: 1fr; }
  .home .why { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
  .home footer { padding: 60px 40px 32px; }
  .home .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .contact-page .contact-main { grid-template-columns: 1fr; }
  .contact-page .contact-left { padding: 60px 32px; }
  .contact-page .contact-left h1 { font-size: 36px; }
  .contact-page .contact-right { padding: 60px 32px; }
  .contact-page .form-row { grid-template-columns: 1fr; }
  .contact-page footer { padding: 32px; }

  .shop-page .page-header { padding: 48px 32px 40px; }
  .shop-page .page-header h1 { font-size: 36px; }
  .shop-page .shop-layout { grid-template-columns: 1fr; }
  .shop-page .sidebar { position: static; height: auto; }
  .shop-page .products-area { padding: 32px 24px; }
  .shop-page footer { padding: 48px 32px 32px; }

  .story-page .story-hero { grid-template-columns: 1fr; padding: 60px 32px; gap: 40px; }
  .story-page .story-hero h1 { font-size: 38px; }
  .story-page .story-body { padding: 60px 32px; }
  .story-page .story-cols { grid-template-columns: 1fr; gap: 40px; }
  .story-page .process { padding: 60px 32px; }
  .story-page .process-steps { grid-template-columns: 1fr 1fr; }
  .story-page .standards { padding: 60px 32px; }
  .story-page .standards-grid { grid-template-columns: 1fr; }
  .story-page .story-cta { padding: 60px 32px; }
  .story-page footer { padding: 32px; }

  .wholesale-page .page-header { padding: 48px 32px 40px; }
  .wholesale-page .page-header h1 { font-size: 36px; }
  .wholesale-page .wholesale-body { padding: 60px 32px; }
  .wholesale-page .two-col { grid-template-columns: 1fr; gap: 40px; }
  .wholesale-page .form-section { padding: 60px 32px; }
  .wholesale-page .form-grid { grid-template-columns: 1fr; }
  .wholesale-page footer { padding: 32px; }

  .blog-page .blog-header { padding: 64px 32px 56px; }
  .blog-page .blog-main,
  .blog-post-page .blog-post-main { padding: 48px 24px 64px; }
  .blog-page .blog-featured-card { grid-template-columns: 1fr; }
  .blog-page .blog-featured-media { min-height: 240px; }
  .blog-page .blog-featured-body { padding: 28px; }
  .blog-page .blog-featured-body h3 { font-size: 30px; }
  .blog-page .blog-grid,
  .blog-post-page .related-grid { grid-template-columns: 1fr; }
  .blog-page footer,
  .blog-post-page footer { padding: 32px; }
  .blog-post-page .blog-post-shell { margin-top: calc(var(--nav-h) + 12px); }
  .blog-post-page .blog-post-article { padding: 24px; }
  .blog-post-page .blog-post-hero { aspect-ratio: 16 / 10; }
  .blog-post-page .blog-post-excerpt { font-size: 16px; }
}

/* ── Subscribe Section ──────────────────────────────────────────────────── */
.subscribe-section {
  background: var(--green-dark);
  padding: 80px 48px;
}
.subscribe-section--blog {
  background: var(--green-mid);
}
.subscribe-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.subscribe-text .eyebrow {
  color: var(--gold-pale);
  opacity: 0.7;
}
.subscribe-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--cream);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.subscribe-text h2 em {
  font-style: italic;
  color: var(--gold-pale);
}
.subscribe-text p {
  color: rgba(250,246,236,0.75);
  font-size: 15px;
  line-height: 1.65;
}
.subscribe-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.subscribe-fields input[type="text"],
.subscribe-fields input[type="email"] {
  padding: 12px 16px;
  border: 1.5px solid rgba(245,217,138,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.subscribe-fields input::placeholder { color: rgba(250,246,236,0.4); }
.subscribe-fields input:focus {
  outline: none;
  border-color: var(--gold-pale);
}
.subscribe-fields .btn-primary { width: 100%; justify-content: center; text-align: center; }
.subscribe-status {
  font-size: 13px;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 6px;
}
.subscribe-status.ok { background: rgba(39,174,96,0.15); color: #7FE5A1; }
.subscribe-status.error { background: rgba(192,57,43,0.15); color: #F5A49A; }
.footer-subscribe-status {
  font-size: 12px;
  margin-top: 6px;
  color: var(--gold-pale);
}

/* ── Confirm / Unsubscribe Pages ───────────────────────────────────────── */
.confirm-page { min-height: 100vh; display: flex; flex-direction: column; }
.confirm-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--cream) 0%, #EDE4CC 100%);
}
.confirm-card {
  background: #fff;
  border-radius: 16px;
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.confirm-icon { font-size: 48px; margin-bottom: 20px; }
.confirm-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.confirm-card p {
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 12px;
  font-size: 15px;
}
.confirm-card .btn-primary { margin-top: 16px; display: inline-block; }
.resub-form { margin-top: 20px; }
.resub-row {
  display: flex;
  gap: 8px;
}
.resub-row input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #D8D0BC;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.resub-row button {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}
.resub-status {
  font-size: 13px;
  margin-top: 8px;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .subscribe-inner { grid-template-columns: 1fr; gap: 28px; }
  .subscribe-section { padding: 56px 24px; }
  .confirm-card { padding: 40px 24px; }
  .resub-row { flex-direction: column; }
}

/* ── COMING SOON ── */
.coming-soon {
  background: var(--gold-pale);
  padding: 80px 40px;
  text-align: center;
}
.coming-soon-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.coming-soon .eyebrow {
  color: var(--green-mid);
}
.coming-soon h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green-dark);
  line-height: 1.2;
}
.coming-soon h2 em {
  color: var(--gold);
  font-style: italic;
}
.coming-soon p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 520px;
}
.coming-soon .btn-outline {
  color: var(--green-dark);
  border-color: var(--green-dark);
  margin-top: 8px;
}
.coming-soon .btn-outline:hover {
  background: var(--green-dark);
  color: var(--gold-pale);
}

@media (max-width: 600px) {
  .coming-soon { padding: 64px 24px; }
}

/* ── CERTIFICATIONS ── */
.cert-section {
  background: var(--white);
  padding: 56px 40px;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.cert-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.cert-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.cert-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cert-logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.cert-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}
.cert-logo-link:hover .cert-logo {
  opacity: 1;
  filter: grayscale(0%);
}
.cert-logo--sm { height: 66px; }
.cert-section--narrow .cert-logo--sm { height: 46px; }
.cert-logo-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cert-section--narrow {
  padding: 36px 40px;
  background: var(--cream);
}
.cert-section--narrow .cert-logo { height: 56px; }
.cert-section--narrow .cert-eyebrow { margin-bottom: 20px; }

@media (max-width: 600px) {
  .cert-section { padding: 48px 24px; }
  .cert-section--narrow { padding: 32px 24px; }
  .cert-logos { gap: 36px; }
  .cert-logo { height: 60px; }
  .cert-section--narrow .cert-logo { height: 48px; }
}

/* ── INSTAGRAM SECTION ── */
.instagram-section {
  background: var(--cream-dark);
  padding: 80px 40px;
}
.instagram-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.instagram-header {
  text-align: center;
}
.instagram-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--green-dark);
  margin-bottom: 8px;
}
.instagram-header h2 em {
  color: var(--gold);
  font-style: italic;
}
.instagram-handle {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.instagram-handle:hover { color: var(--gold); }
.instagram-feed {
  width: 100%;
}
.instagram-cta {
  margin-top: 8px;
}

@media (max-width: 600px) {
  .instagram-section { padding: 56px 20px; }
}

/* ── Legal page ── */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 24px 100px; }
.legal-inner > .eyebrow { margin-bottom: 8px; }
.legal-inner h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 48px); color: var(--green-dark); margin-bottom: 8px; }
.legal-updated { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.legal-inner h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-dark); margin: 40px 0 12px; }
.legal-inner h3 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin: 24px 0 8px; }
.legal-inner p, .legal-inner li { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 12px; }
.legal-inner ul { padding-left: 20px; margin-bottom: 12px; }
.legal-inner li { margin-bottom: 6px; }
.legal-inner a { color: var(--gold); text-decoration: underline; }
.legal-inner a:hover { color: var(--gold-light); }

/* ── Footer legal link ── */
.footer-legal { margin-top: 6px; font-size: 12px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ── FAQ section ── */
.faq-section { background: var(--cream); padding: 96px 24px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); color: var(--green-dark); margin-top: 8px; }
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  user-select: none;
  list-style: none;
  background: none;
  border: none;
  text-align: left;
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  position: relative;
  transition: background 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-open .faq-icon { background: var(--gold); }
.faq-open .faq-icon::before { background: var(--white); }
.faq-open .faq-icon::after  { background: var(--white); opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; line-height: 1.75; color: var(--text-mid); margin-bottom: 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--gold); text-decoration: underline; }
.faq-answer a:hover { color: var(--gold-light); }
.faq-question:hover { color: var(--gold); }
@media (max-width: 600px) {
  .faq-section { padding: 64px 20px; }
  .faq-question { font-size: 15px; }
}

/* ── Testimonials section ── */
.testimonials-section { background: var(--green-dark); padding: 96px 24px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header .eyebrow { color: var(--gold-pale); opacity: 0.8; }
.testimonials-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-top: 8px; }
.testimonials-header h2 em { color: var(--gold-light); font-style: italic; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  flex: 1;
}
.testimonial-attr { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.02em; }
.testimonial-location { font-size: 13px; color: rgba(255,255,255,0.45); }
.testimonials-note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .testimonials-section { padding: 64px 20px; }
}

/* ── Meet the Beekeeper ── */
.meet-beekeeper { background: var(--white); padding: 96px 24px; }
.meet-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: center; }
.meet-photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--gold-pale);
  color: var(--text-muted);
}
.meet-photo-placeholder .meet-photo-icon { font-size: 48px; }
.meet-photo-placeholder p { font-size: 14px; font-style: italic; }
.meet-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.meet-text .eyebrow { margin-bottom: 8px; }
.meet-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--green-dark); margin-bottom: 6px; }
.meet-tagline { font-size: 14px; font-weight: 500; color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.meet-text p { font-size: 16px; line-height: 1.8; color: var(--text-mid); margin-bottom: 16px; font-style: italic; background: var(--cream); border-left: 3px solid var(--gold-pale); padding: 12px 16px; border-radius: 0 6px 6px 0; }
.meet-cta { margin-top: 8px; display: inline-block; }
@media (max-width: 860px) {
  .meet-inner { grid-template-columns: 1fr; gap: 40px; }
  .meet-photo-placeholder { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .meet-beekeeper { padding: 64px 20px; }
}

/* ── Product Preview / Waitlist ── */
.preview-section { background: var(--cream); padding: 96px 24px; }
.preview-inner { max-width: 1100px; margin: 0 auto; }
.preview-header { text-align: center; margin-bottom: 56px; }
.preview-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 42px); color: var(--green-dark); margin: 8px 0 16px; }
.preview-subhead { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.preview-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.preview-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.preview-badge--harvesting { background: var(--gold-pale); color: var(--green-dark); }
.preview-badge--coming { background: var(--cream-dark); color: var(--text-muted); }
.preview-icon { font-size: 40px; margin: 4px 0; }
.preview-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--green-dark); font-style: italic; }
.preview-flavor { font-size: 14px; line-height: 1.7; color: var(--text-mid); flex: 1; }
.preview-timing { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-transform: uppercase; }
.preview-notify-btn { margin-top: 8px; font-size: 14px; padding: 12px 20px; }
.preview-notify-status { font-size: 13px; line-height: 1.5; padding: 10px 14px; border-radius: 6px; margin-top: 4px; }
.preview-notify-success { background: #EDF7ED; color: #2E6B2E; }
.preview-notify-error { background: #FDF0F0; color: #9B2C2C; }
@media (max-width: 900px) {
  .preview-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .preview-section { padding: 64px 20px; }
}

/* ── Preview card product image ── */
.preview-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  margin: 4px 0 4px;
}
