:root {
  --ink: #12365c;
  --ink-soft: #4c5966;
  --paper: #f8f4ec;
  --ivory: #fffaf0;
  --wood: #ead8bd;
  --wood-deep: #bd8d55;
  --line: #e7ddcf;
  --seal: #a76d36;
  --charcoal: #1c2024;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 32, 36, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 56px),
    linear-gradient(90deg, rgba(189, 141, 85, 0.055) 0 28px, rgba(255, 255, 255, 0.12) 28px 30px, rgba(189, 141, 85, 0.035) 30px 56px),
    linear-gradient(180deg, #fbf7ef 0%, #f1e6d3 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.95);
  border-bottom: 1px solid rgba(28, 32, 36, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(108px, 9vw, 150px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 700;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
}

.header-action {
  min-width: 126px;
  padding: 0 20px;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(18, 54, 92, 0.16);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(80px, 10vw, 128px) clamp(20px, 6vw, 84px) clamp(34px, 6vw, 70px);
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 210px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: min(720px, 54vw);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(28, 32, 36, 0.03) 0%, rgba(28, 32, 36, 0.08) 40%, rgba(18, 54, 92, 0.76) 100%),
    linear-gradient(90deg, rgba(251, 247, 239, 0.46) 0%, rgba(251, 247, 239, 0.1) 58%, rgba(251, 247, 239, 0) 100%);
}

.hero-corner-logo {
  position: absolute;
  right: clamp(40px, 7vw, 118px);
  bottom: clamp(36px, 6vw, 86px);
  z-index: 3;
  display: block;
  width: min(230px, 20vw);
  height: auto;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  filter:
    drop-shadow(0 2px 1px rgba(13, 46, 85, 0.72))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.58));
  opacity: 0.98;
}

.hero-logo {
  display: block;
  width: min(180px, 44vw);
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.26));
}

.hero-logo-wrap {
  display: flex;
  align-items: flex-start;
}

.logo-plain {
  padding-top: 8px;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--seal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ivory);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.9rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-text {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-width: 132px;
  padding: 0 22px;
  border: 1px solid var(--ink);
}

.button.primary {
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 12px 26px rgba(18, 54, 92, 0.24);
}

.button.secondary {
  background: rgba(255, 250, 241, 0.12);
  color: var(--ivory);
  border-color: rgba(255, 250, 241, 0.78);
}

.message-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #fbf7ef;
}

.message-band div {
  min-height: 156px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}

.message-band div:last-child {
  border-right: 0;
}

.message-band span {
  display: block;
  margin-bottom: 24px;
  color: var(--seal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.message-band p {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

.photo-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.1fr) minmax(260px, 0.72fr);
  align-items: end;
  gap: 16px;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 84px) 0;
}

.photo-story-copy {
  padding: 0 clamp(8px, 2vw, 24px) 18px 0;
}

.photo-story-copy h2 {
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.photo-story-copy p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.photo-tile {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--wood);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.photo-tile.large {
  min-height: 520px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.photo-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 54, 92, 0) 45%, rgba(18, 54, 92, 0.54) 100%);
}

.photo-tile figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: var(--ivory);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1.05;
}

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

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-item-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--ivory);
}

.menu-item-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-photo img {
  transform: scale(1.05);
}

.menu-item > .item-kana,
.menu-item > h3,
.menu-item > p {
  margin-left: 22px;
  margin-right: 22px;
}

.menu-item > .item-kana {
  margin-top: 18px;
  margin-bottom: 4px;
}

.menu-item > h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.menu-item > p:last-child {
  margin-bottom: 22px;
}

.item-kana {
  color: rgba(13, 46, 85, 0.45);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.menu-cta {
  margin-top: 32px;
  text-align: center;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.menu-item p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 86px);
  background: var(--ivory);
  border-block: 1px solid var(--line);
}

.craft-copy {
  display: grid;
  gap: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.craft-copy p {
  margin: 0;
}

.online-section {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: #fbf7ef;
  border-bottom: 1px solid var(--line);
}

.online-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.online-section .button.secondary {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.news-section {
  background: var(--paper);
}

.news-card {
  max-width: 760px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.news-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--seal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3 {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.news-card p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: 18px;
}

.visit-card,
.visit-details {
  background: #152f4d;
  color: var(--ivory);
  border-radius: 6px;
}

.visit-card {
  min-height: 360px;
  padding: clamp(28px, 5vw, 58px);
}

.visit-card .eyebrow {
  color: #e9c6b7;
}

.visit-card p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.08rem;
}

.visit-details {
  display: grid;
  align-content: stretch;
  overflow: hidden;
}

.visit-details div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 120px;
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.visit-details div:last-child {
  border-bottom: 0;
}

.visit-details span {
  color: rgba(255, 250, 241, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-details strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-list span {
  display: block;
}

.visit-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(26px, 5vw, 52px);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-form .eyebrow,
.contact-form h2,
.contact-form label:nth-of-type(3),
.contact-form .button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form h2 {
  margin-bottom: 10px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffdf7;
  color: var(--charcoal);
  font: inherit;
  font-weight: 500;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(18, 54, 92, 0.26);
  outline-offset: 2px;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.map-section {
  padding: 0 clamp(20px, 6vw, 84px) clamp(48px, 7vw, 86px);
  background: var(--paper);
}

.map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--ivory);
}

.map-section iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.88) contrast(0.96);
}

.map-fallback {
  position: relative;
  z-index: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
}

.map-fallback h2 {
  max-width: 620px;
}

.map-fallback p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.map-fallback .button {
  width: fit-content;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  nav {
    display: none;
  }

  .hero,
  .craft-section,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero-copy {
    min-height: calc(100svh - 180px);
    max-width: 100%;
    padding-right: min(260px, 34vw);
  }

  .hero-corner-logo {
    right: 28px;
    bottom: 42px;
    width: min(170px, 24vw);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .online-section {
    align-items: start;
    flex-direction: column;
  }

  .online-actions {
    justify-content: flex-start;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .photo-story-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 86px;
  }

  .header-action {
    min-width: 82px;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-corner-logo {
    top: auto;
    bottom: 28px;
    right: 18px;
    width: min(120px, 30vw);
  }

  .hero-copy {
    max-width: 100%;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-copy {
    gap: 18px;
    min-height: calc(100svh - 150px);
  }

  .message-band,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .message-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .message-band div:last-child {
    border-bottom: 0;
  }

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

  .menu-item {
    min-height: 220px;
  }

  .photo-tile,
  .photo-tile.large {
    min-height: 340px;
  }
}

/* Menu comparison pages */
.menu-photo-page {
  padding: clamp(36px, 5vw, 72px) clamp(18px, 5vw, 72px);
}

.menu-photo-hero {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 250, 240, 0.74);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.menu-photo-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.menu-photo-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.comparison-hero {
  margin-bottom: 28px;
}

.menu-version-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.menu-version-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.menu-photo-group {
  max-width: 1320px;
  margin: 0 auto clamp(48px, 7vw, 86px);
}

.menu-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.menu-group-heading h2 {
  color: var(--ink);
}

.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-photo-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-photo-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--wood);
  overflow: hidden;
}

.menu-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.menu-category {
  margin: 0 0 8px;
  color: var(--seal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.menu-jp {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-family: "Noto Serif JP", Georgia, serif;
  font-weight: 700;
}

.menu-description {
  margin: 0;
  color: var(--ink-soft);
}

.menu-price {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.preview-card {
  display: grid;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(28, 32, 36, 0.1);
}

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

.preview-card div {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.preview-card h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.menu-photo-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 40px 20px 56px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.6);
}

.menu-photo-footer img {
  width: 118px;
  height: auto;
}

.menu-photo-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .menu-photo-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .menu-photo-page {
    padding: 28px 14px;
  }

  .menu-photo-hero {
    padding: 24px;
  }

  .menu-photo-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .menu-group-heading {
    display: grid;
  }
}
/* End menu comparison pages */

/* === Craft (Broth & Noodles) section === */
.craft-section-broth {
  padding: clamp(64px, 9vw, 104px) clamp(24px, 6vw, 64px);
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.craft-broth-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.craft-section-broth .eyebrow {
  text-align: center;
}

.craft-broth-heading {
  margin: 12px 0 56px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
}

.craft-broth-heading .jp-headline {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.6em;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.craft-broth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 64px);
}

.craft-broth-block h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 600;
}

.craft-broth-block h3 .jp-headline {
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.88em;
  font-weight: 500;
  color: var(--ink-soft);
}

.craft-broth-block p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.craft-broth-block p.jp-text {
  margin-top: 6px;
  font-family: "Noto Serif JP", Georgia, serif;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.85;
}

@media (max-width: 720px) {
  .craft-broth-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .craft-broth-heading {
    margin-bottom: 36px;
  }
}

