/* ============================================================
   SquishyMood — Independent Site Standard CSS
   ============================================================ */

:root {
  --tomato: #E25822;
  --tomato-deep: #B83A14;
  --tomato-light: #FCE3D9;
  --yellow: #FFC93C;
  --ink: #1A1A1A;
  --ink-darker: #0A0A0A;
  --paper: #FAFAF7;
  --paper-warm: #F5F1E8;
  --paper-cream: #F2EEE5;
  --line: #D6CFC0;
  --ink-60: rgba(26,26,26,0.6);
  --ink-70: rgba(26,26,26,0.7);
  --paper-20: rgba(250,250,247,0.2);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--paper); color: var(--ink); font-weight: 500; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
.font-display { font-family: 'Archivo Black', sans-serif; font-weight: 900; letter-spacing: -0.02em; line-height: 0.95; }
.font-heading { font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: -0.02em; }
.font-eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Section */
.section { padding: 80px 0; }
.section-light { background: var(--paper); }
.section-warm { background: var(--paper-warm); }
.section-cream { background: var(--paper-cream); }

.section-header { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; margin-bottom: 56px; gap: 24px; }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tomato); margin: 0 0 12px; }
.section-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(36px, 5vw, 64px); margin: 0; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.section-title .accent { color: var(--tomato); }
.section-subtitle { font-size: 18px; color: var(--ink-70); margin: 16px 0 0; max-width: 540px; line-height: 1.5; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--ink); color: var(--paper); padding: 16px 32px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: 2px solid var(--ink); transition: all 0.3s; cursor: pointer; }
.btn-primary:hover { background: var(--tomato); border-color: var(--tomato); color: var(--paper); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ink); padding: 16px 32px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border: 2px solid var(--ink); transition: all 0.3s; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Top Banner */
.top-banner { background: var(--ink); color: var(--paper); padding: 10px 0; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* Nav */
.site-nav { background: var(--paper); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 100; }
.site-nav-inner { max-width: 1280px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: flex-end; gap: 32px; }
.site-nav-logo { font-family: 'Archivo Black', sans-serif; font-size: 24px; color: var(--ink); margin-right: auto; }
.site-nav-logo span { color: var(--tomato); }
.site-nav-links { display: flex; gap: 32px; align-items: center; }
.site-nav-links a { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.site-nav-links a:hover { color: var(--tomato); }
.site-nav-links a.active { color: var(--tomato); }
.site-nav-actions { display: flex; gap: 24px; align-items: center; margin-left: 32px; padding-left: 32px; border-left: 2px solid var(--line); }
.site-nav-action { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.site-nav-action:hover { color: var(--tomato); }
.cart-count { background: var(--tomato); color: var(--paper); padding: 2px 6px; border-radius: 999px; font-size: 11px; margin-left: 4px; }
@media (max-width: 768px) { .site-nav-links { gap: 16px; } .site-nav-actions { gap: 12px; margin-left: 16px; padding-left: 16px; } }

/* Sticker */
.sticker { display: inline-block; background: var(--yellow); color: var(--ink); padding: 6px 14px; border: 2px solid var(--ink); font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 0.1em; transform: rotate(-2deg); margin-bottom: 16px; }

/* ========== HERO ========== */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: var(--yellow); border-radius: 50%; opacity: 0.4; filter: blur(60px); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 64px 24px 96px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 768px) { .hero-inner { grid-template-columns: 1fr; padding: 40px 24px 64px; } }

.hero-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(56px, 9vw, 120px); color: var(--ink); margin: 0 0 24px; line-height: 0.9; letter-spacing: -0.03em; }
.hero-title .accent { color: var(--tomato); }
.hero-subtitle { font-size: 18px; color: var(--ink-70); margin: 0 0 32px; line-height: 1.5; max-width: 480px; }
.hero-subtitle strong { color: var(--ink); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

/* Trust Strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 16px; padding: 16px 0; border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); margin-bottom: 32px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); }
.trust-item svg { color: var(--tomato); flex-shrink: 0; }

/* Founder */
.hero-founder { display: flex; align-items: center; gap: 16px; }
.founder-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ink); flex-shrink: 0; }
.founder-text { flex: 1; }
.founder-quote { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; line-height: 1.4; color: var(--ink); margin: 0 0 4px; font-style: italic; }
.founder-name { font-size: 12px; color: var(--ink-60); margin: 0; }

/* Hero Media */
.hero-media { position: relative; aspect-ratio: 1; }
@media (max-width: 768px) { .hero-media { aspect-ratio: 4/3; } }
.hero-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 75%; background: var(--yellow); border-radius: 50% 40% 50% 50%; overflow: hidden; border: 3px solid var(--ink); }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; background: var(--tomato-light); border-radius: 50% 50% 40% 50%; overflow: hidden; border: 3px solid var(--ink); }
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; top: 8%; right: 8%; background: var(--ink); color: var(--paper); padding: 12px 20px; border-radius: 50%; text-align: center; transform: rotate(-8deg); z-index: 2; }
.badge-num { display: block; font-family: 'Archivo Black', sans-serif; font-size: 24px; line-height: 1; color: var(--yellow); }
.badge-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

/* ========== PRODUCT GRID ========== */
.product-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.product-tile { display: block; background: var(--paper); border: 2px solid var(--ink); transition: all 0.3s; }
.product-tile:hover { box-shadow: 6px 6px 0 0 var(--ink); transform: translate(-2px, -2px); }
.product-tile-img { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--paper-cream); }
.product-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-tile:hover .product-tile-img img { transform: scale(1.05); }
.product-tile-badge { position: absolute; top: 12px; left: 12px; background: var(--tomato); color: var(--paper); padding: 4px 10px; font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 0.1em; border: 2px solid var(--ink); }
.product-tile-body { padding: 20px; }
.product-tile-cat { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tomato); margin: 0 0 4px; }
.product-tile-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; margin: 0 0 4px; color: var(--ink); }
.product-tile-variant { font-size: 13px; color: var(--ink-60); margin: 0 0 12px; }
.product-tile-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); }
.product-tile-price { font-family: 'Archivo Black', sans-serif; font-size: 22px; color: var(--tomato); }
.product-tile-cta { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }

/* ========== SLOW RISE COMPARISON ========== */
.slow-rise-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .slow-rise-comparison { grid-template-columns: 1fr; } }
.rise-card { background: var(--paper); border: 2px solid var(--ink); padding: 32px 24px; text-align: center; position: relative; }
.rise-card.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rise-card img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 16px; border-radius: 8px; }
.rise-card.featured img { border: 2px solid var(--paper); }
.rise-time { font-family: 'Archivo Black', sans-serif; font-size: clamp(40px, 5vw, 64px); color: var(--tomato); line-height: 1; margin: 0 0 8px; }
.rise-card.featured .rise-time { color: var(--yellow); }
.rise-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 8px; }
.rise-desc { font-size: 13px; line-height: 1.5; opacity: 0.85; margin: 0; }
.rise-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--ink); padding: 4px 12px; font-family: 'Archivo Black', sans-serif; font-size: 11px; letter-spacing: 0.1em; }

/* ========== VIDEO WALL ========== */
.video-wall { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 600px; }
@media (max-width: 768px) { .video-wall { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; } }
.video-card { position: relative; aspect-ratio: 16/9; background: var(--ink); border: 2px solid var(--ink); overflow: hidden; display: block; }
.video-main { grid-row: 1 / 3; aspect-ratio: auto; height: 100%; }
@media (max-width: 768px) { .video-main { grid-row: auto; aspect-ratio: 16/9; } }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover img { transform: scale(1.05); }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; background: rgba(255,255,255,0.9); color: var(--ink); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; border: 3px solid var(--ink); }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); background: var(--tomato); color: var(--paper); }
.video-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); padding: 24px 16px 12px; color: var(--paper); }
.video-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; margin: 0 0 2px; line-height: 1.3; }
.video-channel { font-size: 11px; opacity: 0.8; margin: 0; }

/* ========== STORY ========== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; } }
.story-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 3px solid var(--ink); border-radius: 8px; }
.story-paragraph { font-size: 17px; line-height: 1.6; margin: 0 0 20px; color: var(--ink); }
.story-paragraph strong { color: var(--tomato); font-weight: 700; }

.founder-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .founder-team { grid-template-columns: 1fr; } }
.founder-card { text-align: center; }
.founder-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--ink); margin: 0 auto 16px; }
.founder-card .founder-name { font-family: 'Archivo Black', sans-serif; font-size: 18px; margin: 0 0 4px; }
.founder-card .founder-role { font-size: 12px; color: var(--ink-60); margin: 0; letter-spacing: 0.05em; }

/* ========== WORKSHOP ========== */
.workshop-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; padding: 32px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
@media (max-width: 768px) { .workshop-stats { grid-template-columns: repeat(2, 1fr); } }
.stat-card { text-align: center; }
.stat-num { font-family: 'Archivo Black', sans-serif; font-size: clamp(48px, 5vw, 64px); color: var(--tomato); line-height: 1; margin: 0 0 8px; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); line-height: 1.3; margin: 0; }

.workshop-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
@media (max-width: 768px) { .workshop-process { grid-template-columns: 1fr; } }
.process-step { background: var(--paper); border: 2px solid var(--ink); padding: 0 0 24px; overflow: hidden; }
.process-step img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-bottom: 2px solid var(--ink); display: block; }
.process-num { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--tomato); margin: 20px 24px 8px; }
.process-title { font-family: 'Archivo Black', sans-serif; font-size: 24px; margin: 0 24px 12px; }
.process-desc { font-size: 14px; line-height: 1.5; color: var(--ink-70); margin: 0 24px; }

.factory-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; height: 500px; margin-bottom: 64px; }
@media (max-width: 768px) { .factory-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; } }
.factory-gallery img { width: 100%; height: 100%; object-fit: cover; border: 2px solid var(--ink); }
.gallery-1 { grid-row: 1 / 3; }
@media (max-width: 768px) { .gallery-1 { grid-row: auto; } }

.lab-report {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 32px;
  text-align: center;
  border: 3px solid var(--ink);
  position: relative;
  z-index: 2;
  isolation: isolate;
}
.lab-report-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ========== FOOTER ========== */
.site-footer { background: var(--ink-darker); color: var(--paper); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand h3 { font-family: 'Archivo Black', sans-serif; font-size: 32px; margin: 0 0 12px; }
.footer-brand h3 span { color: var(--yellow); }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.5; opacity: 0.8; margin: 0; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--yellow); margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; opacity: 0.85; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--paper-20); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 12px; opacity: 0.8; }
.footer-social { display: flex; gap: 24px; }
.footer-social a { color: var(--paper); }