/* =====================================================
   Takasago Noodles Co., Ltd. — International Brand Site
   Global Stylesheet
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --bg:          #FAFAF8;
  --bg-alt:      #F3EFE6;
  --bg-dark:     #1C1917;
  --bg-darker:   #111110;
  --accent:      #8B1A1A;
  --accent-light:#B02A2A;
  --gold:        #B8933E;
  --gold-light:  #D4AF6A;
  --text:        #1C1917;
  --text-mid:    #4A4540;
  --text-muted:  #7A7470;
  --text-light:  #F8F6F0;
  --border:      #DDD8CE;
  --border-dark: #333;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-cormo:  'Cormorant Garamond', Georgia, serif;

  --max-w:       1200px;
  --nav-h:       80px;
  --section-pad: 100px;
  --radius:      4px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.page-contact {
  overflow-x: hidden;
}

body.page-products,
body.page-product-detail {
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-mid); }

.label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}
.section-heading .label { margin-bottom: 12px; }
.section-heading h2 { color: var(--text); }
.section-heading p {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-inline: auto;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-pad {
  padding-block: var(--section-pad);
}

.section-pad-sm {
  padding-block: 60px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(28, 25, 23, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.site-logo .logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.site-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 100;
}
.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--accent-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 16px 0;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 8px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: auto;
  min-height: max(600px, 100svh);
  display: flex;
  align-items: flex-start;
  padding-top: clamp(120px, 15vh, 176px);
  padding-bottom: 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 68% center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,25,23,0.75) 0%,
    rgba(28,25,23,0.45) 60%,
    rgba(139,26,26,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: -18px;
  margin-top: 0;
}

.hero-content .label {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.9) 0%, rgba(28,25,23,0.3) 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
  width: 100%;
}

.page-hero-content .label { margin-bottom: 10px; }
.page-hero-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }

.history-intro {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  background:
    radial-gradient(circle at top left, rgba(184,147,62,0.16), transparent 34%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

.history-intro::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, rgba(184,147,62,0.6) 18%, rgba(27, 55, 99, 0.26) 50%, rgba(184,147,62,0.6) 82%, transparent 100%);
}

.history-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}

.history-intro-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
}

.history-intro-copy p:last-child {
  max-width: 720px;
  font-size: 1.02rem;
  line-height: 1.95;
  color: var(--text-mid);
}

.history-intro-milestones {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.history-intro-milestones::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,147,62,0.18), rgba(27,55,99,0.32));
}

.history-milestone-card {
  position: relative;
  padding: 18px 20px 18px 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(27,55,99,0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(30, 45, 90, 0.06);
}

.history-milestone-card::before {
  content: '';
  position: absolute;
  top: -31px;
  left: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184,147,62,0.12);
}

.history-milestone-card span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent);
}

.history-milestone-card strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.president-hero {
  min-height: 440px;
}

.president-hero .page-hero-content {
  padding-bottom: 56px;
  max-width: 680px;
}

/* --- About Strip (on TOP page) --- */
.about-strip {
  background: var(--bg-dark);
  padding-block: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-text .label { margin-bottom: 12px; }
.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text p { color: rgba(255,255,255,0.72); line-height: 1.9; margin-bottom: 16px; }
.about-text .btn { margin-top: 16px; }

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 43 / 24;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.about-image img.about-image-portrait {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 8%;
}
.about-image:hover img { transform: scale(1.04); }

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 80px;
  align-items: center;
}

.about-story-text,
.about-story-image {
  min-width: 0;
}

.about-story-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-story-image img.about-story-image-top {
  object-position: center top;
}

.about-story-image:hover img { transform: scale(1.04); }

/* --- Pillars Section --- */
.pillars {
  background: var(--bg);
  padding-block: var(--section-pad);
}

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

.pillar-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s;
}
.pillar-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.pillar-icon {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-alt);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.pillar-icon img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
}

.pillar-card .label { margin-bottom: 8px; }
.pillar-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.pillar-card p { font-size: 0.92rem; line-height: 1.75; }

/* --- Products Grid --- */
.products-section {
  background: var(--bg-alt);
  padding-block: var(--section-pad);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

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

.product-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.stats-section {
  background: var(--bg-alt);
  padding-block: 72px;
}

.stats-grid,
.stats-grid.stagger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  min-width: 0;
  padding: 28px 22px;
  text-align: center;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(139, 26, 26, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(30, 45, 90, 0.06);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  margin-top: 12px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s;
}
.product-card-link:hover { gap: 10px; }
.product-card-link svg { width: 14px; height: 14px; }

.mobile-split-card {
  grid-template-columns: 1fr 1fr;
}

.mobile-two-column {
  grid-template-columns: 1fr 1fr;
}

.mobile-feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mobile-four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mobile-photo-grid {
  grid-template-columns: 1fr 1fr;
}

.factory-tour-photo-grid img {
  display: block;
}

/* --- Company Values Section --- */
.values-section {
  background: var(--bg-dark);
  padding-block: var(--section-pad);
  text-align: center;
}

.values-section .section-heading h2 { color: var(--white); }
.values-section .section-heading p { color: rgba(255,255,255,0.65); }
.values-section .label { color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s;
}
.value-card:hover {
  border-color: var(--gold);
  background: rgba(184,147,62,0.08);
}

.value-number {
  font-family: var(--font-cormo);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.value-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }

/* --- CTA Section --- */
.cta-section {
  background: var(--accent);
  padding-block: 80px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Divider --- */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block: 48px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-text {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Detail Page Layout --- */
.product-detail {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 100px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

.product-detail-images {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.product-main-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info .label { margin-bottom: 12px; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; }
.product-detail-info .tagline {
  font-family: var(--font-cormo);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.product-detail-info .description {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* Ingredients Table */
.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.ingredients-table th,
.ingredients-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.ingredients-table th {
  width: 35%;
  color: var(--text-muted);
  font-weight: 500;
}
.ingredients-table td { color: var(--text); }

/* Nutrition */
.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: var(--bg-alt);
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.nutrition-item { text-align: center; }
.nutrition-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 600;
}
.nutrition-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Recipe Section */
.recipe-section {
  background: var(--bg-alt);
  padding: 48px;
  border-radius: var(--radius);
  margin-top: 40px;
}
.recipe-section h3 { margin-bottom: 24px; }
.recipe-steps { display: flex; flex-direction: column; gap: 20px; }
.recipe-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.step-text { padding-top: 6px; font-size: 0.95rem; line-height: 1.75; }

/* Product features */
.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.feature-card h4 { margin-bottom: 10px; font-size: 0.95rem; }
.feature-card p { font-size: 0.88rem; }

/* --- About Page --- */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-bottom: 80px;
}

.about-pillar {
  padding: 60px 48px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.about-pillar:last-child { border-right: none; }
.about-pillar-icon {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
}
.about-pillar-icon img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
}
.about-pillar .label { margin-bottom: 8px; }
.about-pillar h3 { margin-bottom: 16px; }
.about-pillar p { font-size: 0.92rem; }

.slideshow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.slideshow img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius);
  width: 100%;
}

/* --- Company Page --- */
.company-overview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.company-gallery {
  display: grid;
  gap: 18px;
}

.company-gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.company-gallery-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.company-gallery-card-lg img {
  aspect-ratio: 5/4;
}

.company-gallery-card figcaption {
  padding: 14px 16px 16px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid var(--border);
}
.info-table th {
  padding: 16px 20px 16px 0;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  width: 180px;
  vertical-align: top;
}
.info-table td {
  padding: 16px 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.access-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.access-card h4 { margin-bottom: 16px; font-size: 1rem; }
.access-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.access-icon { flex-shrink: 0; color: var(--accent); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* --- History Timeline --- */
.timeline {
  position: relative;
  padding-left: 60px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.timeline-item:hover .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 6px;
}

.timeline-year span {
  font-size: 0.75rem;
  color: var(--gold);
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 12px;
  vertical-align: middle;
}

.timeline-content p { font-size: 0.92rem; }

.timeline-milestone .timeline-dot {
  border-color: var(--gold);
  background: var(--gold);
  width: 20px;
  height: 20px;
  left: -50px;
}
.timeline-milestone .timeline-year { color: var(--accent); font-size: 2.2rem; }

.history-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.history-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.history-sidebar-photo {
  margin-bottom: 24px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 18px 40px rgba(30, 45, 90, 0.08);
}

.history-sidebar-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- President Page --- */
.president-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.president-photo {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.president-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.president-name-tag {
  margin-top: 20px;
  text-align: center;
}
.president-name-tag .name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.president-name-tag .title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.president-message h2 { margin-bottom: 28px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.president-message p { margin-bottom: 20px; line-height: 1.9; }
.president-message blockquote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.president-message blockquote p {
  font-family: var(--font-cormo);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
}

/* --- Philosophy Page --- */
.philosophy-hero {
  text-align: center;
  padding-block: var(--section-pad);
}

.philosophy-main {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  color: var(--text);
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.philosophy-card {
  padding: 48px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}
.philosophy-card .label { margin-bottom: 12px; }
.philosophy-card h3 { margin-bottom: 20px; }
.philosophy-card p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 12px; }

.guidelines-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.guideline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.guideline-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Factory Page --- */
.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
  border-radius: var(--radius);
  overflow: hidden;
}

.factory-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.factory-photo:hover img { transform: scale(1.04); }
.factory-photo { overflow: hidden; }

/* --- Contact Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}

.contact-info h3 { margin-bottom: 24px; }
.contact-detail {
  margin-bottom: 28px;
}
.contact-detail .detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-detail p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }
.contact-detail a { color: var(--accent); }

.contact-form-group {
  margin-bottom: 24px;
}
.contact-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.contact-form-group label .required {
  color: var(--accent);
  margin-left: 4px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s;
  outline: none;
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--accent);
}
.contact-form-group textarea { resize: vertical; min-height: 140px; }

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

.contact-panel {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.contact-intro-card,
.tour-guidelines,
.tour-notes,
.tour-meta,
.inline-note {
  border-radius: 4px;
}

.contact-intro-card,
.inline-note {
  background: var(--bg-alt);
}

.contact-intro-card {
  padding: 20px 22px;
  margin-bottom: 28px;
}

.contact-intro-card p,
.tour-guidelines p,
.tour-notes li,
.inline-note p {
  font-size: 0.88rem;
  line-height: 1.8;
}

.tour-section {
  display: none;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.tour-section.is-visible {
  display: block;
}

.tour-guidelines {
  background: #f7f4ed;
  border: 1px solid var(--border);
  padding: 22px;
  margin-bottom: 28px;
}

.tour-guidelines ul,
.tour-notes ul {
  list-style: disc;
  padding-left: 1.2rem;
}

.prose-list,
.prose-list ul,
.prose-list ol {
  padding-left: 1.2rem;
}

.prose-list ul,
.prose-list ol {
  margin-top: 12px;
}

.prose-list ul {
  list-style: disc;
}

.prose-list ol {
  list-style: decimal;
}

.tour-guidelines ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

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

.tour-meta-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 18px;
}

.tour-meta-card strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.tour-meta-card span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
  cursor: pointer;
}

.radio-card input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
  cursor: pointer;
}

.checkbox-chip input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.tour-notes {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.78);
  padding: 22px;
  margin-bottom: 24px;
}

.tour-notes .label {
  color: var(--gold-light);
  margin-bottom: 10px;
}

.tour-notes ul {
  display: grid;
  gap: 8px;
}

.inline-note {
  padding: 16px 20px;
  margin-bottom: 24px;
}

.inline-note p {
  color: var(--text-muted);
}

.captcha-wrap {
  max-width: 100%;
}

.captcha-wrap .h-captcha {
  max-width: 100%;
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,147,62,0.55) 18%, rgba(184,147,62,0.14) 50%, transparent 100%);
}

.footer-main {
  padding-block: 64px 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
}

.footer-brand .logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand .logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,147,62,0.1);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  line-height: 1.65;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 20px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger.visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 0.6s; }

/* --- Utility --- */
.bg-dark { background: var(--bg-dark); }
.bg-alt  { background: var(--bg-alt); }
.text-center { text-align: center; }
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 80px; }
.gold { color: var(--gold); }

.history-page-top {
  padding-top: var(--nav-h);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumbs a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--border); }

/* --- Badge --- */
.award-badge {
  display: inline-flex;
  align-items: flex-start;
  align-self: flex-start;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(184,147,62,0.12);
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.award-badge svg { width: 14px; height: 14px; }
.award-badge span {
  display: block;
  line-height: 1.45;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-h: 64px; }

  .site-header {
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }
  .header-inner {
    padding-inline: 16px;
  }
  .site-logo {
    max-width: calc(100% - 64px);
    gap: 4px;
  }
  .site-logo .logo-main {
    font-size: 1rem;
  }
  .site-logo .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle {
    flex-shrink: 0;
    margin-left: 12px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 96px;
  }
  .hero-bg { background-position: 62% center; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(28,25,23,0.82) 0%,
      rgba(28,25,23,0.6) 38%,
      rgba(28,25,23,0.42) 100%
    );
  }
  .hero-content {
    max-width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
  .hero-content .label {
    margin-bottom: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .hero-content h1 {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
    margin-bottom: 18px;
    max-width: 10ch;
  }
  .hero-content p { max-width: 100%; }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 26rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }

  .about-grid,
  .about-story-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-grid.reverse { direction: ltr; }
  .about-story-image {
    order: -1;
  }
  .about-story-image img {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }
  .about-image img {
    min-height: 240px;
  }

  .pillars-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid,
  .stats-grid.stagger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .stat-label {
    overflow-wrap: anywhere;
  }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .president-hero {
    min-height: 360px;
  }
  .president-hero .page-hero-content {
    padding-bottom: 40px;
    max-width: 100%;
  }

  .products-section {
    padding-top: 56px;
    padding-bottom: 32px;
  }
  .about-strip {
    padding-top: 32px;
    padding-bottom: 56px;
  }

  .product-detail {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 72px;
  }
  .product-detail-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .product-detail-images { position: static; }
  .product-main-image { aspect-ratio: 4 / 3; }
  .page-product-detail .container,
  .page-product-detail .product-detail-grid > *,
  .page-product-detail .product-detail-info,
  .page-product-detail .feature-card,
  .page-product-detail .recipe-section,
  .page-product-detail .product-card-body,
  .page-product-detail .ingredients-table,
  .page-product-detail .ingredients-table th,
  .page-product-detail .ingredients-table td { min-width: 0; }
  .product-detail-info .tagline {
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .product-detail-info .description { margin-bottom: 24px; }
  .page-product-detail .ingredients-table,
  .page-product-detail .ingredients-table tbody,
  .page-product-detail .ingredients-table tr,
  .page-product-detail .ingredients-table th,
  .page-product-detail .ingredients-table td {
    display: block;
    width: 100%;
  }
  .page-product-detail .ingredients-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .page-product-detail .ingredients-table th {
    padding: 0 0 8px;
    white-space: normal;
    letter-spacing: 0.06em;
  }
  .page-product-detail .ingredients-table td {
    padding: 0;
    overflow-wrap: anywhere;
  }
  .page-product-detail .recipe-section {
    padding: 32px 24px;
  }
  .page-product-detail .recipe-step {
    gap: 16px;
  }
  .page-product-detail .step-text {
    padding-top: 2px;
  }
  .page-product-detail .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-products .container {
    min-width: 0;
  }
  .page-products .mobile-split-card > div {
    min-width: 0;
  }
  .page-products .mobile-split-card > div:first-child,
  .page-products .mobile-split-card > div:last-child {
    width: 100%;
  }
  .page-products .mobile-split-card img {
    min-height: 260px !important;
  }
  .page-products .mobile-image-first-fix > div:first-child {
    order: 2;
  }
  .page-products .mobile-image-first-fix > div:last-child {
    order: 1;
  }
  .page-products .mobile-split-card > div:last-child {
    padding: 32px 24px !important;
  }
  .page-products .mobile-split-card h2 {
    font-size: 1.55rem !important;
    line-height: 1.2;
  }
  .page-products .mobile-split-card p {
    overflow-wrap: anywhere;
  }
  .page-products .mobile-split-card .btn {
    width: 100%;
    justify-content: center;
    align-self: stretch !important;
  }
  .page-products .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-pillars { grid-template-columns: 1fr; }
  .about-pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .about-pillar:last-child { border-bottom: none; }
  .history-intro {
    padding: 40px 0 32px;
  }
  .history-intro-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .history-intro-copy h1 {
    font-size: clamp(2.2rem, 7vw, 3.8rem);
  }
  .history-intro-milestones {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 24px;
  }
  .history-layout { grid-template-columns: 1fr; gap: 32px; }
  .history-sidebar {
    position: static;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
  .pillar-icon {
    max-width: 240px;
  }
  .about-pillar-icon {
    max-width: 240px;
  }

  .company-overview { grid-template-columns: 1fr; }
  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr {
    padding: 16px 0;
  }
  .info-table th {
    padding: 0 0 8px;
    white-space: normal;
    letter-spacing: 0.08em;
  }
  .info-table td {
    padding: 0;
    overflow-wrap: anywhere;
  }
  .access-grid { grid-template-columns: 1fr; }
  .president-layout { grid-template-columns: 1fr; }
  .president-photo { position: static; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .factory-grid { grid-template-columns: 1fr 1fr; }
  .mobile-split-card,
  .mobile-two-column,
  .mobile-feature-grid,
  .mobile-four-grid,
  .mobile-photo-grid { grid-template-columns: 1fr; }
  .factory-tour-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .factory-tour-photo-grid img {
    aspect-ratio: 4 / 3 !important;
  }
  .factory-tour-photo-grid img:nth-child(2) {
    margin-top: 12px !important;
  }
  .factory-tour-photo-grid img:nth-child(3) {
    margin-top: -12px !important;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { padding: 32px 20px; }
  .page-contact .container,
  .page-contact .contact-layout > *,
  .page-contact .contact-panel,
  .page-contact .contact-form-group,
  .page-contact .tour-guidelines,
  .page-contact .tour-notes,
  .page-contact .tour-meta-card,
  .page-contact .inline-note,
  .page-contact .radio-card,
  .page-contact .checkbox-chip,
  .page-contact .page-hero,
  .page-contact .page-hero-content { min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nutrition-grid { grid-template-columns: repeat(3, 1fr); }
  .product-features { grid-template-columns: 1fr; }
  .slideshow { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid,
  .radio-grid,
  .tour-meta { grid-template-columns: 1fr; }
  .page-contact .captcha-wrap {
    overflow: hidden;
  }
  .page-contact .captcha-wrap .h-captcha {
    transform-origin: left top;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 14px;
  }
  .site-logo .logo-main {
    font-size: 0.94rem;
  }
  .site-logo .logo-sub {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 22px);
    padding-bottom: 84px;
  }
  .hero-bg {
    background-position: 66% center;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 12vw, 3rem);
    line-height: 1.06;
  }
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.68;
  }
  .stats-grid,
  .stats-grid.stagger {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-section {
    padding-block: 56px;
  }
  .stat-card {
    padding: 24px 18px;
  }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero { height: 300px; }
  .president-hero {
    min-height: 300px;
  }
  .page-products .page-hero,
  .page-product-detail .page-hero {
    height: 260px;
  }
  .factory-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .factory-photo img {
    aspect-ratio: 3 / 2;
  }
  .factory-photo:last-child {
    grid-column: 1 / -1;
  }
  .mobile-photo-grid { grid-template-columns: 1fr; }
  .factory-tour-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .factory-tour-photo-grid img {
    aspect-ratio: 4 / 3 !important;
  }
  .factory-tour-photo-grid img:nth-child(2),
  .factory-tour-photo-grid img:nth-child(3) {
    margin-top: 0 !important;
  }
  .about-story-image img {
    aspect-ratio: 5 / 4;
    min-height: 220px;
  }
  .about-image img {
    min-height: 200px;
  }
  .history-intro {
    padding: 32px 0 24px;
  }
  .history-intro-milestones {
    grid-template-columns: 1fr;
  }
  .page-contact .container {
    padding-inline: 16px;
  }
  .page-contact .contact-panel {
    padding: 24px 16px;
  }
  .page-contact .captcha-wrap {
    min-height: 72px;
  }
  .page-contact .captcha-wrap .h-captcha {
    transform: scale(0.84);
    width: 303px;
    height: 78px;
    margin-bottom: -12px;
  }
  .page-products .container,
  .page-product-detail .container {
    padding-inline: 16px;
  }
  .page-products .mobile-split-card > div:last-child {
    padding: 24px 16px !important;
  }
  .page-products .mobile-split-card img {
    min-height: 220px !important;
  }
  .page-products .mobile-split-card h2,
  .page-product-detail .product-detail-info h1 {
    font-size: clamp(1.7rem, 8vw, 2.25rem) !important;
  }
  .page-products .mobile-split-card .award-badge,
  .page-product-detail .award-badge {
    width: fit-content;
    max-width: 100%;
    line-height: 1.5;
  }
  .page-products .mobile-split-card .award-badge svg,
  .page-product-detail .award-badge svg {
    margin-top: 0.1em;
    flex-shrink: 0;
  }
  .page-product-detail .product-detail {
    padding-top: calc(var(--nav-h) + 28px);
    padding-bottom: 60px;
  }
  .page-product-detail .product-detail-grid {
    gap: 22px;
    margin-bottom: 44px;
  }
  .page-product-detail .nutrition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
  }
  .page-product-detail .nutrition-item {
    padding: 8px 4px;
  }
  .page-product-detail .nutrition-value {
    font-size: 1.12rem;
  }
  .page-product-detail .nutrition-label {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }
  .page-product-detail .recipe-section {
    padding: 24px 16px;
    margin-top: 28px;
  }
  .page-product-detail .recipe-step {
    flex-direction: column;
    gap: 10px;
  }
  .page-product-detail .step-num {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }
  .page-product-detail .step-text {
    font-size: 0.9rem;
    line-height: 1.7;
    padding-top: 0;
  }
  .page-product-detail .feature-card {
    padding: 22px 18px;
  }
  .page-product-detail .feature-card h4 {
    font-size: 0.92rem;
  }
  .page-product-detail .feature-card p {
    font-size: 0.86rem;
    overflow-wrap: anywhere;
  }
  .page-product-detail .products-grid,
  .page-product-detail .slideshow {
    grid-template-columns: 1fr;
  }
  .pillar-icon,
  .about-pillar-icon {
    width: 100%;
  }
  .pillar-icon {
    max-width: 220px;
  }
  .about-pillar-icon {
    max-width: 220px;
  }
  .product-main-image { aspect-ratio: 5 / 4; }
  .products-section {
    padding-top: 48px;
    padding-bottom: 24px;
  }
  .about-strip {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}
