:root {
  --cream: #F8F4EE;
  --green: #2A4A3D;
  --amber: #C9873A;
  --green-light: #3A6B56;
  --text: #1C1C1A;
  --text-muted: #6B6B63;
  --border: #E0D8CC;
  --card: #F2EDE3;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SITE NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 8vw;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 60px;
}

.site-nav-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.site-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.site-nav-link:hover {
  background: var(--card);
  color: var(--text);
}

.site-nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
}

.site-nav-cta:hover {
  background: var(--green-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  padding: 0 8vw;
  gap: 0;
}

.hero-left {
  padding: 80px 0;
  padding-right: 6vw;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--green);
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
}

.hero-right {
  padding: 80px 0;
  padding-left: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fabric art */
.hero-fabric-art {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.fabric-fold {
  position: absolute;
  background: var(--green);
  border-radius: 4px;
}

.fabric-fold-1 {
  width: 70%;
  height: 85%;
  top: 0;
  left: 15%;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-light) 60%, var(--green) 100%);
  box-shadow: 8px 8px 32px rgba(0,0,0,0.18), -2px -2px 8px rgba(255,255,255,0.04);
  transform: perspective(600px) rotateY(-4deg) rotateX(2deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fabric-fold-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(255,255,255,0.03) 18px,
    rgba(255,255,255,0.03) 19px
  );
}

.fabric-fold-2 {
  width: 55%;
  height: 70%;
  top: 10%;
  left: 25%;
  background: var(--amber);
  opacity: 0.85;
  transform: perspective(500px) rotateY(6deg) rotateX(-3deg);
  z-index: 1;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.12);
}

.fabric-fold-3 {
  width: 40%;
  height: 55%;
  top: 18%;
  left: 32%;
  background: #F2EDE3;
  opacity: 0.9;
  transform: perspective(400px) rotateY(12deg) rotateX(-1deg);
  z-index: 2;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.08);
}

.fabric-quote-block {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 20px;
}

.fabric-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  color: var(--text);
  line-height: 1.4;
  display: block;
}

.fabric-text.accent {
  color: var(--green);
  font-weight: 700;
  font-style: normal;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 520px;
}

/* ── TEMPLATES ── */
.templates {
  padding: 120px 8vw;
  background: var(--cream);
}

.templates-header {
  margin-bottom: 64px;
}

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

.quote-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.quote-card.featured {
  background: var(--green);
  border-color: var(--green);
}

.quote-card.featured .quote-text,
.quote-card.featured .quote-prefix {
  color: var(--cream);
}

.quote-card-inner {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.quote-prefix {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 0.8;
  color: var(--amber);
  flex-shrink: 0;
}

.quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
}

.quote-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.quote-card.featured .quote-tag {
  color: rgba(248,244,238,0.6);
}

/* ── PROCESS ── */
.process {
  padding: 120px 8vw;
  background: #F2EDE3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-header {
  margin-bottom: 72px;
}

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

.step {
  padding-top: 24px;
  border-top: 2px solid var(--text);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--green);
  padding: 120px 8vw;
}

.manifesto-inner {
  max-width: 720px;
}

.manifesto-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.5);
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.manifesto-quote em {
  font-style: italic;
  color: var(--amber);
}

.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(248,244,238,0.7);
  max-width: 560px;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 8vw;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.closing-text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.45;
}

.closing-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── PRODUCT SHOWCASE ── */
.product-showcase {
  padding: 80px 8vw;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

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

.showcase-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

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

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.product-card.mug-card {
  background: #FAF5EE;
}

/* Hoodie visual */
.hoodie-visual {
  width: 130px;
  height: 170px;
  position: relative;
}

.hoodie-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2A4A3D 0%, #3A6B56 60%, #2A4A3D 100%);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
}

.hoodie-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background: #2A4A3D;
  border-radius: 50% 50% 0 0 / 50% 50% 0 0;
}

.hoodie-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255,255,255,0.03) 12px, rgba(255,255,255,0.03) 13px);
}

.hoodie-sleeve-l, .hoodie-sleeve-r {
  position: absolute;
  top: 32px;
  width: 34px;
  height: 60px;
  background: #2A4A3D;
  border-radius: 6px 6px 12px 12px;
}

.hoodie-sleeve-l { left: -16px; transform: rotate(-12deg); }
.hoodie-sleeve-r { right: -16px; transform: rotate(12deg); }

.hoodie-hood {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 40px;
  background: #1a3530;
  border-radius: 50% 50% 30% 30% / 60% 60% 40% 40%;
  z-index: -1;
}

.hoodie-pocket {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 28px;
  background: rgba(0,0,0,0.08);
  border-radius: 6px 6px 12px 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hoodie-strings {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: transparent;
}

.hoodie-strings::before,
.hoodie-strings::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2px;
  height: 24px;
  background: rgba(248,244,238,0.35);
  border-radius: 2px;
}

.hoodie-strings::before { left: -8px; }
.hoodie-strings::after  { left: 6px; }

/* Product visual containers */
.product-visual {
  width: 160px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

/* Color swatches */
.color-swatches {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: default;
  box-shadow: 0 0 0 1px var(--border);
}

.swatch:hover {
  border-color: var(--text);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.product-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-price strong {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 600;
}

/* CTA button */
.btn-shop {
  display: inline-block;
  padding: 12px 24px;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  font-family: var(--font-sans);
  width: 100%;
  text-align: center;
}

.btn-shop:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

.btn-shop.mug-btn {
  background: var(--amber);
}

.btn-shop.mug-btn:hover {
  background: #b07530;
}

/* Browse all strip */
.browse-strip {
  padding: 48px 8vw;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.browse-strip p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.browse-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}

.browse-link:hover {
  gap: 10px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 8vw;
  background: var(--text);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(248,244,238,0.4);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(248,244,238,0.3);
}

/* ── HERO CTA ── */
.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-sans);
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.hero-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}

/* ── HERO RIGHT: real product photo ── */
.hero-right {
  padding: 80px 0;
  padding-left: 6vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  object-fit: cover;
  display: block;
}

.hero-photo-caption {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 60px 6vw;
    gap: 48px;
  }
  .hero-left {
    border-right: none;
    padding-right: 0;
    padding-bottom: 0;
  }
  .hero-right {
    padding-left: 0;
    justify-content: flex-start;
  }
  .hero-fabric-art {
    max-width: 280px;
  }
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 48px 5vw;
  }
  .templates {
    padding: 80px 5vw;
  }
  .quote-grid {
    grid-template-columns: 1fr;
  }
  .process {
    padding: 80px 5vw;
  }
  .manifesto {
    padding: 80px 5vw;
  }
  .closing {
    padding: 72px 5vw;
  }
}

/* ── BUNDLES SHOWCASE (landing page) ── */
.bundles-showcase {
  padding: 72px 8vw;
  background: var(--card);
}

.bundles-showcase-header {
  text-align: center;
  margin-bottom: 48px;
}

.bundles-showcase-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 10px;
}

.bundles-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.bundle-showcase-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bundle-showcase-mockups {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.bundle-showcase-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  justify-items: center;
}

.bundle-showcase-tee {
  width: 100px;
  height: 110px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.12));
}

.bundle-showcase-photo {
  width: 100px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.bundle-showcase-photo-sm {
  width: 72px;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.bundle-showcase-tee-sm {
  width: 72px;
  height: 80px;
}

.bundle-showcase-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  padding-bottom: 14px;
}

.bundle-showcase-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-showcase-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.bundle-showcase-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.bundle-showcase-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bundle-showcase-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.bundle-showcase-retail {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.bundle-showcase-save {
  background: var(--amber);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.bundle-shop-btn {
  margin-top: 4px;
  display: inline-block;
}

@media (max-width: 900px) {
  .bundles-showcase-grid {
    grid-template-columns: 1fr;
  }
  .bundles-showcase {
    padding: 56px 5vw;
  }
}