/* Ryu Hakone Steak House - Modern Editorial Design */

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #c1121f;
  --color-red-light: #d8313f;
  --color-gray-light: #f5f5f5;
  --color-gray-mid: #666666;
  --font-primary: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-japanese: 'Noto Sans JP', sans-serif;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-surface: #ffffff;
  --bg-nav: rgba(255, 255, 255, 0.95);
  --bg-menu: #000000;
  --text-primary: #000000;
  --text-muted: #666666;
  --text-inverse: #ffffff;
  --ghost-hero: rgba(0, 0, 0, 0.06);
  --ghost-story: rgba(0, 0, 0, 0.04);
  --border-soft: rgba(0, 0, 0, 0.08);
  --border-mid: rgba(0, 0, 0, 0.12);
  --shadow-nav: rgba(0, 0, 0, 0.1);
  --shadow-soft: rgba(0, 0, 0, 0.1);
  --map-shell: #ffffff;
}

[data-theme='dark'] {
  --bg-primary: #111315;
  --bg-secondary: #171a1d;
  --bg-surface: #1c2024;
  --bg-nav: rgba(17, 19, 21, 0.94);
  --bg-menu: #0b0d0f;
  --text-primary: #f2f4f7;
  --text-muted: #bcc3cc;
  --text-inverse: #ffffff;
  --ghost-hero: rgba(255, 255, 255, 0.06);
  --ghost-story: rgba(255, 255, 255, 0.05);
  --border-soft: rgba(255, 255, 255, 0.14);
  --border-mid: rgba(255, 255, 255, 0.22);
  --shadow-nav: rgba(0, 0, 0, 0.45);
  --shadow-soft: rgba(0, 0, 0, 0.4);
  --map-shell: #252a2f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.35s ease, color 0.35s ease;
}

/* Minimal Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(10px);
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  transition: background-color 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  padding: 0.9rem 3rem;
}

.nav-left,
.nav-right {
  flex: 1;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-right {
  justify-content: flex-end;
  align-items: center;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: var(--color-red);
}

.nav-center {
  flex: 1;
  text-align: center;
}

.brand-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-red);
  text-decoration: none;
  font-family: var(--font-primary);
  transition: font-size 0.35s ease, letter-spacing 0.35s ease;
}

.navbar.scrolled .brand-logo {
  font-size: 1.35rem;
  letter-spacing: 0.07em;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.theme-toggle:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  font-size: 0.95rem;
  line-height: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 25vw, 24rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ghost-hero);
  white-space: nowrap;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  animation: ghostDrift 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 900px;
}

.hero-image-wrapper {
  margin: 0;
  width: 100%;
  max-width: min(90vw, 520px);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  opacity: 0;
  animation: logoReveal 1.1s cubic-bezier(0.2, 0.7, 0.1, 1) 0.15s forwards,
             logoDrift 8s ease-in-out 1.25s infinite;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: -8% -14%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 58%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  animation: logoSheen 5.5s ease-in-out 1.6s infinite;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(48px) scale(0.86) rotate(-4deg);
    filter: blur(9px);
  }
  65% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03) rotate(1deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
  }
}

@keyframes logoDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-7px) rotate(0.75deg);
  }
  65% {
    transform: translateY(5px) rotate(-0.55deg);
  }
}

@keyframes logoSheen {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-10%) scale(0.95);
  }
  40% {
    opacity: 0.28;
    transform: translateX(3%) scale(1.03);
  }
  60% {
    opacity: 0.16;
    transform: translateX(9%) scale(1.02);
  }
}

@keyframes ghostDrift {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: -0.02em;
  }
  50% {
    transform: translate(-50%, -52%) scale(1.01);
    letter-spacing: -0.015em;
  }
}

.hero-image {
  width: 100%;
  max-height: clamp(220px, 46vh, 440px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
  mix-blend-mode: normal;
}

.hero-headline {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  max-width: 600px;
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: textRise 0.9s ease 0.75s forwards;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-red);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  opacity: 0;
  animation: textRise 0.9s ease 0.95s forwards;
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button:hover {
  background: var(--color-red-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(193, 18, 31, 0.3);
}

.arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

/* About Preview Section */
.about-preview {
  padding: 4rem 3rem;
  background: var(--bg-surface);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: var(--color-red-light);
  transform: translateY(-2px);
}

.showcase-header {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.showcase-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.1em;
}

.showcase-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 0.05em;
  position: relative;
}

.showcase-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-red);
}

/* Story / Philosophy Section */
.story-section {
  position: relative;
  padding: 6rem 3rem;
  background: var(--bg-surface);
  overflow: hidden;
}

.story-bg-text {
  position: absolute;
  bottom: -2rem;
  left: 3rem;
  font-size: clamp(10rem, 25vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ghost-story);
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.story-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.story-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background: var(--color-red-light);
  transform: translateY(-2px);
}

.story-right {
  position: relative;
}

.story-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.story-image-large {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 424px;
}

.story-image-small {
  height: 200px;
}

.story-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 28px var(--shadow-soft);
  display: block;
}

.placeholder-shape,
.placeholder-rect {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.03));
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.placeholder-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: rgba(193, 18, 31, 0.08);
  border-radius: 50%;
}

/* Vision and Values Sections */
.vision-section {
  position: relative;
  padding: 5rem 3rem;
  background: var(--bg-secondary);
}

.vision-container,
.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vision-section .showcase-label {
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-red);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vision-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow-soft);
}

.section-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-primary);
  margin-top: 1.25rem;
}

.values-section {
  background: var(--bg-menu);
  padding: 5rem 2rem;
}

.values-header {
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.value-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2rem 1.5rem;
  color: var(--color-white);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.value-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-red);
  background: rgba(255, 255, 255, 0.04);
}

.value-number {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-red-light);
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 2rem 0 0.75rem;
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

/* Menu Section */
.menu-section {
  padding: 5rem 3rem;
  background: var(--bg-secondary);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section .showcase-label {
  color: var(--text-muted);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.menu-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-primary);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  padding: 2rem;
  min-height: 210px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px var(--shadow-soft);
}

.menu-item-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.menu-item-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.menu-item-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem;
}

.menu-item-price {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0;
}

.menu-item-sub {
  margin: 0 0 0.7rem;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  opacity: 0.78;
}

.menu-note {
  max-width: 820px;
  margin: 2rem auto 0;
  text-align: center;
}

.menu-note-title {
  font-size: calc(1rem + 2pt);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.65rem;
  color: inherit;
  opacity: 0.76;
}

.menu-note-text {
  font-size: 1rem;
  line-height: 1.9;
  color: inherit;
  opacity: 1;
}

/* Location Section */
.location-section {
  padding: 5rem 3rem;
  background: var(--bg-surface);
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.location-address {
  font-size: 1rem;
  line-height: 1.8;
}

.location-address strong {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.visit-schedule {
  margin-top: 2.5rem;
}

.visit-schedule-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0rem;
  display: block;
}

.visit-schedule-days,
.visit-schedule-hours {
  font-size: 1rem;
  margin: 0;
}

.location-map {
  width: 100%;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 40px var(--shadow-soft);
  border: 1px solid var(--border-soft);
  background: var(--map-shell);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.footer {
  background: var(--bg-menu);
  color: var(--text-inverse);
  padding: 4rem 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.footer-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-owner {
  font-size: 0.95rem;
  color: var(--color-red);
  opacity: 1;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  opacity: 0.78;
  margin-bottom: 2rem;
}

.footer-phone svg {
  width: 13px;
  height: 13px;
}

.footer-phone a {
  color: var(--text-inverse);
  text-decoration: none;
}

.footer-phone a:hover {
  color: var(--color-red-light);
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.6;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background: transparent;
  border: 2px solid var(--text-inverse);
  color: var(--text-inverse);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: translateY(-4px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  stroke: none;
}

.social-link.instagram svg {
  stroke: currentColor;
}

.social-link.instagram svg circle:last-child {
  fill: currentColor;
  stroke: none;
}

.scroll-toggle {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid var(--border-mid);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: 0 12px 30px var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 980;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.scroll-toggle.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-toggle:hover,
.scroll-toggle:focus-visible {
  color: var(--color-red);
  border-color: var(--color-red);
}

.scroll-toggle-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.5rem 2rem;
  }

  .nav-left,
  .nav-right {
    gap: 1rem;
  }

  .about-container,
  .story-container,
  .location-details,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .menu-item-wide {
    grid-column: auto;
  }

  .story-bg-text {
    font-size: 12rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.75rem 1.5rem;
  }

  .nav-left {
    display: none;
  }

  .nav-item {
    font-size: 0.8rem;
  }

  .brand-logo {
    font-size: 1.4rem;
  }

  .navbar.scrolled .brand-logo {
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-image {
    max-height: clamp(200px, 38vh, 320px);
  }

  .hero-bg-text {
    font-size: 5rem;
  }

  .showcase-header {
    flex-direction: column;
    gap: 1rem;
  }

  .showcase-label {
    font-size: 0.8rem;
  }

  .story-section,
  .about-preview,
  .location-section,
  .vision-section,
  .values-section,
  .menu-section {
    padding: 3rem 1.5rem;
  }

  .story-bg-text {
    font-size: 8rem;
    left: 1rem;
  }

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

  .location-map {
    height: 300px;
  }

  .visit-schedule {
    margin-top: 2rem;
  }

  .vision-panel,
  .value-item {
    min-height: auto;
  }

  .values-grid,
  .menu-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-left {
    display: none;
  }

  .nav-center,
  .nav-right {
    flex: none;
  }

  .nav-right {
    gap: 0.6rem;
  }

  .scroll-toggle {
    right: 1rem;
    bottom: 1rem;
    width: 2.8rem;
    height: 2.8rem;
  }

  .theme-toggle-label {
    display: none;
  }

  .hero-bg-text {
    font-size: 3.5rem;
  }

  .hero-image-wrapper {
    max-width: 280px;
  }
}

/* Japanese editorial redesign */
:root {
  --ink: #050505;
  --paper: #ffffff;
  --vermillion: #c1121f;
  --soft-ink: rgba(0, 0, 0, 0.62);
  --hairline: rgba(0, 0, 0, 0.12);
  --white-line: rgba(255, 255, 255, 0.18);
}

body {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ink);
  padding: 1rem 3rem;
}

.navbar.scrolled {
  padding: 0.7rem 3rem;
}

.nav-item,
.theme-toggle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-logo {
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.35rem 0.65rem;
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.navbar.scrolled .brand-logo {
  font-size: 0.9rem;
}

.theme-toggle {
  border-radius: 0;
  border-color: var(--ink);
}

.hero-section {
  min-height: 100vh;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  background: var(--ink);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 54px 54px,
    radial-gradient(circle at 12% 18%, rgba(193, 18, 31, 0.25), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.84));
  z-index: 1;
}

.hero-bg-text {
  top: auto;
  bottom: -3rem;
  left: 3rem;
  transform: none;
  font-size: clamp(5rem, 18vw, 17rem);
  color: rgba(255, 255, 255, 0.045);
  animation: none;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 0.75rem;
  padding: 0 5vw 0 0;
  transform: rotate(-4deg) scale(1.08);
  transform-origin: center;
  opacity: 0.9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.05) brightness(0.74);
  border-left: 8px solid var(--paper);
  border-right: 8px solid var(--paper);
}

.hero-media img:nth-child(2) {
  transform: translateY(9vh);
}

.hero-content {
  width: min(560px, 100%);
  min-height: 100vh;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 8rem 3rem 4rem clamp(2rem, 8vw, 7rem);
  color: var(--color-white);
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 7.2rem;
  left: clamp(2rem, 8vw, 7rem);
  width: 8rem;
  height: 1px;
  background: var(--vermillion);
}

.hero-image-wrapper {
  max-width: 220px;
  background: var(--paper);
  border: 1px solid var(--white-line);
  padding: 1.15rem;
  animation: textRise 0.9s ease 0.1s forwards;
}

.hero-image-wrapper::after {
  display: none;
}

.hero-image {
  max-height: none;
  filter: none;
}

.hero-headline {
  color: var(--color-white);
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.03em;
  max-width: 640px;
  text-transform: uppercase;
}

.cta-button,
.story-btn {
  border-radius: 0;
  background: var(--vermillion);
  padding: 0.9rem 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
}

.story-section,
.vision-section,
.menu-section,
.location-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section {
  padding: clamp(4.5rem, 8vw, 8rem) 3rem;
  border-top: 1px solid var(--ink);
}

.story-container,
.vision-container,
.values-container,
.menu-container,
.location-container {
  position: relative;
  max-width: 1180px;
}

.vertical-section-mark {
  position: absolute;
  top: 0;
  left: -2.25rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  color: var(--vermillion);
}

.story-bg-text {
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(6rem, 20vw, 16rem);
}

.about-label,
.showcase-label {
  color: var(--vermillion);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-subtitle {
  font-size: clamp(1.4rem, 3vw, 2.45rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.story-text,
.section-text,
.menu-intro,
.menu-item-text,
.location-address {
  color: var(--soft-ink);
  line-height: 2;
}

.story-text {
  white-space: pre-line;
}

.story-image-grid {
  gap: 0.8rem;
  transform: rotate(1.25deg);
}

.story-photo {
  border: 8px solid var(--paper);
  box-shadow: 18px 18px 0 var(--ink);
  filter: contrast(1.04) saturate(0.92);
}

.section-heading {
  position: relative;
  display: block;
  text-align: center;
  padding-top: 1.25rem;
}

.section-heading::before,
.section-heading::after {
  content: '';
  position: absolute;
  top: 0;
  height: 1px;
  background: var(--ink);
}

.section-heading::before {
  left: 0;
  right: calc(50% + 4rem);
}

.section-heading::after {
  left: calc(50% + 4rem);
  right: 0;
}

.section-heading .showcase-label {
  display: inline-block;
}

.section-title {
  color: var(--ink);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.section-title::after,
.showcase-title::after {
  width: 44px;
  height: 44px;
  bottom: -4.2rem;
  border-radius: 50%;
  background: var(--vermillion);
  opacity: 0.95;
}

.vision-grid {
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.vision-panel {
  border: 0;
  border-right: 1px solid var(--ink);
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3.4rem);
  box-shadow: none;
}

.vision-panel:last-child {
  border-right: 0;
}

.values-section,
.footer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--ink);
}

.values-container {
  color: var(--color-white);
}

.showcase-header {
  gap: 2rem;
}

.showcase-title {
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.95;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--white-line);
}

.value-item {
  min-height: 380px;
  padding: 1.75rem 1.25rem;
  border: 0;
  border-right: 1px solid var(--white-line);
  background: transparent;
}

.value-item:last-child {
  border-right: 0;
}

.value-number {
  color: var(--vermillion);
  border-bottom: 1px solid var(--white-line);
  padding-bottom: 1rem;
}

.value-title,
.menu-item-title {
  letter-spacing: 0.12em;
}

.menu-list {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.menu-item {
  min-height: 220px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.menu-item:nth-child(2n),
.menu-item-wide {
  border-right: 0;
}

.menu-item-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: start;
}

.menu-item-title::before,
.value-title::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--vermillion);
  margin-bottom: 1rem;
}

.location-details {
  border: 1px solid var(--ink);
  gap: 0;
  background: var(--paper);
}

.location-address {
  padding: 2rem;
}

.location-map {
  border: 0;
  border-left: 1px solid var(--ink);
  box-shadow: none;
}

.footer {
  border-top: 1px solid var(--vermillion);
}

.footer-logo {
  background: var(--paper);
  border: 1px solid var(--white-line);
  padding: 1rem;
  filter: none;
}

.scroll-toggle {
  border-radius: 0;
  border-color: var(--ink);
}

@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-item {
    border-bottom: 1px solid var(--white-line);
  }

  .value-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .hero-media {
    inset: 0;
    opacity: 0.35;
    padding: 0;
  }

  .hero-content {
    width: 100%;
    padding: 7rem 1.5rem 3rem;
  }

  .hero-content::before {
    left: 1.5rem;
  }

  .story-container,
  .vision-grid,
  .location-details {
    grid-template-columns: 1fr;
  }

  .vision-panel,
  .location-map {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

  .vertical-section-mark {
    position: static;
    writing-mode: horizontal-tb;
    margin-bottom: 1rem;
  }

  .menu-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .menu-item:nth-child(2n),
  .value-item,
  .value-item:nth-child(2n) {
    border-right: 0;
  }

  .menu-item-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.85rem 1rem;
  }

  .story-section,
  .vision-section,
  .values-section,
  .menu-section,
  .location-section {
    padding: 3.5rem 1rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 15vw, 4rem);
  }

  .hero-image-wrapper {
    max-width: 170px;
  }

  .story-photo {
    border-width: 5px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .showcase-header {
    gap: 1rem;
  }
}

/* Refined logo-only hero */
.hero-section {
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 48%, rgba(255, 255, 255, 0.88) 60%, rgba(255, 255, 255, 0) 100%),
    var(--paper);
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(90deg, rgba(193, 18, 31, 0.08), transparent 34%);
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('Untitled%20design.svg') right 3vw center / min(56vw, 760px) no-repeat;
  opacity: 0.18;
  filter: grayscale(1) contrast(1.1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 84%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 84%, transparent 100%);
  pointer-events: none;
}

.hero-bg-text {
  font-size: clamp(4rem, 12vw, 10rem);
  color: rgba(0, 0, 0, 0.035);
}

.hero-content {
  z-index: 2;
  width: min(500px, 100%);
}

.hero-image-wrapper {
  max-width: 170px;
  padding: 0.85rem;
  border-color: var(--ink);
}

.hero-headline {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.12;
  max-width: 470px;
}

@media (max-width: 900px) {
  .hero-section::after {
    background-position: center 58%;
    background-size: min(86vw, 520px);
    opacity: 0.1;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 72%, transparent 100%);
  }

  .hero-headline {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }
}

/* Keep the menu grid from exposing a dark empty cell */
.menu-list {
  background: var(--paper);
}

.menu-item:nth-child(3) {
  grid-column: 1 / -1;
}

/* Dark culinary editorial redesign */
:root {
  --culinary-bg: #121113;
  --culinary-panel: #1b1a1c;
  --culinary-panel-soft: #202022;
  --culinary-text: #f6f3f0;
  --culinary-muted: rgba(246, 243, 240, 0.62);
  --culinary-line: rgba(255, 255, 255, 0.08);
}

body {
  background: var(--culinary-bg);
  color: var(--culinary-text);
}

.navbar {
  background: rgba(18, 17, 19, 0.92);
  border-bottom: 1px solid var(--culinary-line);
}

.brand-logo,
.nav-item,
.theme-toggle {
  color: var(--culinary-text);
}

.brand-logo,
.theme-toggle {
  border-color: var(--culinary-line);
}

.hero-section,
.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section,
.footer {
  width: min(100%, 1180px);
  margin: 0 auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--culinary-panel);
  border-top: 1px solid var(--culinary-line);
}

.hero-section {
  min-height: 82vh;
  background:
    linear-gradient(90deg, rgba(18, 17, 19, 0.96) 0%, rgba(18, 17, 19, 0.9) 46%, rgba(18, 17, 19, 0.42) 100%),
    linear-gradient(180deg, rgba(193, 18, 31, 0.16), transparent 48%),
    var(--culinary-panel);
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 58px 58px,
    radial-gradient(circle at 24% 18%, rgba(193, 18, 31, 0.22), transparent 26%);
}

.hero-section::after {
  background: url('Untitled%20design.svg') right 4vw center / min(52vw, 620px) no-repeat;
  opacity: 0.2;
  filter: grayscale(1) invert(1) contrast(1.1);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 76%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 76%, transparent 100%);
}

.hero-content {
  min-height: 82vh;
  padding-left: clamp(2rem, 7vw, 6rem);
}

.hero-headline {
  color: var(--culinary-text);
  font-size: clamp(1.75rem, 4vw, 3.35rem);
  max-width: 560px;
  letter-spacing: 0.11em;
  line-height: 1.18;
}

.hero-bg-text {
  color: rgba(255, 255, 255, 0.035);
}

.cta-button,
.story-btn {
  background: var(--color-red);
  color: var(--color-white);
  border: 1px solid var(--color-red);
}

.story-container,
.vision-container,
.values-container,
.menu-container,
.location-container,
.footer-content {
  max-width: 960px;
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section {
  padding: clamp(4rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.vertical-section-mark {
  color: var(--color-red);
  opacity: 0.9;
}

.about-label,
.showcase-label {
  color: var(--color-red);
}

.about-subtitle,
.section-title,
.showcase-title,
.location-title,
.menu-item-title,
.value-title,
.visit-schedule-title,
.footer-name {
  color: var(--culinary-text);
}

.section-title,
.showcase-title,
.location-title {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  letter-spacing: 0.18em;
  font-weight: 500;
}

.section-heading::before,
.section-heading::after {
  background: var(--culinary-line);
}

.section-title::after,
.showcase-title::after {
  width: 52px;
  height: 2px;
  border-radius: 0;
  bottom: -1.5rem;
  background: var(--color-red);
}

.story-text,
.section-text,
.menu-intro,
.menu-note-text,
.menu-item-text,
.value-text,
.location-address,
.footer-address,
.footer-copyright {
  color: var(--culinary-muted);
}

.story-image-grid {
  transform: none;
  gap: 1rem;
}

.story-photo {
  border: 0;
  box-shadow: none;
  filter: brightness(0.7) saturate(0.9) contrast(1.08);
}

.vision-grid,
.menu-list,
.location-details,
.values-grid {
  border: 0;
  background: transparent;
  gap: 1.25rem;
}

.vision-panel,
.menu-item,
.value-item,
.location-address,
.location-map {
  background: var(--culinary-panel-soft);
  border: 1px solid var(--culinary-line);
}

.vision-panel {
  border-right: 1px solid var(--culinary-line);
}

.values-section,
.footer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    #171618;
}

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

.value-item {
  min-height: 300px;
}

.value-number {
  border-bottom-color: var(--culinary-line);
}

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

.menu-item,
.menu-item:nth-child(3),
.menu-item-wide {
  grid-column: auto;
  min-height: auto;
  display: block;
  padding: 0;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  display: block;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: brightness(0.76) saturate(0.92);
}

.menu-item:nth-child(1)::before {
  background-image: url('resto1.jpeg');
}

.menu-item:nth-child(2)::before {
  background-image: url('backshot1.jpeg');
}

.menu-item:nth-child(3)::before {
  background-image: url('staff1.jpeg');
}

.menu-item:nth-child(4)::before {
  background-image: url('resto1.jpeg');
}

.menu-item-title {
  margin: 1.25rem 1.25rem 0.35rem;
  font-size: 0.82rem;
  text-align: center;
}

.menu-item-title::before,
.value-title::before {
  width: 24px;
  height: 1px;
  margin: 0 auto 0.9rem;
}

.menu-item-text {
  padding: 0 1.25rem 1.4rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
}

.location-map {
  border-left: 1px solid var(--culinary-line);
}

.footer-logo {
  background: var(--color-white);
}

.scroll-toggle {
  background: var(--culinary-panel-soft);
  color: var(--culinary-text);
  border-color: var(--culinary-line);
}

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

@media (max-width: 720px) {
  .hero-section,
  .hero-content {
    min-height: 76vh;
  }

  .hero-section::after {
    background-size: min(82vw, 430px);
    opacity: 0.11;
  }

  .menu-list,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Final Raku-inspired dark restaurant direction */
:root {
  --final-bg: #0f1110;
  --final-panel: #171918;
  --final-panel-soft: #202220;
  --final-text: #f7f0e8;
  --final-muted: rgba(247, 240, 232, 0.72);
  --final-gold: #d8aa69;
  --final-line: rgba(255, 255, 255, 0.13);
}

html {
  background: var(--final-bg);
}

body {
  background:
    radial-gradient(circle at 18% 6%, rgba(193, 18, 31, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(45deg, rgba(255, 255, 255, 0.018) 25%, transparent 25%) 0 0 / 22px 22px,
    var(--final-bg);
  color: var(--final-text);
}

.navbar {
  left: 50%;
  right: auto;
  width: min(1180px, 100%);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
  border-bottom: 0;
  box-shadow: none !important;
}

.nav-item,
.brand-logo,
.theme-toggle {
  color: var(--final-text);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
}

.brand-logo,
.theme-toggle {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-section {
  width: min(1180px, 100%);
  min-height: 650px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.5)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.65)),
    url('resto1.jpeg') center / cover no-repeat;
  border: 0;
}

.hero-section::before,
.hero-section::after,
.hero-bg-text {
  display: none;
}

.hero-content {
  width: 100%;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
}

.hero-content::before {
  display: none;
}

.hero-mark {
  display: block;
  width: clamp(120px, 16vw, 210px);
  height: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.85));
}

.hero-headline {
  max-width: 620px;
  color: var(--final-text);
  font-size: clamp(1.65rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.85);
}

.cta-button,
.story-btn {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.94);
  color: #111111;
  box-shadow: none;
}

.cta-button:hover,
.story-btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.035), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
    var(--final-bg);
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 7vw, 6rem);
}

.story-container,
.vision-container,
.values-container,
.menu-container,
.location-container,
.footer-content {
  max-width: 900px;
}

.vertical-section-mark {
  color: var(--final-gold);
}

.about-label,
.showcase-label {
  color: var(--color-red);
  font-size: 0.68rem;
}

.about-subtitle,
.section-title,
.showcase-title,
.location-title,
.menu-item-title,
.value-title,
.footer-name {
  color: var(--final-text);
  font-family: var(--font-primary);
}

.section-title,
.showcase-title,
.location-title {
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.18em;
}

.location-title {
  font-size: clamp(1.4rem, 3vw, 2.45rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title::after,
.showcase-title::after {
  background: var(--final-gold);
}

.story-text,
.section-text,
.menu-intro,
.menu-note-text,
.menu-item-text,
.value-text,
.location-address,
.footer-address,
.footer-copyright {
  color: var(--final-muted);
}

.story-container {
  grid-template-columns: 1fr;
  text-align: center;
}

.story-left {
  max-width: 680px;
  margin: 0 auto;
}

.story-text {
  max-width: none;
}

.story-image-grid {
  max-width: 980px;
  margin: 3rem auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
}

.story-image-large,
.story-image-small {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  height: 240px;
}

.story-photo {
  border: 0;
  filter: brightness(0.62) contrast(1.1) saturate(0.85);
}

.vision-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.vision-panel,
.value-item,
.menu-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--final-line);
}

.vision-panel {
  min-height: auto;
}

.values-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.value-item {
  min-height: 280px;
  padding: 1.25rem;
}

.value-number {
  color: var(--color-red);
  border-bottom-color: var(--final-line);
}

.value-title {
  font-size: 0.82rem;
}

.value-text {
  font-size: 0.75rem;
}

.menu-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.menu-item::before {
  aspect-ratio: 1 / 0.78;
}

.menu-item-title {
  color: var(--final-text);
  margin: 0;
  text-align: left;
  flex: 1;
}

.menu-item {
  padding: 1.35rem;
}

.menu-item::before,
.menu-item-title::before {
  display: none;
}

.menu-item-text,
.menu-item-sub {
  text-align: left;
  padding: 0;
}

.menu-item-title::before,
.value-title::before {
  background: var(--color-red);
}

.location-section {
  padding-bottom: 6rem;
}

.location-container {
  text-align: center;
}

.location-details {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  border: 0;
  background: transparent;
}

.location-address {
  background: transparent;
  border: 0;
  padding: 0 0 1.5rem;
}

.location-map {
  position: relative;
  height: 330px;
  border: 1px solid var(--final-line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 26px 26px,
    #171918;
  overflow: hidden;
}

.location-map::before {
  content: 'About Our Location';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--final-text);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.location-map iframe {
  filter: grayscale(1) invert(1) brightness(0.52) contrast(1.2);
  opacity: 0.42;
}

.footer {
  padding-top: 5rem;
  text-align: center;
}

.footer-logo {
  width: 90px;
  background: transparent;
  border: 0;
  padding: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.8));
}

.social-link {
  border-color: var(--final-line);
}

.scroll-toggle {
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
}

@media (max-width: 1000px) {
  .values-grid,
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-section,
  .hero-content {
    min-height: 560px;
  }

  .hero-headline {
    font-size: clamp(1.35rem, 7vw, 2.25rem);
  }

  .vision-grid,
  .values-grid,
  .menu-list,
  .story-image-grid {
    grid-template-columns: 1fr;
  }

  .story-image-large,
  .story-image-small {
    height: 210px;
  }
}

/* Final plain black cleanup */
html,
body {
  background: #000000;
}

body {
  color: var(--final-text);
}

.navbar {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.hero-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.56)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6)),
    url('resto1.jpeg') center / cover no-repeat;
}

.hero-mark,
.footer-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.8));
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section,
.footer {
  width: 100%;
  max-width: none;
  background: #000000;
}

.story-container,
.vision-container,
.values-container,
.menu-container,
.location-container,
.footer-content {
  max-width: 960px;
}

.vision-panel,
.value-item,
.menu-item,
.location-address,
.location-map {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.vision-grid,
.values-grid,
.menu-list,
.location-details {
  background: transparent;
}

.menu-item::before {
  filter: brightness(0.68) contrast(1.08) saturate(0.9);
}

.location-map {
  background: #000000;
}

/* Final theme polish */
.vertical-section-mark {
  display: none;
}

:root {
  --final-gold: #ffffff;
}

.section-title::after,
.showcase-title::after {
  color: #ffffff;
  background: #ffffff;
}

.value-number {
  background: transparent;
}

html:not([data-theme='dark']),
html:not([data-theme='dark']) body {
  background: #ffffff;
}

html:not([data-theme='dark']) body {
  color: #000000;
}

html:not([data-theme='dark']) .story-section,
html:not([data-theme='dark']) .vision-section,
html:not([data-theme='dark']) .values-section,
html:not([data-theme='dark']) .menu-section,
html:not([data-theme='dark']) .location-section,
html:not([data-theme='dark']) .footer {
  background: #ffffff;
}

html:not([data-theme='dark']) .about-subtitle,
html:not([data-theme='dark']) .section-title,
html:not([data-theme='dark']) .showcase-title,
html:not([data-theme='dark']) .location-title,
html:not([data-theme='dark']) .menu-item-title,
html:not([data-theme='dark']) .value-title,
html:not([data-theme='dark']) .footer-name,
html:not([data-theme='dark']) .nav-item,
html:not([data-theme='dark']) .brand-logo,
html:not([data-theme='dark']) .theme-toggle {
  color: #000000;
}

html:not([data-theme='dark']) .story-text,
html:not([data-theme='dark']) .section-text,
html:not([data-theme='dark']) .menu-intro,
html:not([data-theme='dark']) .menu-note-text,
html:not([data-theme='dark']) .menu-item-text,
html:not([data-theme='dark']) .value-text,
html:not([data-theme='dark']) .location-address,
html:not([data-theme='dark']) .footer-address,
html:not([data-theme='dark']) .footer-copyright {
  color: rgba(0, 0, 0, 0.68);
}

html:not([data-theme='dark']) .vision-panel,
html:not([data-theme='dark']) .value-item,
html:not([data-theme='dark']) .menu-item,
html:not([data-theme='dark']) .location-map {
  border-color: rgba(0, 0, 0, 0.16);
}

html:not([data-theme='dark']) .section-title::after,
html:not([data-theme='dark']) .showcase-title::after,
html:not([data-theme='dark']) .menu-item-title::before,
html:not([data-theme='dark']) .value-title::before {
  background: #000000;
}

html:not([data-theme='dark']) .value-number {
  color: #000000;
  border-bottom-color: rgba(0, 0, 0, 0.16);
}

html:not([data-theme='dark']) .navbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
}

html:not([data-theme='dark']) .footer-logo,
html:not([data-theme='dark']) .hero-mark {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.nav-item,
.brand-logo,
.theme-toggle {
  text-shadow: none;
}

/* Visible map */
.location-map {
  height: 430px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.location-map::before {
  display: none;
}

.location-map iframe {
  filter: none;
  opacity: 1;
}

html[data-theme='dark'] .location-map {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Soft cream light theme override */
html:not([data-theme='dark']),
html:not([data-theme='dark']) body {
  background: #f4eee4;
}

html:not([data-theme='dark']) body {
  color: #2f251d;
}

html:not([data-theme='dark']) .story-section,
html:not([data-theme='dark']) .vision-section,
html:not([data-theme='dark']) .values-section,
html:not([data-theme='dark']) .menu-section,
html:not([data-theme='dark']) .location-section,
html:not([data-theme='dark']) .footer {
  background: #f4eee4;
}

html:not([data-theme='dark']) .vision-panel,
html:not([data-theme='dark']) .value-item,
html:not([data-theme='dark']) .menu-item,
html:not([data-theme='dark']) .location-address,
html:not([data-theme='dark']) .location-map {
  background: #efe6d8;
  border-color: rgba(104, 82, 63, 0.22);
}

html:not([data-theme='dark']) .about-subtitle,
html:not([data-theme='dark']) .section-title,
html:not([data-theme='dark']) .showcase-title,
html:not([data-theme='dark']) .location-title,
html:not([data-theme='dark']) .menu-item-title,
html:not([data-theme='dark']) .value-title,
html:not([data-theme='dark']) .footer-name,
html:not([data-theme='dark']) .nav-item,
html:not([data-theme='dark']) .brand-logo,
html:not([data-theme='dark']) .theme-toggle {
  color: #2f251d;
}

html:not([data-theme='dark']) .story-text,
html:not([data-theme='dark']) .section-text,
html:not([data-theme='dark']) .menu-intro,
html:not([data-theme='dark']) .menu-item-text,
html:not([data-theme='dark']) .value-text,
html:not([data-theme='dark']) .location-address,
html:not([data-theme='dark']) .footer-address,
html:not([data-theme='dark']) .footer-copyright {
  color: rgba(47, 37, 29, 0.78);
}

html:not([data-theme='dark']) .section-title::after,
html:not([data-theme='dark']) .showcase-title::after,
html:not([data-theme='dark']) .menu-item-title::before,
html:not([data-theme='dark']) .value-title::before {
  background: #8f745c;
}

html:not([data-theme='dark']) .value-number {
  color: #8f745c;
  border-bottom-color: rgba(104, 82, 63, 0.22);
}

html:not([data-theme='dark']) .navbar {
  background: linear-gradient(180deg, rgba(244, 238, 228, 0.94), rgba(244, 238, 228, 0));
}

html:not([data-theme='dark']) .footer-phone {
  color: #2f251d;
  opacity: 1;
}

html:not([data-theme='dark']) .footer-phone a {
  color: #2f251d;
}

/* Location two-column layout */
.location-container {
  max-width: 1120px;
}

.location-details {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.6fr);
  gap: 3rem;
  align-items: start;
  text-align: left;
}

.location-address {
  padding: 0;
}

.location-map {
  margin: 0;
}

@media (max-width: 860px) {
  .location-details {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Final spacing and emphasis fixes */
.location-title {
  font-weight: 800;
}

.visit-schedule-title {
  color: var(--color-red);
}

.footer-logo {
  width: 210px;
}

.vision-grid {
  align-items: stretch;
}

.vision-panel {
  height: 100%;
}

.values-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.value-item {
  height: 100%;
  min-height: 340px;
}

html:not([data-theme='dark']) .visit-schedule-title {
  color: var(--color-red);
}

@media (max-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Final alignment and landing logo fixes */
.story-container,
.story-left {
  text-align: center;
}

.story-btn {
  margin-left: auto;
  margin-right: auto;
}

.story-image-grid {
  justify-content: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-mark,
html:not([data-theme='dark']) .hero-mark {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.8));
}

/* Complete right-side borders on outlined sections */
.vision-panel,
.vision-panel:last-child,
.value-item,
.value-item:last-child,
.menu-item,
.menu-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

html:not([data-theme='dark']) .vision-panel,
html:not([data-theme='dark']) .vision-panel:last-child,
html:not([data-theme='dark']) .value-item,
html:not([data-theme='dark']) .value-item:last-child,
html:not([data-theme='dark']) .menu-item,
html:not([data-theme='dark']) .menu-item:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

/* Hero split alignment */
.hero-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 0.75fr);
  column-gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
  justify-items: start;
  text-align: left;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(2rem, 6vw, 5rem);
  padding-right: clamp(2rem, 6vw, 5rem);
}

.hero-mark {
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: center;
  width: clamp(260px, 34vw, 520px);
  max-height: 52vh;
  object-fit: contain;
  margin: 0;
}

.hero-headline {
  grid-column: 1;
  grid-row: 1;
  text-align: left;
  max-width: 640px;
}

.hero-content .cta-button {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  margin-top: 2rem;
}

@media (max-width: 820px) {
  .hero-content {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-mark,
  .hero-headline,
  .hero-content .cta-button {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
  }

  .hero-mark {
    width: clamp(180px, 52vw, 300px);
    order: -1;
  }
}

/* Plain white hero + alternating RYU brand sections */
:root,
html[data-theme='dark'] {
  --ryu-red: #c1121f;
  --ryu-red-bright: #e01f2d;
  --ryu-black: #050505;
  --ryu-ink: #111111;
  --ryu-white: #ffffff;
  --ryu-soft: #f4f1ef;
  --ryu-line: rgba(0, 0, 0, 0.16);
  --ryu-line-dark: rgba(255, 255, 255, 0.2);
}

html,
html[data-theme='dark'],
body,
html[data-theme='dark'] body {
  background: var(--ryu-white);
  color: var(--ryu-ink);
}

.navbar,
html:not([data-theme='dark']) .navbar,
html[data-theme='dark'] .navbar {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
}

.nav-item,
.brand-logo,
.theme-toggle,
html[data-theme='dark'] .nav-item,
html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle {
  color: var(--ryu-ink);
  text-shadow: none;
}

.brand-logo,
.theme-toggle,
html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle {
  border-color: rgba(0, 0, 0, 0.22);
}

.nav-item:hover,
html[data-theme='dark'] .nav-item:hover {
  color: var(--ryu-red);
}

.hero-section,
html[data-theme='dark'] .hero-section {
  min-height: 670px;
  background:
    linear-gradient(90deg, rgba(193, 18, 31, 0.08) 0 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(193, 18, 31, 0.06) 0 1px, transparent 1px) 0 0 / 34px 34px,
    var(--ryu-white);
  color: var(--ryu-ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.hero-section::before {
  display: block;
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--ryu-red) 0 56px, var(--ryu-black) 56px 112px);
  opacity: 1;
}

.hero-section::after,
.hero-bg-text {
  display: none;
}

.hero-content,
html[data-theme='dark'] .hero-content {
  min-height: 670px;
  color: var(--ryu-ink);
}

.hero-mark,
html:not([data-theme='dark']) .hero-mark,
html[data-theme='dark'] .hero-mark {
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.14));
}

.hero-headline,
html[data-theme='dark'] .hero-headline {
  color: var(--ryu-ink);
  font-weight: 900;
  text-shadow: none;
}

.hero-headline::after {
  content: '';
  display: block;
  width: min(210px, 44vw);
  height: 10px;
  margin-top: 1.6rem;
  background: var(--ryu-red);
}

.cta-button,
.story-btn,
html[data-theme='dark'] .cta-button,
html[data-theme='dark'] .story-btn {
  background: var(--ryu-red);
  border-color: var(--ryu-red);
  color: var(--ryu-white);
}

.cta-button:hover,
.story-btn:hover,
html[data-theme='dark'] .cta-button:hover,
html[data-theme='dark'] .story-btn:hover {
  background: var(--ryu-black);
  border-color: var(--ryu-black);
  color: var(--ryu-white);
}

.story-section,
html:not([data-theme='dark']) .story-section,
html[data-theme='dark'] .story-section,
.values-section,
html:not([data-theme='dark']) .values-section,
html[data-theme='dark'] .values-section,
.location-section,
html:not([data-theme='dark']) .location-section,
html[data-theme='dark'] .location-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px) 0 0 / 32px 32px,
    var(--ryu-black);
  color: var(--ryu-white);
}

.vision-section,
html:not([data-theme='dark']) .vision-section,
html[data-theme='dark'] .vision-section,
.menu-section,
html:not([data-theme='dark']) .menu-section,
html[data-theme='dark'] .menu-section,
.footer,
html:not([data-theme='dark']) .footer,
html[data-theme='dark'] .footer {
  background: var(--ryu-white);
  color: var(--ryu-ink);
}

.story-section,
.vision-section,
.values-section,
.menu-section,
.location-section {
  position: relative;
  overflow: hidden;
}

.story-section::before,
.values-section::before,
.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 7vw, 6rem);
  width: 96px;
  height: 12px;
  background: var(--ryu-red);
}

.vision-section::before,
.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 7vw, 6rem);
  width: 150px;
  height: 12px;
  background: var(--ryu-black);
}

.story-section .about-subtitle,
.story-section .story-text,
.story-section .about-label,
.values-section .showcase-title,
.values-section .value-title,
.values-section .value-text,
.values-section .showcase-label,
.location-section .location-title,
.location-section .location-address,
.location-section .visit-schedule-title,
.location-section .visit-schedule-days,
.location-section .visit-schedule-hours,
html[data-theme='dark'] .story-section .about-subtitle,
html[data-theme='dark'] .story-section .story-text,
html[data-theme='dark'] .values-section .showcase-title,
html[data-theme='dark'] .values-section .value-title,
html[data-theme='dark'] .values-section .value-text,
html[data-theme='dark'] .location-section .location-title,
html[data-theme='dark'] .location-section .location-address {
  color: var(--ryu-white);
}

.story-section .about-label,
.values-section .showcase-label,
.location-section .visit-schedule-title {
  color: #ff3341;
}

.vision-section .about-subtitle,
.vision-section .section-title,
.vision-section .section-text,
.menu-section .section-title,
.menu-section .menu-intro,
.menu-section .menu-item-title,
.menu-section .menu-item-text,
.footer .footer-name,
.footer .footer-address,
.footer .footer-copyright,
html[data-theme='dark'] .vision-section .about-subtitle,
html[data-theme='dark'] .vision-section .section-title,
html[data-theme='dark'] .vision-section .section-text,
html[data-theme='dark'] .menu-section .section-title,
html[data-theme='dark'] .menu-section .menu-intro,
html[data-theme='dark'] .menu-section .menu-item-title,
html[data-theme='dark'] .menu-section .menu-item-text,
html[data-theme='dark'] .footer .footer-name,
html[data-theme='dark'] .footer .footer-address,
html[data-theme='dark'] .footer .footer-copyright {
  color: var(--ryu-ink);
}

.vision-section .about-label,
.vision-section .showcase-label,
.menu-section .showcase-label {
  color: var(--ryu-red);
}

.section-title::after,
.showcase-title::after,
.menu-item-title::before,
.value-title::before,
html:not([data-theme='dark']) .section-title::after,
html:not([data-theme='dark']) .showcase-title::after,
html:not([data-theme='dark']) .menu-item-title::before,
html:not([data-theme='dark']) .value-title::before,
html[data-theme='dark'] .section-title::after,
html[data-theme='dark'] .showcase-title::after,
html[data-theme='dark'] .menu-item-title::before,
html[data-theme='dark'] .value-title::before {
  background: var(--ryu-red);
}

.vision-panel,
.menu-item,
html:not([data-theme='dark']) .vision-panel,
html:not([data-theme='dark']) .vision-panel:last-child,
html:not([data-theme='dark']) .menu-item,
html:not([data-theme='dark']) .menu-item:last-child,
html[data-theme='dark'] .vision-panel,
html[data-theme='dark'] .vision-panel:last-child,
html[data-theme='dark'] .menu-item,
html[data-theme='dark'] .menu-item:last-child {
  background: var(--ryu-white);
  border: 1px solid var(--ryu-line);
  border-top: 8px solid var(--ryu-red);
}

.value-item,
html:not([data-theme='dark']) .value-item,
html:not([data-theme='dark']) .value-item:last-child,
html[data-theme='dark'] .value-item,
html[data-theme='dark'] .value-item:last-child {
  background: #111111;
  border: 1px solid var(--ryu-line-dark);
  border-top: 8px solid var(--ryu-red);
}

.value-number,
html:not([data-theme='dark']) .value-number,
html[data-theme='dark'] .value-number {
  color: var(--ryu-red-bright);
  border-bottom-color: var(--ryu-line-dark);
}

.story-photo {
  filter: grayscale(0.2) contrast(1.08) saturate(0.95);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-item::before {
  filter: grayscale(0.05) contrast(1.05) saturate(1);
}

.location-address,
html:not([data-theme='dark']) .location-address,
html[data-theme='dark'] .location-address {
  background: #111111;
  border: 1px solid var(--ryu-line-dark);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.location-map,
html:not([data-theme='dark']) .location-map,
html[data-theme='dark'] .location-map {
  border: 1px solid var(--ryu-line-dark);
  background: var(--ryu-white);
}

.footer-logo,
html:not([data-theme='dark']) .footer-logo,
html[data-theme='dark'] .footer-logo {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14));
}

.social-link,
html[data-theme='dark'] .social-link {
  color: var(--ryu-ink);
  border-color: rgba(0, 0, 0, 0.18);
}

.scroll-toggle,
html[data-theme='dark'] .scroll-toggle {
  background: var(--ryu-red);
  border-color: var(--ryu-red);
  color: var(--ryu-white);
}

@media (max-width: 820px) {
  .hero-section,
  .hero-content {
    min-height: 620px;
  }

  .hero-headline::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Clean alternating section backgrounds, no grid texture */
.hero-section,
html[data-theme='dark'] .hero-section {
  background: var(--ryu-white);
}

.hero-section::before {
  height: 12px;
  background: var(--ryu-red);
}

.story-section,
html:not([data-theme='dark']) .story-section,
html[data-theme='dark'] .story-section,
.values-section,
html:not([data-theme='dark']) .values-section,
html[data-theme='dark'] .values-section,
.location-section,
html:not([data-theme='dark']) .location-section,
html[data-theme='dark'] .location-section {
  background: var(--ryu-black);
}

.vision-section,
html:not([data-theme='dark']) .vision-section,
html[data-theme='dark'] .vision-section,
.menu-section,
html:not([data-theme='dark']) .menu-section,
html[data-theme='dark'] .menu-section,
.footer,
html:not([data-theme='dark']) .footer,
html[data-theme='dark'] .footer {
  background: var(--ryu-white);
}

.story-section::before,
.values-section::before,
.location-section::before,
.vision-section::before,
.menu-section::before {
  height: 8px;
  background: var(--ryu-red);
}

/* All-white page direction */
html,
html[data-theme='dark'],
body,
html[data-theme='dark'] body,
.hero-section,
html[data-theme='dark'] .hero-section,
.story-section,
html:not([data-theme='dark']) .story-section,
html[data-theme='dark'] .story-section,
.vision-section,
html:not([data-theme='dark']) .vision-section,
html[data-theme='dark'] .vision-section,
.values-section,
html:not([data-theme='dark']) .values-section,
html[data-theme='dark'] .values-section,
.menu-section,
html:not([data-theme='dark']) .menu-section,
html[data-theme='dark'] .menu-section,
.location-section,
html:not([data-theme='dark']) .location-section,
html[data-theme='dark'] .location-section,
.footer,
html:not([data-theme='dark']) .footer,
html[data-theme='dark'] .footer {
  background: var(--ryu-white);
  color: var(--ryu-ink);
}

.story-section .about-subtitle,
.story-section .story-text,
.values-section .showcase-title,
.values-section .value-title,
.values-section .value-text,
.location-section .location-title,
.location-section .location-address,
.location-section .visit-schedule-days,
.location-section .visit-schedule-hours,
html[data-theme='dark'] .story-section .about-subtitle,
html[data-theme='dark'] .story-section .story-text,
html[data-theme='dark'] .values-section .showcase-title,
html[data-theme='dark'] .values-section .value-title,
html[data-theme='dark'] .values-section .value-text,
html[data-theme='dark'] .location-section .location-title,
html[data-theme='dark'] .location-section .location-address {
  color: var(--ryu-ink);
}

.story-section .about-label,
.values-section .showcase-label,
.location-section .visit-schedule-title,
html[data-theme='dark'] .story-section .about-label,
html[data-theme='dark'] .values-section .showcase-label,
html[data-theme='dark'] .location-section .visit-schedule-title {
  color: var(--ryu-red);
}

.value-item,
html:not([data-theme='dark']) .value-item,
html:not([data-theme='dark']) .value-item:last-child,
html[data-theme='dark'] .value-item,
html[data-theme='dark'] .value-item:last-child,
.location-address,
html:not([data-theme='dark']) .location-address,
html[data-theme='dark'] .location-address {
  background: var(--ryu-white);
  border-color: var(--ryu-line);
}

.value-number,
html:not([data-theme='dark']) .value-number,
html[data-theme='dark'] .value-number {
  border-bottom-color: var(--ryu-line);
}

.story-photo {
  border-color: rgba(0, 0, 0, 0.14);
}

.location-map,
html:not([data-theme='dark']) .location-map,
html[data-theme='dark'] .location-map {
  border-color: var(--ryu-line);
}

/* Remove stray decorative red section bars */
.hero-section::before,
.story-section::before,
.values-section::before,
.location-section::before,
.vision-section::before,
.menu-section::before {
  display: none;
}

/* Uniform menu cards with item photos */
.menu-list,
html[data-theme='dark'] .menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.menu-item,
html:not([data-theme='dark']) .menu-item,
html:not([data-theme='dark']) .menu-item:last-child,
html[data-theme='dark'] .menu-item,
html[data-theme='dark'] .menu-item:last-child {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-top: 0;
}

.menu-item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  background: #f4f1ef;
  overflow: hidden;
}

.menu-item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.menu-item:nth-child(1) .menu-item-image img {
  object-position: 72% 82%;
}

.menu-item:nth-child(2) .menu-item-image img {
  object-position: 58% 78%;
}

.menu-item:nth-child(3) .menu-item-image img {
  object-position: 43% 82%;
}

.menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.35rem 0;
}

.menu-item-title,
html[data-theme='dark'] .menu-section .menu-item-title {
  min-height: 2.8em;
  margin: 0;
  color: var(--ryu-ink);
}

.menu-item-price {
  color: var(--ryu-red);
}

.menu-item-sub,
.menu-item-text,
html[data-theme='dark'] .menu-section .menu-item-text {
  color: rgba(17, 17, 17, 0.72);
}

.menu-item-sub {
  margin: 0;
  padding: 0.75rem 1.35rem 0;
}

.menu-item-text {
  flex: 1;
  padding: 0.8rem 1.35rem 1.35rem;
  margin: 0;
}

@media (max-width: 1000px) {
  .menu-list,
  html[data-theme='dark'] .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .menu-list,
  html[data-theme='dark'] .menu-list {
    grid-template-columns: 1fr;
  }
}

/* Functional dark mode final layer */
html[data-theme='dark'],
html[data-theme='dark'] body {
  background: #050505;
  color: #f7f7f7;
}

html[data-theme='dark'] .navbar {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

html[data-theme='dark'] .nav-item,
html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle {
  color: #ffffff;
}

html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.28);
}

html[data-theme='dark'] .hero-section,
html[data-theme='dark'] .story-section,
html[data-theme='dark'] .vision-section,
html[data-theme='dark'] .values-section,
html[data-theme='dark'] .menu-section,
html[data-theme='dark'] .location-section,
html[data-theme='dark'] .footer {
  background: #050505;
  color: #f7f7f7;
}

html[data-theme='dark'] .hero-headline,
html[data-theme='dark'] .about-subtitle,
html[data-theme='dark'] .section-title,
html[data-theme='dark'] .showcase-title,
html[data-theme='dark'] .location-title,
html[data-theme='dark'] .value-title,
html[data-theme='dark'] .footer-name,
html[data-theme='dark'] .footer-phone,
html[data-theme='dark'] .footer-phone a {
  color: #ffffff;
}

html[data-theme='dark'] .story-text,
html[data-theme='dark'] .section-text,
html[data-theme='dark'] .menu-intro,
html[data-theme='dark'] .menu-note-text,
html[data-theme='dark'] .value-text,
html[data-theme='dark'] .location-address,
html[data-theme='dark'] .visit-schedule-days,
html[data-theme='dark'] .visit-schedule-hours,
html[data-theme='dark'] .footer-address,
html[data-theme='dark'] .footer-copyright {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme='dark'] .about-label,
html[data-theme='dark'] .showcase-label,
html[data-theme='dark'] .visit-schedule-title,
html[data-theme='dark'] .menu-item-price,
html[data-theme='dark'] .value-number {
  color: var(--ryu-red-bright);
}

html[data-theme='dark'] .cta-button,
html[data-theme='dark'] .story-btn,
html[data-theme='dark'] .scroll-toggle {
  background: var(--ryu-red);
  border-color: var(--ryu-red);
  color: #ffffff;
}

html[data-theme='dark'] .cta-button:hover,
html[data-theme='dark'] .story-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #050505;
}

html[data-theme='dark'] .vision-panel,
html[data-theme='dark'] .vision-panel:last-child,
html[data-theme='dark'] .value-item,
html[data-theme='dark'] .value-item:last-child,
html[data-theme='dark'] .menu-item,
html[data-theme='dark'] .menu-item:last-child,
html[data-theme='dark'] .location-address,
html[data-theme='dark'] .location-map {
  background: #121212;
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme='dark'] .menu-item-image {
  background: #1a1a1a;
}

html[data-theme='dark'] .menu-section .menu-item-title,
html[data-theme='dark'] .menu-item-title {
  color: #ffffff;
}

html[data-theme='dark'] .menu-item-sub,
html[data-theme='dark'] .menu-item-text,
html[data-theme='dark'] .menu-section .menu-item-text {
  color: rgba(255, 255, 255, 0.7);
}

html[data-theme='dark'] .story-photo {
  border-color: rgba(255, 255, 255, 0.16);
}

html[data-theme='dark'] .location-map iframe {
  filter: grayscale(1) invert(0.9) brightness(0.78) contrast(1.08);
}

html[data-theme='dark'] .social-link {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme='dark'] .hero-mark,
html[data-theme='dark'] .footer-logo {
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.65));
}

/* True inverse dark mode: black surfaces, white text */
html[data-theme='dark'],
html[data-theme='dark'] body,
html[data-theme='dark'] main,
html[data-theme='dark'] .hero-section,
html[data-theme='dark'] .story-section,
html[data-theme='dark'] .vision-section,
html[data-theme='dark'] .values-section,
html[data-theme='dark'] .menu-section,
html[data-theme='dark'] .location-section,
html[data-theme='dark'] .footer {
  background: #000000;
  color: #ffffff;
}

html[data-theme='dark'] .navbar {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

html[data-theme='dark'] .nav-item,
html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle,
html[data-theme='dark'] .hero-headline,
html[data-theme='dark'] .about-subtitle,
html[data-theme='dark'] .section-title,
html[data-theme='dark'] .showcase-title,
html[data-theme='dark'] .location-title,
html[data-theme='dark'] .menu-item-title,
html[data-theme='dark'] .value-title,
html[data-theme='dark'] .footer-name,
html[data-theme='dark'] .footer-phone,
html[data-theme='dark'] .footer-phone a,
html[data-theme='dark'] .location-address strong {
  color: #ffffff;
}

html[data-theme='dark'] .story-text,
html[data-theme='dark'] .section-text,
html[data-theme='dark'] .menu-intro,
html[data-theme='dark'] .menu-note-text,
html[data-theme='dark'] .menu-item-sub,
html[data-theme='dark'] .menu-item-text,
html[data-theme='dark'] .value-text,
html[data-theme='dark'] .location-address,
html[data-theme='dark'] .location-address p,
html[data-theme='dark'] .visit-schedule-days,
html[data-theme='dark'] .visit-schedule-hours,
html[data-theme='dark'] .footer-address,
html[data-theme='dark'] .footer-copyright,
html[data-theme='dark'] .footer-owner {
  color: rgba(255, 255, 255, 0.74);
}

html[data-theme='dark'] .about-label,
html[data-theme='dark'] .showcase-label,
html[data-theme='dark'] .visit-schedule-title,
html[data-theme='dark'] .menu-item-price,
html[data-theme='dark'] .value-number {
  color: var(--ryu-red-bright);
}

html[data-theme='dark'] .brand-logo,
html[data-theme='dark'] .theme-toggle,
html[data-theme='dark'] .vision-panel,
html[data-theme='dark'] .vision-panel:last-child,
html[data-theme='dark'] .value-item,
html[data-theme='dark'] .value-item:last-child,
html[data-theme='dark'] .menu-item,
html[data-theme='dark'] .menu-item:last-child,
html[data-theme='dark'] .location-address,
html[data-theme='dark'] .location-map,
html[data-theme='dark'] .social-link {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.22);
}

html[data-theme='dark'] .menu-item-image {
  background: #111111;
}

html[data-theme='dark'] .section-title::after,
html[data-theme='dark'] .showcase-title::after,
html[data-theme='dark'] .hero-headline::after,
html[data-theme='dark'] .menu-item-title::before,
html[data-theme='dark'] .value-title::before {
  background: var(--ryu-red);
}

html[data-theme='dark'] .cta-button,
html[data-theme='dark'] .story-btn,
html[data-theme='dark'] .scroll-toggle {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

html[data-theme='dark'] .cta-button:hover,
html[data-theme='dark'] .story-btn:hover,
html[data-theme='dark'] .scroll-toggle:hover {
  background: var(--ryu-red);
  border-color: var(--ryu-red);
  color: #ffffff;
}

html[data-theme='dark'] .story-photo {
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme='dark'] .location-map iframe {
  filter: grayscale(1) invert(0.9) brightness(0.76) contrast(1.08);
}

html[data-theme='dark'] .social-link {
  color: #ffffff;
}

html[data-theme='dark'] h1,
html[data-theme='dark'] h2,
html[data-theme='dark'] h3,
html[data-theme='dark'] h4,
html[data-theme='dark'] p,
html[data-theme='dark'] a,
html[data-theme='dark'] span,
html[data-theme='dark'] strong,
html[data-theme='dark'] button {
  color: #ffffff;
}

html[data-theme='dark'] .story-text,
html[data-theme='dark'] .section-text,
html[data-theme='dark'] .menu-intro,
html[data-theme='dark'] .menu-note-text,
html[data-theme='dark'] .menu-item-sub,
html[data-theme='dark'] .menu-item-text,
html[data-theme='dark'] .value-text,
html[data-theme='dark'] .location-address,
html[data-theme='dark'] .location-address p,
html[data-theme='dark'] .visit-schedule-days,
html[data-theme='dark'] .visit-schedule-hours,
html[data-theme='dark'] .footer-address,
html[data-theme='dark'] .footer-copyright,
html[data-theme='dark'] .footer-owner {
  color: rgba(255, 255, 255, 0.74);
}

html[data-theme='dark'] .about-label,
html[data-theme='dark'] .showcase-label,
html[data-theme='dark'] .visit-schedule-title,
html[data-theme='dark'] .menu-item-price,
html[data-theme='dark'] .value-number {
  color: var(--ryu-red-bright);
}

html[data-theme='dark'] .cta-button,
html[data-theme='dark'] .story-btn,
html[data-theme='dark'] .scroll-toggle {
  color: #000000;
}

html[data-theme='dark'] .cta-button:hover,
html[data-theme='dark'] .story-btn:hover,
html[data-theme='dark'] .scroll-toggle:hover {
  color: #ffffff;
}

/* Make dark-mode copy readable over the inverted black layout */
html[data-theme='dark'] .story-section .about-subtitle,
html[data-theme='dark'] .story-section .story-text,
html[data-theme='dark'] .vision-section .about-subtitle,
html[data-theme='dark'] .vision-section .section-title,
html[data-theme='dark'] .vision-section .section-text,
html[data-theme='dark'] .values-section .showcase-title,
html[data-theme='dark'] .values-section .value-title,
html[data-theme='dark'] .values-section .value-text,
html[data-theme='dark'] .menu-section .section-title,
html[data-theme='dark'] .menu-section .menu-intro,
html[data-theme='dark'] .menu-section .menu-item-title,
html[data-theme='dark'] .location-section .location-title,
html[data-theme='dark'] .footer .footer-name,
html[data-theme='dark'] .footer-phone,
html[data-theme='dark'] .footer-phone a {
  color: #ffffff !important;
}

html[data-theme='dark'] .story-section .story-text,
html[data-theme='dark'] .vision-section .section-text,
html[data-theme='dark'] .values-section .value-text,
html[data-theme='dark'] .menu-section .menu-intro,
html[data-theme='dark'] .menu-section .menu-item-sub,
html[data-theme='dark'] .menu-section .menu-item-text,
html[data-theme='dark'] .location-section .location-address,
html[data-theme='dark'] .location-section .location-address p,
html[data-theme='dark'] .footer .footer-address,
html[data-theme='dark'] .footer .footer-copyright,
html[data-theme='dark'] .footer .footer-owner {
  color: rgba(255, 255, 255, 0.78) !important;
}

html[data-theme='dark'] .story-section .about-label,
html[data-theme='dark'] .vision-section .about-label,
html[data-theme='dark'] .showcase-label,
html[data-theme='dark'] .visit-schedule-title,
html[data-theme='dark'] .menu-item-price,
html[data-theme='dark'] .value-number {
  color: var(--ryu-red-bright) !important;
}

/* Motion polish */
@keyframes ryuFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ryuMarkFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes ryuRedPulse {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(0.72);
    opacity: 0.72;
  }
}

.hero-headline,
.hero-content .cta-button {
  opacity: 0;
  animation: ryuFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-headline {
  animation-delay: 0.18s;
}

.hero-content .cta-button {
  animation-delay: 0.38s;
}

.hero-mark {
  animation: ryuFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-headline::after,
.section-title::after,
.showcase-title::after {
  transform-origin: left center;
  animation: ryuRedPulse 4.2s ease-in-out infinite;
}

.nav-item {
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.nav-item:hover::after {
  transform: scaleX(1);
}

.cta-button,
.story-btn,
.theme-toggle,
.scroll-toggle,
.social-link {
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease,
    border-color 0.28s ease, box-shadow 0.28s ease;
}

.cta-button:hover,
.story-btn:hover,
.theme-toggle:hover,
.scroll-toggle:hover,
.social-link:hover {
  transform: translateY(-3px);
}

.vision-panel,
.value-item,
.menu-item,
.location-address,
.location-map {
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease,
    background-color 0.32s ease;
}

.vision-panel:hover,
.value-item:hover,
.menu-item:hover,
.location-address:hover,
.location-map:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

html[data-theme='dark'] .vision-panel:hover,
html[data-theme='dark'] .value-item:hover,
html[data-theme='dark'] .menu-item:hover,
html[data-theme='dark'] .location-address:hover,
html[data-theme='dark'] .location-map:hover {
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.08);
}

.story-image-large,
.story-image-small,
.menu-item-image {
  overflow: hidden;
}

.story-photo,
.menu-item-image img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.story-image-large:hover .story-photo,
.story-image-small:hover .story-photo,
.menu-item:hover .menu-item-image img {
  transform: scale(1.06);
}

.menu-item:hover .menu-item-image img {
  filter: saturate(1.12) contrast(1.08);
}

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

/* Centered logo landing page */
.hero-section,
html[data-theme='dark'] .hero-section {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  border-bottom: 0;
  overflow: hidden;
}

.hero-bg-text,
html[data-theme='dark'] .hero-bg-text {
  display: block;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -56%);
  z-index: 0;
  color: rgba(0, 0, 0, 0.055);
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hero-content,
html[data-theme='dark'] .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(6rem, 13vh, 9rem) 1.5rem 4rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  text-align: center;
  color: #000000;
}

.hero-logo-card {
  width: clamp(150px, 20vw, 230px);
  aspect-ratio: 1 / 1.22;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.hero-mark,
html:not([data-theme='dark']) .hero-mark,
html[data-theme='dark'] .hero-mark {
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  filter: none;
}

.hero-headline,
html[data-theme='dark'] .hero-headline {
  grid-column: auto;
  grid-row: auto;
  max-width: 520px;
  margin: 0;
  color: #000000 !important;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  text-shadow: none;
}

.hero-headline::after {
  display: none;
}

.hero-content .cta-button,
html[data-theme='dark'] .hero-content .cta-button {
  grid-column: auto;
  grid-row: auto;
  justify-self: auto;
  margin-top: 0.4rem;
  padding: 0.85rem 1.35rem;
  min-width: 0;
  background: var(--color-red);
  border-color: var(--color-red);
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.hero-content .cta-button:hover,
html[data-theme='dark'] .hero-content .cta-button:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff !important;
}

html[data-theme='dark'] .hero-section {
  background: #000000;
}

html[data-theme='dark'] .hero-bg-text {
  color: rgba(255, 255, 255, 0.08);
}

html[data-theme='dark'] .hero-logo-card {
  background: #ffffff;
  box-shadow: 0 22px 64px rgba(255, 255, 255, 0.08);
}

html[data-theme='dark'] .hero-headline {
  color: #ffffff !important;
}

@media (max-width: 720px) {
  .hero-section,
  .hero-content,
  html[data-theme='dark'] .hero-section,
  html[data-theme='dark'] .hero-content {
    min-height: 92vh;
  }

  .hero-bg-text,
  html[data-theme='dark'] .hero-bg-text {
    font-size: clamp(5rem, 34vw, 9rem);
  }
}

/* RYU wordmark landing refinement */
.hero-section,
html[data-theme='dark'] .hero-section {
  min-height: 100vh;
}

.hero-bg-text,
html[data-theme='dark'] .hero-bg-text {
  display: block;
  transform: translate(-50%, -55%);
  font-size: clamp(7rem, 26vw, 23rem);
  letter-spacing: -0.04em;
}

.hero-content,
html[data-theme='dark'] .hero-content {
  gap: 0.95rem;
  max-width: 820px;
}

.hero-logo-card {
  width: clamp(180px, 22vw, 300px);
  aspect-ratio: 1 / 1;
  padding: clamp(1rem, 2vw, 1.65rem);
  margin-bottom: 0.45rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.hero-logo-card .hero-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-logo-card {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.hero-logo-card:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

html[data-theme='dark'] .hero-logo-card:hover {
  box-shadow: 0 24px 64px rgba(255, 255, 255, 0.12);
}

.hero-brand-title {
  margin: 0;
  color: #000000;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-headline,
html[data-theme='dark'] .hero-headline {
  max-width: 620px;
  color: rgba(0, 0, 0, 0.72) !important;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-brand-title,
.hero-headline,
.hero-content .cta-button {
  position: relative;
  z-index: 1;
}

.hero-content .cta-button,
html[data-theme='dark'] .hero-content .cta-button {
  margin-top: 0.85rem;
}

html[data-theme='dark'] .hero-brand-title {
  color: #ffffff;
}

html[data-theme='dark'] .hero-headline {
  color: rgba(255, 255, 255, 0.76) !important;
}

html[data-theme='dark'] .hero-logo-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

html[data-theme='dark'] .hero-mark {
  filter: brightness(0) invert(1);
}

/* Match hero View Menu button to the More About Us button */
.hero-content .cta-button,
html[data-theme='dark'] .hero-content .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.95rem 1.65rem;
  min-width: 204px;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 0;
  color: #ffffff !important;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content .cta-button:hover,
html[data-theme='dark'] .hero-content .cta-button:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff !important;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .hero-content,
  html[data-theme='dark'] .hero-content {
    padding-top: 5.5rem;
  }

  .hero-brand-title {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    max-width: 21rem;
  }
}

/* Split hero layout: text left, logo right */
.hero-section,
html[data-theme='dark'] .hero-section {
  min-height: 680px;
}

.hero-bg-text,
html[data-theme='dark'] .hero-bg-text {
  display: none;
}

.hero-content,
html[data-theme='dark'] .hero-content {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(260px, 0.75fr);
  grid-template-rows: auto auto auto;
  column-gap: clamp(2rem, 8vw, 7rem);
  row-gap: 1rem;
  align-content: center;
  align-items: center;
  justify-items: start;
  min-height: 680px;
  max-width: 1180px;
  padding: 8rem clamp(2rem, 6vw, 5rem) 5rem;
  text-align: left;
}

.hero-logo-card {
  grid-column: 2;
  grid-row: 1 / 4;
  justify-self: center;
  width: clamp(260px, 34vw, 520px);
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: clamp(1.1rem, 2.2vw, 2rem);
}

.hero-brand-title {
  grid-column: 1;
  grid-row: 1;
  max-width: 680px;
  text-align: left;
}

.hero-headline,
html[data-theme='dark'] .hero-headline {
  grid-column: 1;
  grid-row: 2;
  max-width: 640px;
  text-align: left;
}

.hero-content .cta-button,
html[data-theme='dark'] .hero-content .cta-button {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
  margin-top: 1rem;
}

@media (max-width: 820px) {
  .hero-section,
  .hero-content,
  html[data-theme='dark'] .hero-section,
  html[data-theme='dark'] .hero-content {
    min-height: 620px;
  }

  .hero-content,
  html[data-theme='dark'] .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1rem;
    justify-items: center;
    padding-top: 6rem;
    text-align: center;
  }

  .hero-logo-card,
  .hero-brand-title,
  .hero-headline,
  .hero-content .cta-button {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
  }

  .hero-logo-card {
    order: -1;
    width: clamp(190px, 55vw, 320px);
  }
}

/* Plain split hero: left text, right blended logo */
.hero-section {
  min-height: 720px;
  background: #ffffff;
  border-bottom: 0;
}

.hero-content {
  grid-template-columns: minmax(360px, 0.95fr) minmax(300px, 0.8fr);
  column-gap: clamp(2.5rem, 8vw, 7rem);
  min-height: 720px;
  max-width: 1240px;
  padding-top: 11rem;
  padding-bottom: 7rem;
  align-content: center;
}

.hero-logo-card,
html[data-theme='dark'] .hero-logo-card {
  width: clamp(300px, 36vw, 560px);
  aspect-ratio: 1 / 1;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: none;
}

.hero-logo-card:hover,
html[data-theme='dark'] .hero-logo-card:hover {
  transform: none;
  box-shadow: none;
}

.hero-logo-card .hero-mark,
.hero-mark,
html:not([data-theme='dark']) .hero-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: none;
  filter: none;
}

.hero-brand-title {
  margin: 0 0 0.55rem;
  color: var(--color-red);
  font-size: clamp(0.72rem, 0.9vw, 0.86rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-headline,
html[data-theme='dark'] .hero-headline {
  max-width: 720px;
  color: #111111 !important;
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-content .cta-button,
html[data-theme='dark'] .hero-content .cta-button {
  margin-top: 2.15rem;
  padding: 1.1rem 2rem;
  min-width: 260px;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  color: #ffffff !important;
  box-shadow: none;
}

.hero-content .cta-button:hover,
html[data-theme='dark'] .hero-content .cta-button:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff !important;
}

html[data-theme='dark'] .hero-section {
  background: #000000;
}

html[data-theme='dark'] .hero-headline {
  color: #ffffff !important;
}

html[data-theme='dark'] .hero-logo-card {
  background: transparent;
}

html[data-theme='dark'] .hero-mark,
html[data-theme='dark'] .hero-logo-card .hero-mark {
  filter: brightness(0) invert(1);
}

html[data-theme='dark'] .hero-content .cta-button {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #ffffff !important;
  box-shadow: none;
}

html[data-theme='dark'] .hero-content .cta-button:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000 !important;
}

@media (max-width: 820px) {
  .hero-section,
  .hero-content,
  html[data-theme='dark'] .hero-section,
  html[data-theme='dark'] .hero-content {
    min-height: 660px;
  }

  .hero-content {
    row-gap: 0.8rem;
  }

  .hero-logo-card,
  html[data-theme='dark'] .hero-logo-card {
    width: clamp(210px, 58vw, 340px);
  }

  .hero-brand-title,
  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    text-align: center;
  }

  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    max-width: 28rem;
    font-size: clamp(2rem, 10vw, 3.6rem);
    letter-spacing: 0.08em;
  }

  .hero-content .cta-button,
  html[data-theme='dark'] .hero-content .cta-button {
    min-width: 220px;
    margin-top: 1.2rem;
  }
}

/* Keep hero eyebrow directly above the tagline */
.hero-content,
html[data-theme='dark'] .hero-content {
  grid-template-rows: auto;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 720px;
}

.hero-copy .hero-brand-title {
  margin: 0 0 1.15rem;
}

.hero-copy .hero-headline,
html[data-theme='dark'] .hero-copy .hero-headline {
  margin: 0;
}

.hero-copy .cta-button,
html[data-theme='dark'] .hero-copy .cta-button {
  margin-top: 2.35rem;
}

.hero-logo-card,
html[data-theme='dark'] .hero-logo-card {
  grid-column: 2;
  grid-row: 1;
}

@media (max-width: 820px) {
  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    align-items: center;
    text-align: center;
  }

  .hero-logo-card,
  html[data-theme='dark'] .hero-logo-card {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Final responsive safety layer */
img,
svg,
iframe {
  max-width: 100%;
}

.hero-section,
html[data-theme='dark'] .hero-section {
  min-height: min(860px, 100svh);
}

.hero-content,
html[data-theme='dark'] .hero-content {
  width: min(100%, 1240px);
  box-sizing: border-box;
}

@media (max-width: 1180px) {
  .hero-content,
  html[data-theme='dark'] .hero-content {
    grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.7fr);
    column-gap: clamp(1.5rem, 5vw, 4rem);
    padding-left: clamp(1.5rem, 5vw, 3.5rem);
    padding-right: clamp(1.5rem, 5vw, 3.5rem);
  }

  .hero-logo-card,
  html[data-theme='dark'] .hero-logo-card {
    width: clamp(250px, 33vw, 420px);
  }

  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    letter-spacing: 0.07em;
  }
}

@media (max-width: 820px) {
  .navbar {
    padding: 0.9rem 1rem;
  }

  .nav-left {
    display: none;
  }

  .nav-center,
  .nav-right {
    flex: 0 0 auto;
  }

  .hero-section,
  html[data-theme='dark'] .hero-section {
    min-height: auto;
  }

  .hero-content,
  html[data-theme='dark'] .hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    width: 100%;
    min-height: auto;
    padding: clamp(6.25rem, 18vw, 7.5rem) clamp(1.15rem, 6vw, 2rem) 4rem;
    row-gap: 2rem;
    align-content: start;
    justify-items: center;
    text-align: center;
  }

  .hero-logo-card,
  html[data-theme='dark'] .hero-logo-card {
    grid-column: 1;
    grid-row: 1;
    width: clamp(180px, 62vw, 300px);
    justify-self: center;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 32rem);
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .hero-copy .hero-brand-title {
    margin-bottom: 0.85rem;
    font-size: clamp(0.62rem, 2.6vw, 0.78rem);
    letter-spacing: 0.22em;
  }

  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.65rem, 8vw, 3rem);
    line-height: 1.15;
    letter-spacing: 0.055em;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-copy .cta-button,
  .hero-content .cta-button,
  html[data-theme='dark'] .hero-copy .cta-button,
  html[data-theme='dark'] .hero-content .cta-button {
    width: min(100%, 220px);
    min-width: 0;
    margin-top: 1.5rem;
    padding: 0.95rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1rem;
    padding: 0.35rem 0.75rem;
  }

  .theme-toggle {
    padding: 0.45rem 0.65rem;
  }

  .theme-toggle-label {
    display: none;
  }

  .hero-content,
  html[data-theme='dark'] .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
    row-gap: 1.4rem;
  }

  .hero-logo-card,
  html[data-theme='dark'] .hero-logo-card {
    width: clamp(160px, 68vw, 260px);
  }

  .hero-headline,
  html[data-theme='dark'] .hero-headline {
    font-size: clamp(1.45rem, 9vw, 2.35rem);
    letter-spacing: 0.04em;
  }

  .scroll-toggle {
    right: 1rem;
    bottom: 1rem;
  }
}
