:root {
  color-scheme: light;
  --ink: #f8f4e8;
  --muted: #d8d2c3;
  --paper: #38363b;
  --surface: #403e44;
  --surface-warm: #f8f4e8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #43bf79;
  --accent-dark: #31a864;
  --accent-soft: rgba(67, 191, 121, 0.18);
  --price: #f2aa3c;
  --focus: #1261a6;
  --charcoal: #2f2d32;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 12%, rgba(67, 191, 121, 0.12) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(67, 191, 121, 0.06) 22px 24px, transparent 24px 46px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 110px 110px, 180px 180px, 160px 160px, 160px 160px, auto;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(56, 54, 59, 0.92);
  border-bottom: 1px solid rgba(67, 191, 121, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  color: var(--accent);
}

.logo-frame,
.logo-noodles,
.logo-rule {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-frame {
  stroke-width: 9;
}

.logo-noodles {
  stroke-width: 7;
}

.logo-rule {
  stroke-width: 6;
}

.logo-word {
  fill: currentColor;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-word-top {
  font-size: 27px;
}

.logo-word-bottom {
  font-size: 25px;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.84rem;
}

.top-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.top-info a {
  border: 1px solid rgba(67, 191, 121, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(67, 191, 121, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.top-info a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.hero,
.menu-section,
.details-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(42px, 8vw, 92px) 0;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: #fffaf0;
  font-family: "Marker Felt", "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(2.7rem, 7vw, 5.65rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow:
    1px 1px 0 rgba(67, 191, 121, 0.12),
    -1px 0 0 rgba(255, 250, 240, 0.16),
    0 2px 10px rgba(0, 0, 0, 0.16);
  animation: rise-in 620ms ease both;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

#menu-title {
  color: var(--ink);
  font-family: "Marker Felt", "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 900;
}

#visit-title {
  font-family: "Marker Felt", "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-family: "Marker Felt", "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(67, 191, 121, 0.25);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
  animation: float-in 720ms ease both;
}

.carousel-track {
  position: relative;
  min-height: 320px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4.5%) scale(1.025);
  filter: saturate(0.94) contrast(0.98);
  transition:
    opacity 820ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.carousel-slide.is-previous {
  transform: translateX(-4.5%) scale(1.025);
}

.carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: saturate(1.08) contrast(1.04);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(47, 45, 50, 0.08), transparent 48%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media:hover .carousel-slide.is-active img {
  transform: scale(1.035);
}

.carousel-slide figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(47, 45, 50, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1) 150ms,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 150ms;
}

.carousel-slide.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-slide figcaption span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.carousel-slide figcaption strong {
  color: var(--ink);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(47, 45, 50, 0.7);
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.carousel-control:hover {
  border-color: rgba(67, 191, 121, 0.68);
  background: rgba(47, 45, 50, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.carousel-control-prev {
  left: 14px;
}

.carousel-control-next {
  right: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide,
  .carousel-slide figcaption,
  .hero-media img {
    transition: none;
  }
}

address {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.menu-section,
.details-section {
  padding: clamp(34px, 7vw, 72px) 0;
  scroll-margin-top: 120px;
}

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

.details-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.menu-tab-list {
  display: grid;
  grid-template-columns: 1fr;
  align-self: start;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(56, 54, 59, 0.92);
  backdrop-filter: blur(14px);
}

.menu-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--accent);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
  font-size: 1.02rem;
  text-align: left;
  text-transform: uppercase;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-tab::after {
  color: var(--price);
  content: ">";
  transition: transform 180ms ease;
}

.menu-tab.is-active::after {
  transform: rotate(90deg);
}

.menu-tab:hover,
.menu-tab.is-active {
  border-color: rgba(67, 191, 121, 0.55);
  background: rgba(67, 191, 121, 0.14);
  transform: translateY(-1px);
}

.menu-tab.is-active {
  border-bottom-color: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
}

.menu-panel-area {
  display: none;
}

.text-menu-card {
  margin: -8px 0 10px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 14px clamp(18px, 3vw, 24px) clamp(18px, 3vw, 24px);
  background: rgba(64, 62, 68, 0.94);
  box-shadow: 0 10px 28px rgba(38, 84, 48, 0.1);
  animation: menu-reveal 260ms ease both;
}

.menu-panel-heading {
  display: none;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.menu-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.menu-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.22;
}

.menu-item h4 span {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-item strong {
  color: var(--price);
  font-size: 1.08rem;
  white-space: nowrap;
}

.menu-note {
  margin: 14px 0 0;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--charcoal);
  background: var(--surface-warm);
  font-size: 0.95rem;
  font-weight: 700;
}

.info-block {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
}

.info-block p:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-color: rgba(42, 170, 79, 0.42);
  text-underline-offset: 4px;
}

.text-link:hover {
  text-decoration-color: currentColor;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list div:first-child {
  padding-top: 0;
}

.hours-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list .is-today {
  color: var(--accent);
  font-weight: 800;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
}

.hours-list dd {
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menu-reveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer p {
  margin: 0;
}

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

  .top-info {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media {
    order: -1;
  }

  .section-heading {
    display: block;
  }

  .menu-tabs,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .menu-tab-list {
    position: static;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

@media (max-width: 520px) {
  .hero,
  .menu-section,
  .details-section {
    width: min(100% - 28px, 1120px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .top-info a {
    padding-inline: 8px;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .hours-list dd {
    text-align: left;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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