:root {
  --black: #100d0a;
  --brown: #2a1810;
  --brown-2: #5a321e;
  --gold: #c8a35a;
  --turmeric: #d6a12f;
  --leaf: #6f8d4e;
  --ivory: #f4ead8;
  --paper: #fff8e9;
  --red: #9e2f22;
  --ink: #211811;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  letter-spacing: 0;
}

main img {
  cursor: pointer;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(200, 163, 90, 0.34);
  background: rgba(16, 13, 10, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  text-decoration: none;
  color: var(--gold);
  line-height: 1;
}

.brand span {
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 8px;
  color: var(--ivory);
  font-size: 0.75rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 14px;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(244, 234, 216, 0.82);
  font-size: 0.84rem;
  text-decoration: none;
}

nav a.active,
nav a:hover {
  color: var(--gold);
}

nav a.locked {
  color: rgba(244, 234, 216, 0.34);
}

.new-dot {
  margin-left: 6px;
  color: var(--red);
  font-size: 0.65rem;
}

.header-reset {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(244, 234, 216, 0.28);
  border-radius: 4px;
  background: rgba(255, 248, 233, 0.03);
  color: rgba(244, 234, 216, 0.68);
  cursor: pointer;
  font-size: 0.78rem;
}

.header-reset:hover {
  border-color: rgba(158, 47, 34, 0.72);
  color: var(--paper);
  background: rgba(158, 47, 34, 0.14);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 7vw, 96px);
  cursor: pointer;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 0.76;
}

.hero.is-found .hero-slide {
  filter: grayscale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 13, 10, 0.95), rgba(16, 13, 10, 0.36), rgba(16, 13, 10, 0.1));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-label {
  z-index: 3;
}

.hero h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(4.8rem, 14vw, 10rem);
  line-height: 0.85;
}

.hero-copy > p {
  max-width: 560px;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.7;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions,
.drawer .wide {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gold-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.gold-button {
  background: var(--gold);
  color: var(--black);
}

.ghost-button {
  background: transparent;
  color: var(--gold);
}

.home-directory {
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(244, 234, 216, 0.05), rgba(16, 13, 10, 0)),
    var(--black);
}

.home-directory-intro {
  max-width: 860px;
  margin-bottom: clamp(28px, 6vw, 68px);
}

.home-directory-intro h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 1.08;
}

.home-directory-intro p:last-child {
  max-width: 720px;
  line-height: 1.9;
}

.home-route-list {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.home-route-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  min-height: 360px;
  border-top: 1px solid rgba(200, 163, 90, 0.26);
}

.home-route-card:last-child {
  border-bottom: 1px solid rgba(200, 163, 90, 0.26);
}

.home-route-card:nth-child(even) .home-route-copy {
  order: 2;
}

.home-route-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 248, 233, 0.04);
}

.home-route-copy h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.home-route-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  line-height: 1.9;
}

.home-route-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.9;
}

.route-index {
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(200, 163, 90, 0.48);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1;
  pointer-events: none;
}

.band,
.access,
.form-shell,
.timeline,
.chef-layout,
.split,
.photo-band,
.craft-section,
.history-feature,
.history-timeline,
.content-grid {
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.ivory {
  background: var(--ivory);
  color: var(--ink);
}

.section-title {
  max-width: 850px;
}

.section-title h2,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.section-title p,
.page-hero p,
.lead,
.card p,
.menu-item p {
  line-height: 1.9;
}

.detail-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.8;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.craft-section .content-grid {
  padding: 28px 0 0;
}

.craft-section .detail-list {
  margin-top: 8px;
}

.card,
.menu-item {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(200, 163, 90, 0.32);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.05);
}

.menu-photo {
  display: block;
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 20px;
  border-bottom: 1px solid rgba(200, 163, 90, 0.32);
  border-radius: 8px 8px 0 0;
  object-fit: cover;
}

.ivory .menu-item {
  background: rgba(16, 13, 10, 0.04);
}

.card h3,
.menu-item h2 {
  color: var(--gold);
  font-size: 1.45rem;
}

.choice-label {
  margin-bottom: 8px;
  color: rgba(244, 234, 216, 0.66);
  font-size: 0.9rem;
}

.spice-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.spice-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(200, 163, 90, 0.42);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.06);
  color: var(--ivory);
  font-size: 0.88rem;
  line-height: 1;
}

.spice-tag.mild {
  border-color: rgba(244, 234, 216, 0.32);
}

.spice-tag.medium {
  border-color: rgba(158, 47, 34, 0.56);
  color: #e0bd80;
}

.spice-tag.chikuwa {
  border-color: rgba(200, 163, 90, 0.58);
  background: rgba(200, 163, 90, 0.14);
  color: #f0d39a;
}

.menu-item h2,
.card h3 {
  text-decoration-color: rgba(111, 141, 78, 0.45);
}

.serving-guide {
  background: #17100c;
}

.serving-order {
  display: grid;
  gap: 12px;
  width: min(940px, 100%);
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(200, 163, 90, 0.34);
  border-radius: 8px;
  background: rgba(255, 248, 233, 0.04);
}

.serving-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 163, 90, 0.18);
  line-height: 1.8;
}

.serving-step:last-of-type {
  border-bottom: 0;
}

.serving-step b {
  color: var(--gold);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.split img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid rgba(200, 163, 90, 0.44);
}

.photo-band {
  padding-top: 0;
}

.photo-band img,
.section-photo {
  display: block;
  width: 100%;
  max-height: 520px;
  margin: 24px 0;
  border: 1px solid rgba(200, 163, 90, 0.38);
  object-fit: cover;
}

.section-photo {
  max-width: 980px;
}

.news-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
  padding: 0;
  list-style: none;
}

.news-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 163, 90, 0.28);
}

.page-hero {
  padding: clamp(58px, 10vw, 128px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 70px);
  background:
    linear-gradient(120deg, rgba(16, 13, 10, 0.72), rgba(42, 24, 16, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(214, 161, 47, 0.22), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(111, 141, 78, 0.16), transparent 28%);
  border-bottom: 1px solid rgba(200, 163, 90, 0.25);
}

.page-hero p {
  max-width: 760px;
}

.blocked {
  min-height: 42vh;
}

.blocked-terminal {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(22px, 5vw, 54px) clamp(18px, 5vw, 72px) clamp(42px, 8vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 8, 16, 0.96), rgba(5, 9, 17, 0.9)),
    repeating-linear-gradient(0deg, rgba(39, 237, 255, 0.08) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, rgba(255, 45, 103, 0.06) 0 1px, transparent 1px 9px),
    radial-gradient(circle at 50% 10%, rgba(39, 237, 255, 0.18), transparent 34%),
    #030810;
}

.terminal-noise {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(39, 237, 255, 0.15) 8.4% 8.8%, transparent 9.2% 100%),
    linear-gradient(180deg, rgba(255, 45, 103, 0.1), transparent 18%, rgba(39, 237, 255, 0.1) 18.5%, transparent 19%),
    repeating-linear-gradient(90deg, rgba(39, 237, 255, 0.12) 0 2px, transparent 2px 7px);
  mix-blend-mode: screen;
}

.cyber-freeze-window {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  border: 1px solid rgba(39, 237, 255, 0.72);
  background: rgba(2, 8, 17, 0.92);
  cursor: not-allowed;
  box-shadow:
    0 0 0 1px rgba(255, 45, 103, 0.35),
    0 0 34px rgba(39, 237, 255, 0.2),
    0 30px 100px rgba(0, 0, 0, 0.62);
  animation: freezeDrop 0.48s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.cyber-freeze-window::after {
  content: "BLOCKED";
  position: absolute;
  right: clamp(16px, 3vw, 30px);
  top: 54px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 45, 103, 0.7);
  color: rgba(255, 45, 103, 0.84);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  opacity: 0.72;
  pointer-events: none;
}

.cyber-freeze-window::before {
  content: "";
  position: absolute;
  inset: 38px 0 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 45, 103, 0.48) 7.2% 8.4%, transparent 8.8% 42%, rgba(39, 237, 255, 0.24) 42.4% 43.1%, transparent 43.5%),
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 45, 103, 0.2) 7px 9px, transparent 9px 15px);
  mix-blend-mode: screen;
}

.cyber-freeze-window.is-alerting {
  border-color: #ff2d67;
  animation: freezeGlitchBlock 0.68s steps(2, end) both;
}

.cyber-freeze-window.is-alerting::before {
  animation: freezeGlitchNoise 0.68s steps(2, end) both;
}

.cyber-freeze-window.is-alerting::after {
  opacity: 1;
  color: #fff;
  background: rgba(255, 45, 103, 0.45);
  box-shadow: 0 0 24px rgba(255, 45, 103, 0.82);
}

.cyber-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(39, 237, 255, 0.4);
  background: linear-gradient(90deg, rgba(39, 237, 255, 0.18), rgba(255, 45, 103, 0.12));
  color: rgba(229, 253, 255, 0.84);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.cyber-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff2d67;
  box-shadow: 0 0 12px rgba(255, 45, 103, 0.9);
}

.cyber-window-bar span:nth-child(2) {
  background: #ffe66d;
  box-shadow: 0 0 12px rgba(255, 230, 109, 0.8);
}

.cyber-window-bar span:nth-child(3) {
  margin-right: 8px;
  background: #27edff;
  box-shadow: 0 0 12px rgba(39, 237, 255, 0.8);
}

.cyber-window-bar b {
  font-weight: 700;
}

.terminal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(28px, 6vw, 58px);
  border: 0;
  background:
    linear-gradient(135deg, rgba(2, 8, 17, 0.96), rgba(8, 16, 31, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(39, 237, 255, 0.04) 18px 19px);
  box-shadow: none;
}

.terminal-panel h1 {
  margin: 0 0 16px;
  color: #e5fdff;
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 1.02;
  text-shadow: 2px 0 rgba(255, 45, 103, 0.72), -2px 0 rgba(39, 237, 255, 0.62);
}

.terminal-panel > p {
  max-width: 700px;
  line-height: 1.9;
  color: rgba(229, 253, 255, 0.74);
}

.terminal-log {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(39, 237, 255, 0.28);
  background: rgba(0, 0, 0, 0.46);
  color: rgba(229, 253, 255, 0.78);
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.88rem;
}

.terminal-log span::before {
  content: "> ";
  color: #ff2d67;
}

@keyframes freezeDrop {
  from {
    transform: translateY(-28px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes freezeGlitchBlock {
  0%, 100% {
    transform: translate(0);
    filter: none;
    box-shadow:
      0 0 0 1px rgba(255, 45, 103, 0.35),
      0 0 34px rgba(39, 237, 255, 0.2),
      0 30px 100px rgba(0, 0, 0, 0.62);
  }
  18% {
    transform: translate(-9px, 3px) skewX(-1deg);
    filter: hue-rotate(330deg) saturate(1.8) contrast(1.35);
  }
  36% {
    transform: translate(7px, -2px) skewX(1.4deg);
    filter: sepia(0.35) saturate(2.8) contrast(1.55);
  }
  54% {
    transform: translate(-3px, 0);
    filter: grayscale(0.2) saturate(3) contrast(1.8);
    box-shadow:
      0 0 0 2px rgba(255, 45, 103, 0.95),
      0 0 48px rgba(255, 45, 103, 0.7),
      0 0 110px rgba(255, 45, 103, 0.34),
      0 30px 100px rgba(0, 0, 0, 0.62);
  }
  72% {
    transform: translate(5px, 2px);
    filter: saturate(2.4) contrast(1.45);
  }
}

@keyframes freezeGlitchNoise {
  0%, 100% {
    opacity: 0;
    transform: translateX(0);
  }
  12%, 44%, 72% {
    opacity: 0.9;
    transform: translateX(-12px);
  }
  28%, 58% {
    opacity: 0.72;
    transform: translateX(10px);
  }
}

.anomaly-target,
.package-anomaly,
.visual-anomaly {
  position: relative;
  min-height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

.visual-anomaly {
  display: block;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(200, 163, 90, 0.34);
  border-radius: 8px;
}

.visual-anomaly img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 420px;
  object-fit: cover;
}

.visual-anomaly > div {
  min-height: 240px;
}

.chef-photo img {
  min-height: 420px;
}

.french-plate img,
.rrr-kitchen img,
.bodybuilder-stew img {
  max-height: 520px;
}

.menu-anomaly-photo {
  min-height: 190px;
  margin: -24px -24px 20px;
  border-width: 0 0 1px;
  border-radius: 8px 8px 0 0;
}

.menu-anomaly-photo img {
  min-height: 190px;
  max-height: 190px;
}

.diagram-anomaly {
  min-height: 190px;
  margin: -24px -24px 20px;
  border-width: 0 0 1px;
  border-radius: 8px 8px 0 0;
}

.diagram-anomaly > div {
  min-height: 190px;
}

.anomaly-target.line {
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 5px 2px;
}

.anomaly-target.text-inline {
  display: inline;
  font-size: inherit;
}

.anomaly-target.is-found::after,
.visual-anomaly.is-found::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(200, 163, 90, 0.46);
  border-radius: 4px;
  pointer-events: none;
}

.anomaly-target.is-found > span {
  color: rgba(244, 234, 216, 0.48);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.ivory .anomaly-target.is-found > span {
  color: rgba(33, 24, 17, 0.46);
}

.visual-anomaly.is-found img {
  filter: grayscale(1);
  opacity: 0.42;
}

.visual-anomaly.is-found .aroma-curry-diagram {
  filter: grayscale(1);
  opacity: 0.48;
}

.found-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-left: 10px;
  padding: 3px 9px;
  border: 1px solid rgba(200, 163, 90, 0.56);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.2;
  white-space: normal;
}

.image-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  background: rgba(16, 13, 10, 0.82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.is-discovering {
  animation: glitch 0.62s steps(2, end);
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); filter: none; }
  20% { transform: translate(-3px, 1px); filter: hue-rotate(45deg); }
  40% { transform: translate(3px, -1px); filter: contrast(1.7); }
  60% { transform: translate(-1px, 2px); filter: grayscale(1); }
}

.progress-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--black);
  color: var(--gold);
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(380px, 92vw);
  height: 100%;
  padding: 26px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #17100c;
  border-left: 1px solid rgba(200, 163, 90, 0.44);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.38);
}

.drawer-open .drawer {
  transform: translateX(0);
}

.drawer-close {
  float: right;
  border: 1px solid rgba(200, 163, 90, 0.42);
  border-radius: 4px;
  background: transparent;
  color: var(--ivory);
  padding: 8px 12px;
  cursor: pointer;
}

.reset-button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(244, 234, 216, 0.26);
  border-radius: 4px;
  background: transparent;
  color: rgba(244, 234, 216, 0.72);
  cursor: pointer;
}

.reset-button:hover {
  border-color: rgba(158, 47, 34, 0.72);
  color: var(--paper);
  background: rgba(158, 47, 34, 0.16);
}

.checklist h2 {
  color: var(--gold);
}

.checklist ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 0;
  border: 1px solid rgba(200, 163, 90, 0.28);
  border-radius: 4px;
  overflow: hidden;
}

.check-entry {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

button.check-entry {
  cursor: pointer;
}

button.check-entry:hover {
  background: rgba(200, 163, 90, 0.12);
}

.check-entry.is-locked {
  opacity: 0.72;
}

.check-title {
  font-size: 0.95rem;
  line-height: 1.35;
}

.check-number {
  color: rgba(244, 234, 216, 0.55);
  font-size: 0.82rem;
}

.checklist li.checked {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 163, 90, 0.1);
}

.checklist.large {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 18px 72px;
}

.story-checklist {
  border-top: 1px solid rgba(200, 163, 90, 0.22);
}

.cyber-checklist {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(39, 237, 255, 0.22);
}

.cyber-checklist h2 {
  color: #27edff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 1rem;
}

.cyber-checklist ol {
  max-height: min(38vh, 360px);
  overflow-y: auto;
  padding-right: 6px;
}

.cyber-checklist li {
  border-color: rgba(39, 237, 255, 0.22);
  background: rgba(39, 237, 255, 0.04);
}

.cyber-checklist li.checked {
  border-color: rgba(255, 45, 103, 0.68);
  color: #e5fdff;
  background: rgba(255, 45, 103, 0.11);
}

.cyber-checklist .check-number {
  color: rgba(39, 237, 255, 0.74);
  font-family: Consolas, "Courier New", monospace;
}

.cyber-checklist button.check-entry {
  cursor: pointer;
}

.cyber-checklist button.check-entry:hover {
  background: rgba(255, 45, 103, 0.18);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  min-width: min(360px, calc(100vw - 36px));
  padding: 14px 20px;
  border: 1px solid var(--gold);
  background: rgba(16, 13, 10, 0.94);
  color: var(--gold);
  text-align: center;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.explanation {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 13, 10, 0.78);
  backdrop-filter: blur(8px);
}

.explanation-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(200, 163, 90, 0.72);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.explanation-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(33, 24, 17, 0.22);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
}

.explanation-card h2 {
  margin: 4px 0;
  color: var(--brown);
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.08;
}

.explanation-card h3 {
  margin: 0 0 18px;
  color: var(--red);
}

.explanation-text {
  font-size: 1.08rem;
  line-height: 2;
}

.unlock {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 13, 10, 0.78);
  backdrop-filter: blur(10px);
}

.unlock-panel {
  width: min(560px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--gold);
  background: var(--black);
  text-align: center;
}

.unlock-panel h2 {
  color: var(--gold);
  font-size: clamp(2rem, 6vw, 4rem);
}

.endless-scroll {
  max-width: 980px;
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(200, 163, 90, 0.28);
  background: rgba(255, 248, 233, 0.04);
}

.endless-scroll h3 {
  color: var(--gold);
}

.endless-rows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.endless-rows > span {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(200, 163, 90, 0.22);
  color: rgba(244, 234, 216, 0.78);
}

.retort-loop-status {
  margin: 0 clamp(18px, 5vw, 72px) clamp(42px, 7vw, 90px);
  padding: 24px;
  border: 1px dashed rgba(200, 163, 90, 0.48);
  background: rgba(255, 248, 233, 0.04);
}

.retort-loop-status h2 {
  margin: 0 0 10px;
  color: var(--gold);
}

.retort-loop-status.is-found {
  filter: grayscale(1);
  opacity: 0.62;
  cursor: pointer;
}

.retort-dancer {
  position: fixed;
  left: clamp(10px, 2vw, 24px);
  bottom: clamp(12px, 2.2vw, 26px);
  z-index: 26;
  width: clamp(92px, 12vw, 152px);
  min-height: 110px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
}

.retort-dancer img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.retort-dancer.is-found {
  opacity: 0.72;
  filter: grayscale(1) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.36));
}

.retort-dancer .image-label {
  left: 6px;
  right: auto;
  bottom: 2px;
  font-size: 0.7rem;
}

.retort-repeat:not(:first-child) {
  border-top: 1px solid rgba(200, 163, 90, 0.24);
}

.template-band {
  padding-top: 18px;
}

.template-textbox {
  display: grid;
  gap: 26px;
  width: min(560px, 100%);
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--paper);
  text-align: left;
  cursor: pointer;
}

.template-textbox .template-heading {
  font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  line-height: 1.15;
}

.template-textbox .template-body {
  max-width: 390px;
  font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  line-height: 1.62;
}

.template-textbox.is-found {
  filter: grayscale(1);
  opacity: 0.5;
}

.chef-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.chef-photo {
  aspect-ratio: 4 / 5;
  min-height: auto;
}

blockquote {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline p {
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid var(--gold);
  font-size: 1.2rem;
}

.timeline span {
  color: var(--gold);
}

.history-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
  border-bottom: 1px solid rgba(200, 163, 90, 0.24);
  background: linear-gradient(135deg, rgba(200, 163, 90, 0.08), rgba(255, 248, 233, 0.02));
}

.history-feature-copy {
  align-self: center;
  max-width: 560px;
}

.history-feature-copy h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.history-feature-copy p:last-child {
  line-height: 1.9;
}

.history-feature img,
.history-block img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 1px solid rgba(200, 163, 90, 0.28);
  object-fit: cover;
}

.history-timeline {
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
}

.history-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 360px;
  border: 1px solid rgba(200, 163, 90, 0.26);
  background: rgba(255, 248, 233, 0.04);
}

.history-block + .history-block {
  border-top: 0;
}

.history-block:nth-child(even) .history-copy {
  order: 2;
}

.history-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 5vw, 56px);
}

.history-year {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.history-copy h2 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.history-copy p:last-child {
  margin: 0;
  line-height: 1.9;
}

.package-anomaly {
  display: block;
  width: 100%;
  min-height: 280px;
  overflow: hidden;
}

.service-photo,
.route-loop {
  align-items: center;
}

.route-loop {
  padding: 26px;
  border: 1px solid rgba(200, 163, 90, 0.34);
  background: rgba(255, 248, 233, 0.05);
}

.route-loop h2 {
  color: var(--gold);
}

.route-loop ol {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
  line-height: 1.8;
}

.contact-loop-shell.is-found {
  filter: grayscale(1);
  opacity: 0.62;
  cursor: pointer;
}

.instant-reply {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(200, 163, 90, 0.34);
  background: rgba(16, 13, 10, 0.22);
}

.instant-reply h3 {
  margin: 0 0 8px;
  color: var(--gold);
}

.instant-reply p {
  line-height: 1.8;
}

.instant-reply.muted {
  color: rgba(244, 234, 216, 0.56);
}

.reservation-shell {
  position: relative;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(200, 163, 90, 0.44);
  background: #d3d0c8;
  color: #1c1b18;
}

.reservation-shell.is-found {
  filter: grayscale(1);
  opacity: 0.68;
  cursor: pointer;
}

.reservation-month {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 8px 12px;
  font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
}

.reservation-month strong {
  font-size: 1.25rem;
}

.reservation-month span {
  color: rgba(28, 27, 24, 0.62);
  font-size: 0.9rem;
}

.reservation-month-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 0 0 12px;
}

.reservation-month-tabs button {
  min-height: 42px;
  border: 1px solid rgba(28, 27, 24, 0.32);
  background: #eee7d5;
  color: #211811;
  font: 700 0.94rem "Yu Gothic", "Hiragino Sans", sans-serif;
  cursor: pointer;
}

.reservation-month-tabs button.active {
  background: #292621;
  color: #f4ead8;
  border-color: #292621;
}

.reservation-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(34px, 1fr));
  gap: 3px;
  align-content: center;
  width: 100%;
  min-height: 360px;
  padding: 8px;
  border: 2px solid #8d8a83;
  background: #bdbab2;
}

.reservation-calendar > span,
.calendar-blank,
.calendar-empty,
.calendar-day {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid #8b887f;
  background: #e8e2d3;
  color: #211811;
  font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
  font-weight: 700;
}

.reservation-calendar > span {
  min-height: 30px;
  background: #292621;
  color: #f4ead8;
  font-size: 0.78rem;
}

.calendar-blank {
  background: #cbc7bd;
}

.calendar-empty {
  background: #090807;
  border-color: #090807;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.calendar-day {
  box-shadow: inset 2px 2px 0 #fff, inset -2px -2px 0 #7b7871;
  cursor: pointer;
}

.calendar-day.is-empty:not(.is-revealed) {
  background: #090807;
  border-color: #090807;
  color: transparent;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.08), inset -1px -1px 0 rgba(0, 0, 0, 0.7);
}

.calendar-day:hover {
  background: #fff3d6;
}

.calendar-day.is-empty:not(.is-revealed):hover {
  background: #17110e;
}

.calendar-day.is-revealed {
  background: #bdbab2;
  box-shadow: inset 1px 1px 0 #8b887f;
  font-family: Consolas, "Courier New", monospace;
  font-size: 1.18rem;
  font-weight: 700;
}

.calendar-day.mine-1 {
  color: #103cc9;
}

.calendar-day.mine-2 {
  color: #18833a;
}

.calendar-day.mine-3 {
  color: #bf211b;
}

.calendar-day.mine-blank {
  color: transparent;
}

.calendar-day.has-bomb {
  background: #c92e25;
  color: #111;
}

.calendar-day.has-bomb::first-letter {
  color: #111;
}

.image-noise {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 38%;
  height: 16px;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9) 2px, rgba(158, 47, 34, 0.9) 3px, transparent 5px);
  mix-blend-mode: screen;
}

.normal-curry-plate,
.french-curry-plate,
.lassi-glass,
.curry-diagram,
.cake-diagram,
.copper-pot,
.partition-pot,
.ladle-scene,
.chef-normal,
.chef-ramen,
.calm-kitchen,
.epic-kitchen {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 240px;
  background: linear-gradient(145deg, #2b1a12, #0f0b08);
  color: var(--ivory);
}

.normal-curry-plate span,
.french-curry-plate span {
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 56% 43%, #f7f0df 0 21%, #7a3b1d 22% 48%, #21130c 49% 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.normal-curry-plate span {
  width: 70%;
  aspect-ratio: 1.35 / 1;
}

.french-curry-plate span {
  width: 88%;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, #7a3b1d 0 9%, #f7f0df 10% 58%, #1d1511 59% 100%);
}

.lassi-glass::before {
  content: "";
  width: 84px;
  height: 132px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(#fff7df, #e8d2a4);
  border: 3px solid rgba(255, 248, 233, 0.72);
}

.straw,
.chikuwa-straw {
  position: absolute;
  top: 36px;
  left: 52%;
  width: 10px;
  height: 124px;
  transform: rotate(-12deg);
  transform-origin: bottom;
  border-radius: 10px;
}

.straw {
  background: #f8f2e5;
}

.chikuwa-straw {
  width: 26px;
  background: repeating-linear-gradient(0deg, #d28b4b 0 14px, #f0c983 15px 22px);
  border: 4px solid #a96635;
}

.curry-diagram,
.cake-diagram {
  align-content: center;
  gap: 0;
  padding: 36px;
}

.curry-diagram span,
.cake-diagram span {
  display: block;
  width: min(260px, 90%);
  padding: 16px;
  border: 1px solid rgba(33, 24, 17, 0.18);
  background: var(--ivory);
  color: var(--ink);
  text-align: center;
}

.aroma-curry-diagram {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.78fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 190px;
  padding: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 163, 90, 0.24), transparent 36%),
    linear-gradient(145deg, #2d1b12, #0f0b08);
  color: var(--paper);
}

.diagram-plate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.diagram-plate::before {
  content: "";
  position: absolute;
  width: min(250px, 92%);
  aspect-ratio: 1.42 / 1;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 248, 233, 0.94) 0 48%, rgba(214, 195, 162, 0.92) 49% 62%, rgba(86, 55, 34, 0.72) 63% 66%, transparent 67%),
    radial-gradient(ellipse, rgba(255, 255, 255, 0.15), transparent 70%);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42);
}

.diagram-rice,
.diagram-sauce,
.diagram-topping,
.aroma-ring {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 233, 0.78);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.diagram-rice {
  left: 19%;
  bottom: 28%;
  width: 36%;
  height: 32%;
  border-radius: 58% 42% 46% 54%;
  background: #fff7df;
  color: #3b2d21;
}

.diagram-sauce {
  right: 16%;
  bottom: 22%;
  width: 48%;
  height: 43%;
  border-radius: 52% 48% 44% 56%;
  background: #8b431e;
  color: #fff8e9;
}

.diagram-topping {
  right: 27%;
  bottom: 47%;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: #c98f45;
  color: #211811;
}

.aroma-ring {
  border: 1px dashed rgba(200, 163, 90, 0.76);
  border-radius: 999px;
  background: rgba(16, 13, 10, 0.52);
  color: var(--gold);
  font-size: 0.74rem;
}

.ring-1 {
  top: 8%;
  right: 19%;
  width: 94px;
  height: 38px;
}

.ring-2 {
  top: 27%;
  left: 14%;
  width: 76px;
  height: 34px;
}

.aroma-curry-diagram ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 234, 216, 0.86);
  font-size: 0.88rem;
  line-height: 1.5;
}

.aroma-curry-diagram li {
  padding-left: 12px;
  border-left: 1px solid rgba(200, 163, 90, 0.56);
}

.cake-diagram span:nth-child(1) {
  background: #7d3c1c;
  color: var(--paper);
}

.cake-diagram span:nth-child(2) {
  background: #fff7e6;
}

.cake-diagram span:nth-child(3) {
  background: #d3a35e;
}

.copper-pot::before,
.partition-pot::before {
  content: "";
  width: min(270px, 82%);
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(135deg, #9c5a2d, #32170d);
  border: 5px solid #c68f4d;
}

.partition-pot {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 28px;
}

.partition-pot span {
  width: 100%;
  height: 96px;
  border: 2px solid #c8a35a;
  background: rgba(117, 58, 28, 0.8);
}

.ladle {
  width: 110px;
  height: 30px;
  border-radius: 50%;
  background: #c8a35a;
  transform: rotate(-22deg);
}

.sauce-line,
.single-item {
  position: absolute;
  bottom: 54px;
  width: 170px;
  height: 44px;
  border-radius: 50%;
  background: #6b2d16;
}

.single-item {
  width: 48px;
  height: 48px;
  background: #d7b06a;
}

.chef-normal,
.chef-ramen {
  min-height: 100%;
  font-size: 2.2rem;
}

.chef-normal::before,
.chef-ramen::before {
  content: "";
  position: absolute;
  top: 44px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #d8b38b;
}

.chef-normal span,
.chef-ramen span {
  margin-top: 120px;
  padding: 18px 30px;
  border: 1px solid var(--gold);
}

.chef-ramen::after {
  content: "";
  position: absolute;
  top: 36px;
  width: 130px;
  height: 24px;
  background: #f8f2e5;
  transform: rotate(-6deg);
}

.chef-ramen span {
  background: #111;
  color: var(--gold);
}

.calm-kitchen span,
.epic-kitchen span {
  position: relative;
  z-index: 1;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  background: rgba(16, 13, 10, 0.72);
}

.calm-kitchen {
  background: linear-gradient(145deg, #2a1810, #16100c);
}

.epic-kitchen {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 234, 162, 0.9), transparent 24%),
    repeating-linear-gradient(45deg, rgba(200, 163, 90, 0.25) 0 8px, transparent 9px 20px),
    linear-gradient(145deg, #5b150f, #100d0a);
}

.epic-kitchen::before,
.epic-kitchen::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 22px #ffd36d;
}

.epic-kitchen::before {
  transform: rotate(26deg);
}

.epic-kitchen::after {
  transform: rotate(-23deg);
}

dl {
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 12px;
}

dt {
  color: var(--gold);
}

.draft-package {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 420px;
  padding: 36px;
  border: 5px double var(--gold);
  background: var(--ivory);
  color: var(--ink);
  text-align: center;
}

.draft-package p {
  margin: 0;
  color: var(--brown);
  font-size: 4rem;
}

.draft-package strong {
  font-size: 1.7rem;
}

.vice-message {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 25;
  width: min(320px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
}

.vice-message p {
  margin: 0 0 6px;
  color: var(--brown);
  font-weight: 700;
}

.vice-message a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--red);
}

.contact-page {
  position: relative;
  min-height: 620px;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.contact-form-shell {
  position: relative;
  margin: 0 auto;
}

.contact-form-shell.is-found {
  filter: grayscale(1);
}

.message-alert {
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(200, 163, 90, 0.72);
  border-radius: 6px;
  background: rgba(200, 163, 90, 0.14);
  color: var(--paper);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  animation: messagePulse 1.2s ease-in-out infinite;
}

.message-alert span {
  color: var(--gold);
  font-size: 0.82rem;
}

.message-alert b {
  font-weight: 400;
  line-height: 1.5;
}

.contact-message-layer {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(16, 13, 10, 0.58);
}

.contact-message-window {
  position: relative;
  width: min(680px, 94vw);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(200, 163, 90, 0.62);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.contact-message-window h2 {
  margin: 0 0 18px;
  color: var(--brown);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.contact-message-window p:not(.eyebrow) {
  line-height: 1.9;
}

.contact-message-window dl {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(33, 24, 17, 0.16);
}

@keyframes messagePulse {
  0%, 100% {
    transform: translateY(0);
    border-color: rgba(200, 163, 90, 0.58);
  }
  50% {
    transform: translateY(-2px);
    border-color: rgba(244, 234, 216, 0.92);
  }
}

.form-shell {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(200, 163, 90, 0.4);
  border-radius: 4px;
  background: var(--ivory);
  color: var(--ink);
  padding: 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-right {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  nav {
    justify-content: flex-start;
  }

  .header-reset {
    align-self: stretch;
  }

  .hero {
    min-height: 72vh;
  }

  .content-grid,
  .split,
  .chef-layout,
  .history-feature,
  .history-block,
  .home-route-card {
    grid-template-columns: 1fr;
  }

  .history-block:nth-child(even) .history-copy,
  .home-route-card:nth-child(even) .home-route-copy {
    order: 0;
  }

  .history-feature img,
  .history-block img,
  .home-route-card img {
    min-height: 220px;
  }

  .route-index {
    top: 12px;
    right: 14px;
  }

  .aroma-curry-diagram {
    grid-template-columns: 1fr;
  }

  .checklist ol {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-slide {
    opacity: 0 !important;
    animation: none !important;
  }

  .hero-slide.is-active,
  .hero .slide-1 {
    opacity: 0.76 !important;
  }
}
