/* ============================================================
   PET CAKE FACTORY JAPAN — Design System
   Brand: Teal #01696f | Warm cream backgrounds | Japanese aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');

:root {
  --font-display: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.2vw,  0.875rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --text-base: clamp(0.9375rem,0.9rem  + 0.2vw,  1.0625rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.6vw,  1.375rem);
  --text-xl:   clamp(1.4rem,   1.1rem  + 1.2vw,  2rem);
  --text-2xl:  clamp(1.8rem,   1.2rem  + 2vw,    3rem);
  --text-3xl:  clamp(2.2rem,   1rem    + 3.5vw,  4rem);

  /* Spacing */
  --s1: 0.25rem; --s2: 0.5rem;  --s3: 0.75rem; --s4: 1rem;
  --s5: 1.25rem; --s6: 1.5rem;  --s8: 2rem;    --s10: 2.5rem;
  --s12: 3rem;   --s16: 4rem;   --s20: 5rem;   --s24: 6rem;

  /* Border radius */
  --r-sm: 4px; --r-md: 8px; --r-lg: 12px; --r-xl: 20px; --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);

  /* Transition */
  --ease: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Width */
  --w-narrow: 680px;
  --w-default: 1000px;
  --w-wide: 1200px;
}

/* ---- LIGHT (default) ---- */
:root, [data-theme="light"] {
  --color-bg:         #f8f6f1;
  --color-surface:    #fdfcfa;
  --color-surface-2:  #ffffff;
  --color-offset:     #f1ede5;
  --color-divider:    #e4dfd6;
  --color-border:     #d8d3ca;
  --color-text:       #1a1814;
  --color-text-muted: #6a6660;
  --color-text-faint: #b0ada7;
  --color-text-inv:   #ffffff;
  --color-primary:        #01696f;
  --color-primary-hover:  #015459;
  --color-primary-active: #013d40;
  --color-primary-tint:   #e3f2f2;
  --color-accent:         #c8661d;
}

/* ---- DARK ---- */
[data-theme="dark"] {
  --color-bg:         #131210;
  --color-surface:    #1a1916;
  --color-surface-2:  #1f1e1b;
  --color-offset:     #1c1b18;
  --color-divider:    #2a2925;
  --color-border:     #353330;
  --color-text:       #cccac4;
  --color-text-muted: #7a7870;
  --color-text-faint: #52504c;
  --color-text-inv:   #1a1814;
  --color-primary:        #4fa8af;
  --color-primary-hover:  #3d8f96;
  --color-primary-active: #2b7178;
  --color-primary-tint:   #1c3535;
  --color-accent:         #e07830;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #131210; --color-surface: #1a1916; --color-surface-2: #1f1e1b;
    --color-offset: #1c1b18; --color-divider: #2a2925; --color-border: #353330;
    --color-text: #cccac4; --color-text-muted: #7a7870; --color-text-faint: #52504c;
    --color-text-inv: #1a1814;
    --color-primary: #4fa8af; --color-primary-hover: #3d8f96;
    --color-primary-active: #2b7178; --color-primary-tint: #1c3535;
    --color-accent: #e07830;
  }
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s3) var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;   /* light mode: white bg vanishes against white header */
}

[data-theme="dark"] .nav-logo img,
.dark .nav-logo img {
  mix-blend-mode: screen;     /* dark mode: white bg vanishes against dark header */
  filter: invert(1) brightness(1.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s1);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 500;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-md);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
  background: var(--color-primary-tint);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.theme-btn {
  color: var(--color-text-muted);
  padding: var(--s2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
}
.theme-btn:hover { color: var(--color-primary); background: var(--color-primary-tint); }

/* Hamburger */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--color-text); border-radius: 2px;
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-surface-2);
  flex-direction: column;
  padding: var(--s6);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s6);
}
.mobile-close { font-size: var(--text-xl); color: var(--color-text-muted); padding: var(--s2); }
.mobile-drawer a {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 600;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--color-divider);
  letter-spacing: 0.04em;
}
.mobile-drawer a:hover { color: var(--color-primary); }

/* ============================================================
   PAGE SHELL / LAYOUT
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

.section {
  padding: clamp(var(--s16), 7vw, var(--s24)) var(--s6);
}

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

.section-inner.narrow {
  max-width: var(--w-narrow);
}

.section-head {
  text-align: center;
  margin-bottom: clamp(var(--s10), 5vw, var(--s16));
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s4);
  line-height: 1.25;
}

.section-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 58ch;
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #013535;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(1,53,53,0.96) 0%,
    rgba(1,53,53,0.88) 40%,
    rgba(1,53,53,0.55) 65%,
    rgba(1,40,40,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--s16) var(--s8);
  color: white;
  max-width: 700px;
  padding-left: clamp(var(--s8), 8vw, var(--s24));
}

/* Sub-hero (cat/dog/brand pages) */
.page-hero {
  position: relative;
  height: clamp(280px, 45vw, 500px);
  overflow: hidden;
  background: #013535;
  display: flex;
  align-items: flex-end;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,53,53,0.92) 0%, rgba(1,53,53,0.5) 50%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: var(--s8) var(--s8) var(--s10);
  max-width: var(--w-wide);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  margin-bottom: var(--s5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--s4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin-bottom: var(--s6);
}

.hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: var(--s8);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s8);
}
.hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

.hero-nav-btns {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  padding: var(--s3) var(--s7, 1.75rem);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.7); }
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
  padding: var(--s3) var(--s7, 1.75rem);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}
.btn-teal:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--color-primary);
  padding: var(--s6);
}
.features-grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  color: white;
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.feature-text {
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

/* ============================================================
   HOME — HIGHLIGHTS
   ============================================================ */
.highlights-bg { background: var(--color-surface); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.highlight-card {
  background: var(--color-surface-2);
  border-radius: var(--r-xl);
  padding: var(--s8);
  border: 1px solid var(--color-divider);
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary-tint);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto var(--s5);
  color: var(--color-primary);
}

.highlight-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s3);
  line-height: 1.3;
}

.highlight-body {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 100%;
}

/* ============================================================
   HOME — INGREDIENTS SECTION
   ============================================================ */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.ingredients-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/11;
}
.ingredients-img img { width: 100%; height: 100%; object-fit: cover; }

.ingredients-content {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.ingredients-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.ingredients-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.ingredients-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 100%;
}
.ingredients-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ============================================================
   HOME — PRODUCT PREVIEW
   ============================================================ */
.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
}

.preview-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--ease), box-shadow var(--ease);
  aspect-ratio: 4/3;
}
.preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.preview-card:hover img { transform: scale(1.04); }

.preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,53,53,0.9) 0%, rgba(1,53,53,0.3) 55%, transparent 100%);
}
.preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s6) var(--s6);
  color: white;
}
.preview-label {
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s2);
}
.preview-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--s3);
}
.preview-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.preview-link svg { transition: transform var(--ease); }
.preview-card:hover .preview-link svg { transform: translateX(4px); }

/* ============================================================
   PRODUCT PAGES — PRODUCT GRID
   ============================================================ */
.products-bg { background: var(--color-surface); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s6);
}

.product-card {
  background: var(--color-surface-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--color-divider);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-img-box {
  aspect-ratio: 1;
  background: var(--color-offset);
  overflow: hidden;
  position: relative;
}
.product-img-box img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-box img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  background: var(--color-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.product-body {
  padding: var(--s5) var(--s5) var(--s6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.product-series {
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.product-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.product-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  max-width: 100%;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s3);
}
.product-tag {
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

/* ============================================================
   BRAND STORY PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.story-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }

.story-content {}
.story-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s5);
  line-height: 1.25;
}
.story-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: var(--s4);
  max-width: 100%;
}

.story-quote {
  background: var(--color-primary-tint);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: var(--s5) var(--s6);
  margin: var(--s6) 0;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.5;
  max-width: 100%;
}

/* values list */
.values-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  list-style: none;
}
.values-list li {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
}
.value-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary-tint);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-primary);
}
.value-text {}
.value-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--s1);
}
.value-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 100%;
}

/* Mission section */
.mission-sec { background: var(--color-primary); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.mission-content { color: white; }
.mission-lbl {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  margin-bottom: var(--s4);
  font-family: var(--font-body);
}
.mission-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--s5);
}
.mission-body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: var(--s5);
  max-width: 100%;
}
.mission-stat {
  display: flex;
  gap: var(--s4);
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
}
.mission-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  line-height: 1;
}
.mission-lbl-sm {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.mission-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  aspect-ratio: 4/3;
}
.mission-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a2828;
  color: rgba(255,255,255,0.75);
  padding: var(--s16) var(--s6) var(--s8);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s8);
}

.footer-logo { margin-bottom: var(--s4); }
.footer-logo img {
  height: 56px; width: auto;
  filter: invert(1) brightness(2);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: white;
  margin-bottom: var(--s3);
}
.footer-address {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: var(--s4);
}
.footer-social {
  display: flex;
  gap: var(--s3);
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-social a:hover { background: var(--color-primary); color: white; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-copy {
  font-size: var(--text-xs);
  font-family: var(--font-body);
  color: rgba(255,255,255,0.35);
}
.footer-pplx {
  font-size: var(--text-xs);
  font-family: var(--font-body);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-pplx:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .ingredients-grid, .story-grid, .mission-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .preview-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .hero-content { padding-left: var(--s6); padding-right: var(--s6); }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; gap: var(--s3); }
  .hero-nav-btns { flex-direction: column; }
}
