/* ============================================================
   STYLISH AND HEALTHY — Master Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --black:   #0D0B08;
  --cream:   #F5EFE0;
  --ivory:   #FAF6EE;
  --gold:    #C9A263;
  --rose:    #D4A090;
  --text:    rgba(13, 11, 8, 0.85);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --transition-slow: 500ms ease-in-out;
  --transition-med:  400ms ease-in-out;
  --transition-fast: 300ms ease-in-out;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  /* Grain texture overlay */
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}

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

/* ── Typography Utilities ──────────────────────────────────── */
.font-display { font-family: var(--font-display); }
.font-accent  { font-family: var(--font-accent); }
.font-body    { font-family: var(--font-body); }

.text-gold  { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-black { color: var(--black); }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Image Treatment ───────────────────────────────────────── */
.img-warm {
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}

/* ── Warm Image Wrapper ────────────────────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}

/* ── Gold Divider Line ─────────────────────────────────────── */
.gold-line {
  height: 1px;
  background: var(--gold);
  width: 0;
  transition: width 800ms cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-line.animate { width: 100%; }

/* ── 12-Column Grid ────────────────────────────────────────── */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(13,11,8,0.08);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: color var(--transition-med);
}
.nav.scrolled .nav__logo { color: var(--black); }

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition-med);
}
.nav.scrolled .nav__link { color: var(--black); }

.nav__link::after {
  content: '·';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-med);
  font-size: 16px;
}
.nav__link:hover::after { opacity: 1; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: background var(--transition-med), transform var(--transition-med), opacity var(--transition-med);
}
.nav.scrolled .nav__hamburger span { background: var(--black); }

/* Full-screen mobile nav */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.nav__overlay-link {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--cream);
  font-weight: 400;
  transition: color var(--transition-fast);
}
.nav__overlay-link:hover { color: var(--gold); }

.nav__overlay-close {
  position: absolute;
  top: 24px;
  right: 48px;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1517841905240-472988babdf9?w=1600&q=80') center/cover no-repeat;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.55) 0%, rgba(13,11,8,0.1) 55%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 55%;
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1.0;
  color: #fff;
  font-weight: 400;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.88);
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition-fast), gap var(--transition-fast);
}
.hero__link:hover {
  color: #fff;
  gap: 14px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--black);
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-accent);
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--cream);
  padding: 0 20px;
}

.marquee-track .sep {
  color: var(--gold);
  padding: 0 4px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   FEATURED ARTICLE
   ============================================================ */
.featured {
  padding: 120px 0;
  background: var(--cream);
}

.featured__inner {
  display: grid;
  grid-template-columns: 60fr 4fr 36fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: end;
}

.featured__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.featured__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
  transition: transform var(--transition-slow);
}
.featured__image-wrap:hover img { transform: scale(1.03); }

.featured__title-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 40px 40px;
  background: linear-gradient(to top, rgba(13,11,8,0.75), transparent);
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
}

.featured__gap { /* breathing room col */ }

.featured__meta {
  padding-bottom: 40px;
}

.featured__meta .eyebrow { margin-bottom: 28px; display: block; }

.featured__excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 24px;
}

.featured__byline {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(13,11,8,0.5);
  margin-bottom: 32px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.read-more:hover { gap: 14px; color: var(--gold); }

/* ============================================================
   MANIFESTO PULL QUOTE
   ============================================================ */
.manifesto {
  background: var(--ivory);
  padding: 100px 48px;
  text-align: center;
}

.manifesto__line-top,
.manifesto__line-bottom {
  height: 1px;
  background: var(--gold);
  width: 0;
  margin: 0 auto 40px;
  max-width: 680px;
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
.manifesto__line-bottom { margin: 40px auto 0; }
.manifesto__line-top.animate,
.manifesto__line-bottom.animate { width: 100%; max-width: 680px; }

.manifesto__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.3;
  color: var(--black);
  max-width: 60%;
  margin: 0 auto;
  font-weight: 400;
}

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-section {
  padding: 100px 0;
  background: var(--cream);
}

.blog-section__header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 56px;
}

.blog-section__header .eyebrow { font-size: 14px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px 24px;
}

/* Row 1: large (cols 1-7) + two stacked (cols 8-12 split) */
.card-large {
  grid-column: span 7;
}
.card-stack {
  grid-column: span 5;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

/* Row 2: three equal */
.card-equal {
  grid-column: span 4;
}

.card {
  background: var(--ivory);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-med);
}

.card__image {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.card-large .card__image { aspect-ratio: 3/2; }
.card-stack .card { aspect-ratio: auto; }
.card-stack .card .card__image { aspect-ratio: 3/2; }

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
  transition: transform var(--transition-slow);
}
.card:hover .card__image img { transform: scale(1.04); }

.card__body {
  padding: 24px;
}

.card__tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--cream);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--black);
  font-weight: 400;
  position: relative;
  display: inline;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size var(--transition-med);
}
.card:hover .card__title { background-size: 100% 1px; }

.card-large .card__title { font-size: clamp(24px, 2.5vw, 36px); }

/* ============================================================
   GHOST TEXT SECTIONS
   ============================================================ */
.ghost-section {
  position: relative;
  overflow: hidden;
}

.ghost-text {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  font-family: var(--font-accent);
  font-size: clamp(200px, 25vw, 360px);
  color: var(--black);
  opacity: 0.055;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  user-select: none;
}

/* ============================================================
   DIGITAL EDIT / SHOP SECTION
   ============================================================ */
.digital-edit {
  padding: 100px 0;
  background: var(--ivory);
}

.digital-edit__header {
  margin-bottom: 16px;
}
.digital-edit__header .eyebrow { font-size: 22px; letter-spacing: 6px; }

.digital-edit__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 64px;
  font-weight: 300;
}

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

.product-card {
  background: var(--cream);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  border-bottom: 1.5px solid var(--gold);
  transition: height 500ms ease-in-out;
}
.product-card:hover::after { height: 100%; border: 1.5px solid var(--gold); }

.product-card__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__image img { transform: scale(1.03); }

.product-card__body {
  padding: 28px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(13,11,8,0.6);
  margin-bottom: 16px;
}

.product-card__price {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.product-card__link {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.product-card:hover .product-card__link { gap: 12px; color: var(--gold); }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid rgba(201,162,99,0.25);
  border-bottom: 1px solid rgba(201,162,99,0.25);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-strip__image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.about-strip__copy {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 24px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}

.newsletter__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(245,239,224,0.7);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 16px;
}

.newsletter__input {
  flex: 1;
  background: var(--cream);
  border: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
}

.newsletter__btn {
  background: var(--gold);
  border: none;
  padding: 16px 28px;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}
.newsletter__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}
.newsletter__btn:hover::before { transform: scaleX(1); }
.newsletter__btn span { position: relative; z-index: 1; }

.newsletter__fine {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(245,239,224,0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer__bg-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 16vw, 220px);
  color: #fff;
  opacity: 0.06;
  pointer-events: none;
  white-space: nowrap;
  font-weight: 600;
  user-select: none;
}

.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px 64px;
}

.footer__heading {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer__nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(245,239,224,0.7);
  transition: color var(--transition-fast);
}
.footer__nav-link:hover { color: var(--gold); }

.footer__article-link {
  display: block;
  margin-bottom: 16px;
}
.footer__article-title {
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(245,239,224,0.82);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition-fast);
}
.footer__article-link:hover .footer__article-title { color: var(--gold); }
.footer__article-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(245,239,224,0.4);
}

.footer__social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__social-link {
  font-family: var(--font-accent);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(245,239,224,0.7);
  transition: color var(--transition-fast);
}
.footer__social-link:hover { color: var(--gold); }

.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,162,99,0.25);
  padding: 20px 48px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(245,239,224,0.35);
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 160px 48px 80px;
  text-align: center;
}

.page-hero__eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  color: #fff;
  font-weight: 400;
  font-style: italic;
}

.blog-page-grid {
  padding: 80px 0;
}

.blog-page-grid .grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.blog-page-grid .card-article {
  grid-column: span 4;
}

/* Filter Bar */
.filter-bar {
  background: var(--ivory);
  padding: 20px 48px;
  display: flex;
  gap: 32px;
  align-items: center;
  border-bottom: 1px solid rgba(201,162,99,0.2);
}

.filter-btn {
  background: none;
  border: none;
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(13,11,8,0.5);
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 0;
}
.filter-btn.active,
.filter-btn:hover { color: var(--gold); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-header {
  background: var(--cream);
  padding: 140px 48px 0;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.article-header .eyebrow { margin-bottom: 24px; }

.article-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 28px;
}

.article-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(13,11,8,0.45);
  margin-bottom: 56px;
}

.article-hero-image {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}

.article-body {
  max-width: 680px;
  margin: 56px auto 80px;
  padding: 0 48px;
}

.article-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
  margin: 56px 0 20px;
  line-height: 1.2;
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  margin: 40px 0 16px;
}

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.4;
  color: var(--black);
  margin: 56px 0 56px -80px;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
  font-weight: 300;
}

.related-section {
  background: var(--ivory);
  padding: 80px 0;
}

/* ============================================================
   SHOP / PRODUCT PAGE
   ============================================================ */
.product-page {
  padding: 120px 0 80px;
  background: var(--cream);
}

.product-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}

.product-page__image {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-page__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) sepia(0.08);
}

.product-page__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.product-page__short {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(13,11,8,0.65);
  margin-bottom: 32px;
}

.product-page__what-label {
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.product-page__what {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 36px;
}

.product-page__price {
  font-family: var(--font-accent);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.product-cta {
  width: 100%;
  padding: 18px;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-med);
}
.product-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}
.product-cta:hover::before { transform: scaleX(1); }
.product-cta:hover { color: #fff; }
.product-cta span { position: relative; z-index: 1; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.hidden { display: none !important; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 900px) {
  .container, .grid-12 { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__content { max-width: 90%; padding: 0 24px; }
  .hero__title { font-size: 56px; }

  .featured__inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 32px;
  }
  .featured__image-wrap { aspect-ratio: 3/2; }

  .manifesto { padding: 64px 24px; }
  .manifesto__quote { max-width: 90%; font-size: 28px; }

  .blog-section { padding: 60px 0; }
  .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }
  .card-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 24px;
    -webkit-overflow-scrolling: touch;
  }
  .product-card {
    min-width: 280px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .about-strip__inner { grid-template-columns: 1fr; padding: 0 24px; }
  .about-strip__image { width: 100%; height: 280px; }

  .footer__inner { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .footer__bottom { padding: 20px 24px; flex-direction: column; gap: 8px; }

  .pull-quote { margin-left: 0; font-size: 22px; }

  .product-page__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .blog-page-grid .grid-12 { padding: 0 24px; }
  .blog-page-grid .card-article { grid-column: span 12; }

  .filter-bar { padding: 16px 24px; flex-wrap: wrap; gap: 16px; }
  .newsletter { padding: 80px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input, .newsletter__btn { width: 100%; }
}
