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

:root {
  --primary: #1a1a1a;
  --accent: #b89b6a;
  --accent-soft: #d4c4a0;
  --text: #333;
  --text-light: #777;
  --text-muted: #aaa;
  --bg: #fff;
  --bg-warm: #f8f6f1;
  --bg-cool: #f3f1ec;
  --border: #e4e0d8;
  --radius: 0;
  --transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  --serif: "Cormorant Garamond", "Noto Serif JP", Georgia, serif;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; transition: all var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.06); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1140px; margin: 0 auto; padding: 0 40px; height: 80px;
  transition: height 0.4s ease;
}
.header.scrolled .header-inner { height: 64px; }
.header.scrolled .logo img { width: 170px; transition: width 0.4s ease; }

.logo { display: flex; align-items: center; }
.logo img { height: auto; width: 200px; transition: width 0.4s ease; }
.footer-brand .logo img {
  height: auto; width: 220px;
  filter: brightness(0) invert(1);
}
.footer-brand .logo { background: transparent; }

.nav-list { display: flex; align-items: center; gap: 36px; }
.nav-list a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
  color: var(--text-light); text-transform: uppercase;
}
.nav-list a:hover, .nav-list a.active { color: var(--primary); }

.nav-cta {
  font-size: 0.75rem !important; letter-spacing: 0.1em !important;
  padding: 10px 24px; border: 1px solid var(--primary);
  color: var(--primary) !important; transition: all var(--transition);
}
.nav-cta:hover { background: var(--primary); color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1px; background: var(--primary); transition: var(--transition); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0f0f0f 0%, var(--primary) 40%, #1f1a14 100%);
  overflow: hidden; margin-top: 80px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,155,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 80px; width: 100%;
}
.hero-text { position: relative; z-index: 2; padding: 60px 0; }
.hero-label {
  font-size: 0.65rem; letter-spacing: 0.35em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 40px; display: block;
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 300;
  line-height: 1.8; margin-bottom: 48px; color: #fff;
  letter-spacing: 0.04em;
}
.hero h1 strong { font-weight: 600; }
.hero h1 em {
  font-style: italic; font-size: 1.1em;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  background: none;
}
.hero-desc {
  font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 2.6;
  max-width: 460px; letter-spacing: 0.06em;
}
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 500px;
}

/* Hero SVG Visual */
.hero-svg-container {
  position: relative; width: 100%; height: 600px;
  display: flex; align-items: center; justify-content: center;
}

/* Sub-page Hero */
.hero--sub {
  min-height: 45vh; background: linear-gradient(160deg, #0f0f0f 0%, var(--primary) 50%, #1f1a14 100%);
}
.hero--sub .hero-text { padding: 60px 0; }
.hero--sub .hero-label { color: var(--accent); }
.hero--sub .hero-desc { color: rgba(255,255,255,0.5); }
.hero--sub h1 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* ===== Sections ===== */
.section { padding: 140px 0; }
.section--warm { background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%); }
.section--cool { background: linear-gradient(180deg, var(--bg-cool) 0%, #fff 100%); }

.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
  display: block; font-size: 0.58rem; letter-spacing: 0.4em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}
.section-title {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 300;
  letter-spacing: 0.06em; color: var(--primary); line-height: 1.7;
}
.section-desc {
  margin-top: 24px; font-size: 0.85rem; color: var(--text-light);
  max-width: 520px; margin-inline: auto; line-height: 2.2;
}

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg); padding: 52px 40px;
  border: none; transition: all var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transform: translateY(0);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transform-origin: center; transition: transform var(--transition);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }

.card-num {
  font-family: "Inter", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 24px;
}
.card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 18px;
  color: var(--primary); letter-spacing: 0.04em;
}
.card p { font-size: 0.85rem; color: var(--text-light); line-height: 2.2; }

/* Icon cards with SVG */
.card-icon-svg {
  width: 48px; height: 48px; margin-bottom: 24px; opacity: 0.7;
}

/* ===== Tables ===== */
.info-table { width: 100%; max-width: 800px; margin: 0 auto; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table th, .info-table td {
  padding: 24px 20px; text-align: left; font-size: 0.88rem;
  vertical-align: top; line-height: 2;
}
.info-table th {
  width: 160px; font-weight: 400; color: var(--text-light);
  letter-spacing: 0.06em; white-space: nowrap;
}
.info-table td { color: var(--text); }

/* ===== Values Grid ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; }
.value-item { text-align: center; }
.value-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
  color: var(--accent); line-height: 1; margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.value-label {
  font-size: 0.65rem; letter-spacing: 0.2em; color: var(--text-muted);
  text-transform: uppercase; margin-bottom: 24px;
  font-family: "Inter", sans-serif;
}
.value-text { font-size: 0.85rem; color: var(--text-light); line-height: 2.4; }

/* ===== Position Cards (Recruit/Partner) ===== */
.position-card {
  border: 1px solid var(--border); padding: 36px 32px;
  margin-bottom: 20px; transition: all var(--transition);
  background: var(--bg);
}
.position-card:hover { border-color: var(--accent-soft); }
.position-card h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--primary);
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.position-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.position-tag {
  font-size: 0.7rem; padding: 4px 14px; letter-spacing: 0.06em;
  border: 1px solid var(--border); color: var(--text-light);
}
.position-card p { font-size: 0.85rem; color: var(--text-light); line-height: 2; }

/* ===== Steps ===== */
.steps { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 56px; }
.step {
  flex: 1; min-width: 200px; max-width: 240px; text-align: center;
  padding: 36px 20px; position: relative;
}
.step-num {
  font-family: "Inter", sans-serif; font-size: 0.7rem; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 16px;
}
.step h4 { font-size: 0.92rem; font-weight: 500; margin-bottom: 10px; color: var(--primary); }
.step p { font-size: 0.8rem; color: var(--text-light); line-height: 1.9; }
.step-line {
  position: absolute; top: 20px; right: -16px;
  width: 32px; height: 1px; background: var(--border);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 44px; font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.18em; transition: all var(--transition);
  border: none; cursor: pointer; text-transform: uppercase;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--accent); }
.btn--outline {
  border: 1px solid var(--accent); color: var(--primary); background: transparent;
}
.btn--outline:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #a68a58; }
.btn--white { background: #fff; color: var(--primary); }
.btn--white:hover { background: var(--bg-warm); }
.btn--dark { background: var(--primary); color: #fff; }
.btn--dark:hover { background: var(--accent); }
.btn-group { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

/* Buttons on dark backgrounds (hero, cta-section) */
.hero .btn--primary, .hero .btn--dark { background: #fff; color: var(--primary); }
.hero .btn--primary:hover, .hero .btn--dark:hover { background: var(--accent); color: #fff; }
.hero .btn--outline { border-color: rgba(255,255,255,0.3); color: #fff; }
.hero .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ===== CTA Section ===== */
.cta-section {
  padding: 120px 0; text-align: center;
  background: var(--primary); color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184,155,106,0.08) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
  letter-spacing: 0.06em; margin-bottom: 20px;
}
.cta-section p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 40px; letter-spacing: 0.06em; }

/* ===== Divider ===== */
.divider {
  width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 36px auto;
  position: relative;
}
.divider::after {
  content: "\25C7"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem; color: var(--accent); background: var(--bg);
  padding: 0 8px; line-height: 1;
}
.section--warm .divider::after { background: var(--bg-warm); }
.section--cool .divider::after { background: var(--bg-cool); }
.hero .divider::after { background: transparent; color: var(--accent); }

/* ===== Page Nav (Anchor Menu) ===== */
.page-nav {
  position: sticky; top: 80px; z-index: 90;
  background: #ffffff; backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.page-nav-list {
  display: flex; justify-content: center; gap: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.page-nav-list li { flex-shrink: 0; }
.page-nav-list a {
  display: block; padding: 16px 24px;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--text-light); transition: all 0.3s ease;
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.page-nav-list a:hover { color: var(--primary); }
.page-nav-list a.active {
  color: var(--primary); border-bottom-color: var(--accent);
}

/* ===== Footer ===== */
.footer {
  background: #111; color: rgba(255,255,255,0.35);
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-brand p { font-size: 0.82rem; line-height: 2; }
.footer-links h4 {
  color: rgba(255,255,255,0.6); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 0.82rem; padding: 5px 0;
  color: rgba(255,255,255,0.4);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.1em;
}
.social-links { display: flex; gap: 14px; margin-top: 14px; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4); transition: all 0.3s ease;
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
.social-links a[aria-label="LINE"] { color: #fff; }
.social-links a[aria-label="LINE"]:hover { opacity: 0.8; border-color: #06C755; }
.social-links a[aria-label="LINE"] svg { fill: #fff; }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in-d1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-d2 { animation-delay: 0.3s; opacity: 0; }
.fade-in-d3 { animation-delay: 0.5s; opacity: 0; }

/* Scroll Reveal Animation */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== Tech Visual Elements ===== */
.tech-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.tech-particles .dot {
  position: absolute; border-radius: 50%;
  background: var(--accent); opacity: 0;
  animation: particleFade 4s infinite ease-in-out;
}
@keyframes particleFade {
  0%, 100% { opacity: 0; transform: scale(0.5) translateY(0); }
  50% { opacity: 0.4; transform: scale(1) translateY(-10px); }
}
.tech-line {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  opacity: 0.2;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex; align-items: center; gap: 2px; margin-left: 16px;
}
.lang-btn {
  padding: 4px 8px; font-size: 0.65rem; letter-spacing: 0.06em;
  color: var(--text-muted); background: transparent; border: 1px solid transparent;
  cursor: pointer; transition: all 0.3s ease; font-family: "Inter", sans-serif;
}
.lang-btn:hover { color: var(--primary); }
.lang-btn.active { color: var(--primary); border-color: var(--accent); background: var(--bg-warm); }
.lang-divider { color: var(--border); font-size: 0.6rem; }

/* ===== Cookie Consent ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(30,30,30,0.95); backdrop-filter: blur(10px);
  padding: 20px 40px; display: none;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  line-height: 1.8; flex: 1; min-width: 280px;
}
.cookie-inner a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 24px; font-size: 0.75rem; letter-spacing: 0.08em;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--accept:hover { background: #a68a58; }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.7); }

/* ===== Ingredient Modal ===== */
.ing-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.ing-modal-overlay.show { visibility: visible; opacity: 1; pointer-events: auto; }
.ing-modal {
  background: var(--bg); max-width: 520px; width: 90%;
  max-height: 80vh; overflow-y: auto;
  padding: 36px; position: relative;
  border: 1px solid var(--border);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.ing-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 1.2rem;
  color: var(--text-light); cursor: pointer; padding: 4px 8px;
}
.ing-modal-close:hover { color: var(--primary); }
.ing-modal h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--primary);
  margin-bottom: 4px; letter-spacing: 0.04em;
}
.ing-modal .ing-modal-cat {
  font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.ing-modal table { width: 100%; border-collapse: collapse; }
.ing-modal table th {
  width: 100px; padding: 8px 10px; font-size: 0.75rem; font-weight: 400;
  color: var(--text-light); border-bottom: 1px solid var(--border);
  vertical-align: top; white-space: nowrap;
}
.ing-modal table td {
  padding: 8px 10px; font-size: 0.8rem; color: var(--text);
  border-bottom: 1px solid var(--border); line-height: 1.7;
}
.ing-modal-link {
  display: block; text-align: center; margin-top: 24px;
  font-size: 0.82rem; color: var(--accent); text-decoration: underline;
  letter-spacing: 0.04em;
}
.ing-modal-link:hover { color: #a68a58; }

/* ===== Responsive: Tablet (<=1024px) ===== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { gap: 32px; }
  .values-grid { gap: 32px; }
  .card-grid { gap: 24px; }
  .footer-inner { gap: 40px; }
}

/* ===== Responsive: Mobile (<=768px) ===== */
@media (max-width: 768px) {
  /* Header */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #ffffff; }
  .header-inner { padding: 0 16px; height: 60px; }
  .header.scrolled .header-inner { height: 60px; }
  .header.scrolled .logo img { width: 160px; }
  .hamburger { display: flex; z-index: 10001; position: relative; }
  .nav-list {
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: #ffffff !important;
    display: flex !important; flex-direction: column !important;
    align-items: center !important; justify-content: center !important; gap: 28px !important;
    transform: translateX(100%); transition: transform 0.3s ease;
    z-index: 10000 !important;
    overflow-y: auto;
    padding-top: 60px;
  }
  .nav-list.open { transform: translateX(0) !important; }
  .nav-list a { font-size: 1.05rem; letter-spacing: 0.15em; }
  .nav-cta { margin-top: 12px; }
  .lang-switcher { display: none !important; }
  .nav-list .lang-switcher-mobile { display: flex !important; margin-top: 24px; gap: 2px; }
  .logo img { width: 160px; }

  /* Hero */
  .hero { margin-top: 60px; min-height: auto; padding: 48px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-visual { min-height: 200px; display: none; }
  .hero--sub { min-height: auto; padding: 40px 0; }
  .hero--sub .hero-inner { grid-template-columns: 1fr; }
  .hero--sub .hero-visual { display: none; }
  .hero-desc { font-size: 0.82rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }

  /* Sections */
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 1.4rem; }
  .section-desc { font-size: 0.82rem; }
  .container { padding: 0 20px; }

  /* Values Grid */
  .values-grid { grid-template-columns: 1fr; gap: 32px; }
  .value-num { font-size: 2rem; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 20px; }
  .card-grid--2 { grid-template-columns: 1fr; }
  .card { padding: 28px 24px; }

  /* Tables */
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { border-bottom: none; padding-bottom: 2px; font-size: 0.75rem; }
  .info-table td { padding-top: 2px; }

  /* Steps */
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; width: 100%; }
  .step-line { display: none; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .logo img { width: 180px; }

  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 1.3rem; }

  /* Page Nav */
  .page-nav { top: 60px; }
  .page-nav-list { justify-content: flex-start; padding: 0 12px; gap: 0; }
  .page-nav-list a { padding: 12px 14px; font-size: 0.7rem; }

  /* Position Cards */
  .position-card { padding: 24px 20px; }
  .position-meta { gap: 6px; }
  .position-tag { font-size: 0.65rem; padding: 3px 10px; }

  /* Ingredient Cards */
  .ingredient-card { padding: 24px 20px; }
  .ingredient-table th { width: 80px; font-size: 0.7rem; padding: 8px 6px; }
  .ingredient-table td { font-size: 0.78rem; padding: 8px 6px; }

  /* Blog/Article Cards */
  .article-card { padding: 24px 20px; }
  .article-card h3 { font-size: 0.88rem; }

  /* Category buttons */
  .cat-btn { padding: 6px 12px; font-size: 0.68rem; }

  /* Level filter buttons */
  .level-btn { padding: 5px 12px; font-size: 0.68rem; }
  .level-filter { gap: 6px; }

  /* Uni nav (blog tabs) */
  .uni-nav a { padding: 14px 20px; font-size: 0.78rem; }

  /* Search box */
  .search-box input { font-size: 0.82rem; padding: 12px 16px 12px 42px; }

  /* Pillar grid (business page) */
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 20px; }
  .pillar:last-child { border-bottom: none; }

  /* Partner grid */
  .partner-grid { grid-template-columns: 1fr; }
  .partner-item { border-right: none; }
  .partner-item:nth-child(even) { border-right: none; }
  .partner-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .partner-item:last-child { border-bottom: none; }

  /* Cookie banner */
  .cookie-banner { padding: 16px 20px; }
  .cookie-inner { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-inner p { min-width: auto; font-size: 0.72rem; }
  .cookie-btns { justify-content: center; }

  /* Modal */
  .ing-modal { padding: 24px 20px; }

  /* Article body */
  div[style*="max-width:760px"] { padding: 0 4px; }

  /* Two column form grids */
  div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Featured badge */
  .featured-badge { font-size: 0.58rem; padding: 4px 10px 4px 8px; }

  /* Legal notice */
  .legal-notice-intl { font-size: 0.72rem; padding: 12px 16px; margin: 0 20px; }

  /* Social links in footer */
  .social-links { margin-top: 12px; }

  /* Map iframe */
  iframe { height: 240px !important; }

  /* How We Create steps (business page inline grid) */
  div[style*="grid-template-columns:1fr auto 1fr auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  div[style*="grid-template-columns:1fr auto 1fr auto 1fr"] > div[style*="font-size:1.2rem"] {
    display: none;
  }
}

/* ===== Responsive: Small Mobile (<=480px) ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .section-title { font-size: 1.2rem; }
  .card { padding: 24px 16px; }
  .position-card { padding: 20px 16px; }
  .ingredient-card { padding: 20px 16px; }
  .ingredient-table th { width: 70px; font-size: 0.65rem; }
  .ingredient-table td { font-size: 0.72rem; }
  .logo img { width: 140px; }
  .footer-brand .logo img { width: 150px; }
  .cat-btn { padding: 5px 8px; font-size: 0.62rem; }
  .btn { padding: 12px 24px; font-size: 0.75rem; }
}
