:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --paper: #fffaf2;
  --ink: #25170d;
  --muted: #725f4e;
  --line: #decdb7;
  --accent: #7b2730;
  --accent-dark: #4b1c22;
  --gold: #b58a44;
  --green: #3f6b57;
  --shadow: 0 18px 45px rgba(37, 23, 13, 0.12);
  --shadow-sm: 0 6px 20px rgba(37, 23, 13, 0.08);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #f4eadc 0%, var(--bg) 38%, #fff 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--accent);
  color: #fff;
  padding: 8px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 800;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.9);
  border-bottom: 1px solid rgba(222, 205, 183, 0.75);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.22s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(37, 23, 13, 0.1); }
.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; flex-direction: column; line-height: 1.25; letter-spacing: 0.08em; font-weight: 800; }
.brand__jp { font-size: 17px; }
.brand__en { color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 13.5px; }
.nav-links a:not(.btn) { position: relative; padding-bottom: 2px; }
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:not(.btn):hover,
.nav-links a.active { color: var(--accent); font-weight: 700; }
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 49;
  padding: 16px 20px 24px;
  background: rgba(247, 242, 234, 0.98);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav .btn { margin-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-small { min-height: 40px; padding: 8px 16px; font-size: 13px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 22px rgba(123, 39, 48, 0.18); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(123, 39, 48, 0.26); }
.btn-outline { border-color: var(--line); background: rgba(255,255,255,0.62); color: var(--ink); }
.btn-outline:hover { background: rgba(255,255,255,0.95); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-outline-light { border-color: rgba(255,255,255,0.38); color: #fff; background: rgba(255,255,255,0.08); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

.hero { padding: 70px 0 58px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 42px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; background: currentColor; }
.eyebrow-light { color: #f3dbc5; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  letter-spacing: 0.03em;
}
h1 { margin: 0; font-size: clamp(36px, 5.2vw, 64px); line-height: 1.18; }
h2 { margin: 0 0 14px; font-size: clamp(28px, 3.8vw, 42px); line-height: 1.3; }
h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.45; }
.lead { max-width: 680px; margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.9; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.hero-badges span {
  border: 1px solid rgba(123, 39, 48, 0.18);
  border-radius: 999px;
  background: rgba(255,250,242,0.72);
  color: var(--accent);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #2b211a;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f6ebdc;
  filter: saturate(0.96) contrast(1.02);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 30%, rgba(0,0,0,0.55) 100%);
}
.hero-photo figcaption { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; color: #fff; }
.hero-photo strong { display: block; font-family: "Hiragino Mincho ProN", "Yu Mincho", serif; font-size: 22px; }
.hero-photo span { color: rgba(255,255,255,0.84); font-size: 14px; }

.section { padding: 78px 0; }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section-head p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-size: 16.5px; line-height: 1.95; }

.photo-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; }
.photo-stack { display: grid; gap: 20px; }
.photo-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,250,242,0.92);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 220px; object-fit: cover; }
.photo-main img { height: 390px; }
.illustration-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) 1fr;
  align-items: center;
}
.illustration-card img {
  height: 260px;
  background: #fff8ea;
}
.photo-card div { padding: 20px 22px 24px; }
.photo-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.quick-tags span {
  border: 1px solid rgba(222, 205, 183, 0.9);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 3px 9px;
  font-size: 11.5px;
  font-weight: 800;
}
.label, .pill {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f0e1d1;
  color: var(--accent);
  padding: 4px 11px;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.intro-points { margin-top: 22px; }
.intro-points .card { padding: 20px; }
.intro-points .card p { font-size: 14px; line-height: 1.65; }
.card, .step, .gift-points article, .mini-recipes article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,242,0.88);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover, .step:hover, .gift-points article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card p, .step span, .gift-copy p, .category-card p, .lab-copy p, .mini-recipes p, .note { color: var(--muted); }

.layout-guide {
  background:
    linear-gradient(180deg, rgba(255,250,242,0.2) 0%, rgba(238,226,208,0.72) 100%),
    var(--bg);
}
.layout-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,250,242,0.92);
  box-shadow: var(--shadow);
  padding: 30px;
}
.layout-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.95; }
.layout-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}
.layout-points article {
  border: 1px solid rgba(222, 205, 183, 0.85);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}
.layout-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 15px;
}
.layout-points span {
  display: block;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.layout-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.layout-note { margin-top: 18px; background: rgba(255,255,255,0.68); }
.layout-image-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(123, 39, 48, 0.14);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 14px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.layout-image-card:hover {
  border-color: rgba(123, 39, 48, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.layout-image-card img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff7e8;
}
.layout-image-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 28px;
}
.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  border-radius: 24px;
  background: linear-gradient(135deg, #7b2730 0%, #3f1e23 100%);
  color: #fff;
  padding: 36px 32px;
}
.feature-panel p { color: rgba(255,255,255,0.82); }
.feature-panel .btn { align-self: flex-start; margin-top: 22px; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.step strong { display: block; margin-bottom: 6px; color: var(--accent); font-size: 12px; letter-spacing: 0.06em; }

.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.category-card img { width: 100%; height: 260px; object-fit: cover; }
.category-card div { padding: 28px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 800;
}

.gift-grid { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(320px, 0.72fr); gap: 32px; align-items: center; }
.gift-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.gift-points article { padding: 18px; }
.gift-points p { margin-bottom: 0; }
.gift-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff8ea;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gift-image img { width: 100%; object-fit: cover; }

.lab-grid { display: grid; grid-template-columns: minmax(320px, 0.9fr) 1fr; gap: 32px; align-items: center; }
.lab-photos { display: grid; grid-template-columns: 1fr 0.78fr; gap: 12px; align-items: end; }
.lab-photos img { width: 100%; border: 1px solid var(--line); border-radius: 20px; object-fit: cover; }
.lab-photos img:first-child { aspect-ratio: 3 / 4; }
.lab-photos img:last-child { aspect-ratio: 3 / 5; }
.mini-recipes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0; }
.mini-recipes article { padding: 16px; }
.mini-recipes h3 { font-size: 16px; color: var(--accent); }
.mini-recipes p, .note { margin-bottom: 0; font-size: 13px; }
.note { border: 1px dashed var(--line); border-radius: 16px; padding: 14px 16px; }
.lab-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }

.sub-hero {
  padding: 74px 0 58px;
  background: linear-gradient(180deg, #f4eadc 0%, var(--bg) 100%);
}
.sub-hero .container { max-width: 920px; }
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.recipe-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,250,242,0.9);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.recipe-card h3 { color: var(--accent); }
.recipe-card ol { margin: 0 0 14px; padding-left: 20px; color: var(--muted); }
.recipe-card p { color: var(--muted); margin-bottom: 0; }
.recipe-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.recipe-image-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,250,242,0.9);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.recipe-image-card:hover {
  border-color: rgba(123, 39, 48, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.recipe-image-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  border-radius: 12px;
  background: #fff7e8;
}
.recipe-image-card span {
  color: var(--accent);
  font-weight: 900;
  text-align: center;
  line-height: 1.45;
}
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(24, 15, 9, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox__frame {
  width: min(920px, 100%);
  margin: 0;
}
.image-lightbox__frame img {
  width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: 18px;
  background: #fff7e8;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}
.image-lightbox__frame figcaption {
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.muted-card { background: rgba(255,255,255,0.62); }
.wide-notice { margin-top: 18px; }
.form-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: start;
}
.recipe-form,
.form-side {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,250,242,0.92);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-row { display: grid; gap: 8px; margin-bottom: 18px; }
.form-row label,
.check-row {
  color: var(--ink);
  font-weight: 800;
}
.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}
.form-row textarea { resize: vertical; }
.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.form-side ol {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.access-info {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,250,242,0.92);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}
.access-info dl { display: grid; gap: 0; margin: 0; }
.access-info dl div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; border-bottom: 1px solid var(--line); padding: 14px 0; }
.access-info dt { color: var(--muted); font-weight: 900; }
.access-info dd { margin: 0; }
.access-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.map-box {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.map-box iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }

.cta { padding: 72px 0 92px; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, #2d2119 0%, #5b2630 100%);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 52px 48px;
}
.cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer { border-top: 1px solid var(--line); padding: 30px 0; color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-inner strong { display: block; color: var(--ink); font-size: 15px; }
.footer-inner span { display: block; }
.footer-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer a { color: var(--accent); font-weight: 800; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(123, 39, 48, 0.32);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.business-hero {
  min-height: 64vh;
  display: grid;
  align-items: center;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 6vw, 86px);
  background: linear-gradient(110deg, rgba(26,17,8,0.94), rgba(26,17,8,0.72)), var(--ink);
  color: var(--paper);
}
.business-hero > div { max-width: 940px; }
.business-hero .lead { color: rgba(247,243,236,0.78); }
.business-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.business-grid article, .office-link {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}
.business-grid span { display: inline-block; margin-bottom: 14px; color: var(--gold); font-weight: 900; letter-spacing: 0.14em; }
.business-grid h2 { font-size: 26px; }
.business-grid p, .office-link p { color: var(--muted); }
.office-link { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 18px; background: var(--ink); color: var(--paper); }
.office-link p { color: rgba(247,243,236,0.75); }

@media (max-width: 980px) {
  .nav-links a:not(.btn) { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero-grid, .photo-grid, .feature, .gift-grid, .lab-grid, .access-grid, .cta-box, .illustration-card, .layout-panel { grid-template-columns: 1fr; }
  .cards, .category-grid, .business-grid, .recipe-grid, .form-layout { grid-template-columns: 1fr; }
  .hero-photo img { height: auto; min-height: 300px; }
  .photo-main img, .photo-card img, .category-card img { height: auto; min-height: 220px; }
  .steps, .gift-points, .mini-recipes { grid-template-columns: 1fr 1fr; }
  .office-link { flex-direction: column; align-items: stretch; }
}

@media (max-width: 620px) {
  .container, .nav-wrap { width: min(100% - 24px, 1120px); }
  .nav-wrap { height: 64px; }
  .mobile-nav { top: 64px; }
  .brand__jp { font-size: 16px; }
  .brand__en { font-size: 10px; }
  .hero { padding: 46px 0 38px; }
  .section { padding: 54px 0; }
  .hero-actions .btn, .cta-actions .btn, .mobile-nav .btn, .lab-actions .btn, .recipe-form .btn, .layout-actions .btn { width: 100%; }
  .steps, .gift-points, .mini-recipes { grid-template-columns: 1fr; }
  .layout-panel { padding: 18px; border-radius: 24px; }
  .layout-points { grid-template-columns: 1fr; }
  .lab-photos { grid-template-columns: 1fr; }
  .access-info dl div { grid-template-columns: 1fr; gap: 4px; }
  .cta-box { padding: 28px 24px; border-radius: 26px; }
  .footer-inner, .footer-links { align-items: flex-start; flex-direction: column; }
}
