/* ==========================================================================
   Noodles of Asia — noodlesofasiakansas.com
   Warm, logo-led. Cream ground, crimson / gold / green pulled from the sign.
   ========================================================================== */

:root {
  --cream:        #FBF5E9;
  --cream-deep:   #F1E6CF;
  --paper:        #FFFCF5;
  --ink:          #2B2420;
  --ink-soft:     #5D534C;
  --crimson:      #AC132C;
  --crimson-deep: #7B0D1F;
  --gold:         #F5A700;
  --gold-soft:    #FBD679;
  --green:        #82BC00;
  --green-deep:   #5C8600;
  --line:         rgba(43, 36, 32, .14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Albert Sans", "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1120px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --shadow: 0 18px 50px -20px rgba(43, 36, 32, .35);
}

/* ---- reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background-color: var(--cream);
  background-image: url("img/grain.svg");
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--crimson); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--crimson-deep); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 245, 233, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand img { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(.6rem, 2vw, 1.6rem); }
.nav a { font-weight: 600; font-size: .97rem; color: var(--ink); text-decoration: none; padding: .35rem 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--crimson); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { padding: .55rem 1rem; }
.nav .btn::after { display: none; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .98rem; line-height: 1;
  padding: .85rem 1.35rem; border-radius: 999px;
  background: var(--crimson); color: #fff; text-decoration: none;
  border: 2px solid var(--crimson);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: 0 8px 20px -10px rgba(172, 19, 44, .7);
}
.btn:hover { background: var(--crimson-deep); border-color: var(--crimson-deep); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--crimson); box-shadow: none; }
.btn.ghost:hover { background: var(--crimson); color: #fff; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--ink); box-shadow: 0 8px 20px -10px rgba(245, 167, 0, .8); }
.btn.gold:hover { background: #e39a00; border-color: #e39a00; color: var(--ink); }

/* ---- hero ---- */
.hero { position: relative; padding-top: clamp(1.25rem, 3vw, 2.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .95fr; align-items: center; gap: 0; }
.hero-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 0.92; box-shadow: var(--shadow); }
/* image is 8% oversized and shifted left so the sign centers in the part not covered by the card */
.hero-photo img { width: 108%; height: 108%; max-width: none; margin: -4% 0 0 -8%; object-fit: cover; object-position: 50% 50%; transform: scale(1.02); animation: kenburns 14s ease-out forwards; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(43,36,32,0) 55%, rgba(43,36,32,.35) 100%); pointer-events: none; }
@keyframes kenburns { to { transform: scale(1.08); } }

.hero-card {
  position: relative; z-index: 2;
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.2vw, 2.6rem);
  margin-left: -4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: rise .7s cubic-bezier(.2,.7,.2,1) both;
  animation-delay: .1s;
}
.hero-card::before {
  /* gold corner tab, echoes the badge rim */
  content: ""; position: absolute; top: -8px; left: 2rem; width: 72px; height: 8px; border-radius: 8px 8px 0 0; background: var(--gold);
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(130,188,0,.18); }
.hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800; }
.hero h1 em { font-style: italic; font-weight: 600; color: var(--crimson); }
.hero .lede { color: var(--ink-soft); margin: 1rem 0 1.4rem; max-width: 42ch; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.4rem; margin: 0 0 1.5rem; padding: 1.1rem 0 0; border-top: 1px dashed var(--line); }
.info { display: flex; gap: .7rem; align-items: flex-start; text-decoration: none; color: inherit; }
.info svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--crimson); margin-top: .12rem; }
.info b { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: .1rem; }
.info span { font-weight: 600; line-height: 1.35; }
a.info:hover span { color: var(--crimson); }
.info .status { font-weight: 700; }
.info .status.open { color: var(--green-deep); }
.info .status.closed { color: var(--crimson); }
.info small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* ---- noodle-wave divider (from the badge) ---- */
.wave { display: block; width: 100%; height: 26px; margin: clamp(2rem, 5vw, 4rem) 0 0; color: var(--crimson); opacity: .8; }

/* ---- sections ---- */
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 1rem 2rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
.section-head p { margin: .4rem 0 0; color: var(--ink-soft); max-width: 52ch; }
.kicker { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--crimson); font-size: 1.15rem; display: block; margin-bottom: .3rem; }

/* ---- intro statement ---- */
.statement { text-align: center; max-width: 780px; margin-inline: auto; }
.statement h2 { font-size: clamp(1.75rem, 4vw, 2.9rem); font-weight: 600; line-height: 1.18; }
.statement h2 strong { font-weight: 900; color: var(--crimson); }
.statement p { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.1rem; }
.cuisine-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; margin-top: 1.6rem; }
.chip { display: inline-block; padding: .42rem .9rem; border-radius: 999px; font-size: .86rem; font-weight: 700; letter-spacing: .04em; background: var(--cream-deep); color: var(--ink); border: 1px solid var(--line); }
.chip.red { background: var(--crimson); color: #fff; border-color: var(--crimson); }
.chip.green { background: var(--green); color: #1e2a00; border-color: var(--green); }
.chip.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ---- signature dishes: order-ticket cards ---- */
.tickets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.ticket {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.35rem 1.2rem;
  display: flex; flex-direction: column; gap: .5rem;
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.ticket::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--crimson), var(--gold) 60%, var(--green)); }
.ticket:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ticket .num { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--gold); font-weight: 600; }
.ticket h3 { font-size: 1.32rem; font-weight: 800; }
.ticket h3 .th { display: block; font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--ink-soft); letter-spacing: .02em; margin-top: .15rem; }
.ticket p { color: var(--ink-soft); font-size: .96rem; margin: 0; flex: 1; }
.ticket .price { align-self: flex-start; font-weight: 800; font-size: 1.05rem; color: var(--crimson); background: rgba(172,19,44,.08); padding: .25rem .7rem; border-radius: 999px; }
.tickets-cta { text-align: center; margin-top: 2rem; }

/* ---- photo mosaic ---- */
.mosaic { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 260px 260px; gap: .9rem; }
.mosaic figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.mosaic figure:first-child { grid-row: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem .9rem; font-size: .86rem; font-weight: 600; color: #fff; background: linear-gradient(180deg, rgba(43,36,32,0), rgba(43,36,32,.72)); }

/* ---- visit / map ---- */
.visit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: stretch; }
.visit-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); }
.visit-card h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 800; margin-bottom: 1rem; }
.hours { width: 100%; border-collapse: collapse; margin: 1rem 0 1.3rem; }
.hours th, .hours td { text-align: left; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .98rem; }
.hours th { font-weight: 600; color: var(--ink-soft); width: 50%; }
.hours td { font-weight: 700; }
.hours tr.today th, .hours tr.today td { color: var(--crimson); }
.hours tr.today th::after { content: " · today"; font-family: var(--font-display); font-style: italic; font-weight: 500; }
.addr { font-style: normal; font-weight: 600; line-height: 1.5; }
.visit-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 380px; box-shadow: var(--shadow); background: var(--cream-deep); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.85) contrast(1.02); }

/* ---- footer ---- */
.site-footer { background: var(--ink); color: #EDE3D2; margin-top: clamp(2rem, 6vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--green)); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; align-items: start; }
.foot-grid img { width: 220px; }
.foot-grid h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); color: var(--gold); margin-bottom: .7rem; }
.foot-grid a { color: #fff; text-decoration: none; }
.foot-grid a:hover { color: var(--gold-soft); text-decoration: underline; }
.foot-grid p { color: #CDBFA9; margin-bottom: .55rem; font-size: .97rem; }
.foot-grid .big { font-size: 1.35rem; font-weight: 700; color: #fff; }
.foot-hours { list-style: none; padding: 0; margin: 0; }
.foot-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .3rem 0; border-bottom: 1px dashed rgba(255,255,255,.12); font-size: .95rem; }
.foot-hours li span:last-child { color: #fff; font-weight: 600; }
.social { display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem; padding: .55rem .9rem .55rem .7rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-weight: 600; }
.social svg { width: 20px; height: 20px; }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .82rem; color: #9E9080; }

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.page-title { padding: clamp(2rem, 5vw, 3.5rem) 0 1.5rem; text-align: center; }
.page-title h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); font-weight: 900; }
.page-title p { color: var(--ink-soft); max-width: 60ch; margin: .8rem auto 0; }
.menu-nav {
  position: sticky; top: 72px; z-index: 40;
  background: rgba(251, 245, 233, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid var(--line);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}
.menu-nav ul { list-style: none; margin: 0; padding: .55rem 0; display: flex; gap: .3rem; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a { white-space: nowrap; font-size: .86rem; font-weight: 700; color: var(--ink); text-decoration: none; padding: .45rem .8rem; border-radius: 999px; border: 1px solid transparent; }
.menu-nav a:hover { background: var(--cream-deep); }
.menu-nav a.active { background: var(--crimson); color: #fff; }

.noodle-callout {
  background: var(--paper); border: 1px solid var(--line); border-left: 6px solid var(--green);
  border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: clamp(1.5rem, 4vw, 3rem);
  display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.6rem; align-items: center;
}
.noodle-callout h3 { font-size: 1.2rem; font-weight: 800; }
.noodle-callout p { margin: 0; color: var(--ink-soft); font-size: .93rem; grid-column: 1; }
.noodle-callout ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .45rem; grid-column: 2; grid-row: 1 / span 2; }
.noodle-callout li { font-size: .88rem; font-weight: 700; padding: .38rem .8rem; border-radius: 999px; background: rgba(130,188,0,.14); color: var(--green-deep); border: 1px solid rgba(130,188,0,.35); }

.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem); }
.menu-section { scroll-margin-top: 140px; }
.menu-section h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; color: var(--crimson); display: flex; align-items: center; gap: .8rem; margin-bottom: .35rem; }
.menu-section h2::after { content: ""; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 11px); opacity: .8; }
.menu-section .note { font-size: .9rem; color: var(--ink-soft); font-style: italic; font-family: var(--font-display); margin-bottom: .9rem; }
.dishes { list-style: none; margin: 0; padding: 0; }
.dish { padding: .8rem 0; border-bottom: 1px solid var(--line); }
.dish:last-child { border-bottom: 0; }
.dish h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }
.dish p { margin: .25rem 0 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.5; }
/* price trails the description, same weight/color/size as the text */
.dish p .price { font-weight: 400; color: inherit; white-space: nowrap; font-variant-numeric: tabular-nums; }
.tag { display: inline-block; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .18rem .5rem; border-radius: 6px; margin-left: .3rem; vertical-align: middle; }
.tag.spice { background: rgba(172,19,44,.1); color: var(--crimson); }
.tag.mild { background: rgba(245,167,0,.18); color: #8a5e00; }
.tag.verify { background: var(--gold); color: var(--ink); }
.simple { list-style: none; margin: 0; padding: 0; }
.simple li { display: flex; align-items: baseline; gap: .5rem; padding: .45rem 0; border-bottom: 1px solid var(--line); font-weight: 600; }
.simple li:last-child { border-bottom: 0; }
.simple li .dots { flex: 1; border-bottom: 2px dotted rgba(43,36,32,.28); transform: translateY(-5px); }
.simple li .price { font-weight: 400; color: var(--ink-soft); font-size: .94rem; }
.simple li small { display: block; font-weight: 500; color: var(--ink-soft); font-size: .86rem; }
.disclaimer { margin-top: clamp(2rem, 4vw, 3rem); padding: 1rem 1.2rem; font-size: .85rem; color: var(--ink-soft); background: var(--cream-deep); border-radius: 12px; text-align: center; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.story { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.story-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.story-text p { font-size: 1.08rem; color: var(--ink-soft); }
.story-text p:first-of-type { font-size: 1.22rem; color: var(--ink); }
.story-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo .badge { position: absolute; top: -18px; right: -18px; width: 150px; transform: rotate(6deg); filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem 1.3rem; }
.pillar .glyph { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: .9rem; color: #fff; }
.pillar .glyph.red { background: var(--crimson); } .pillar .glyph.green { background: var(--green); color: #1e2a00; } .pillar .glyph.gold { background: var(--gold); color: var(--ink); }
.pillar h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: .4rem; }
.pillar p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.gallery figure { margin: 0; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 5; }
.gallery figure.wide { grid-column: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.team { text-align: center; }
.team figure { margin: 0 auto; max-width: 900px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team figcaption { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); margin-top: .9rem; font-size: 1.05rem; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { aspect-ratio: 1 / 0.85; }
  .hero-photo img { width: 100%; height: 100%; margin: 0; }
  .hero-card { margin: -2.5rem 1rem 0; }
  .tickets { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story-photo .badge { width: 120px; top: -10px; right: -10px; }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 1rem; }
  .site-header .wrap { min-height: 60px; }
  .brand img { height: 42px; }
  .nav { gap: .85rem; }
  .nav a[href="index.html"] { display: none; }
  .nav .btn .full { display: none; }
  .hero-photo { aspect-ratio: 1 / 0.92; }
  .hero-card { margin: -1rem .5rem 0; }
  .info-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; }
  .tickets { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: 240px 200px 200px; }
  .mosaic figure:first-child { grid-row: auto; }
  .visit { grid-template-columns: 1fr; }
  .menu-nav { top: 60px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-section { scroll-margin-top: 120px; }
  .noodle-callout { grid-template-columns: 1fr; }
  .noodle-callout ul { grid-column: 1; grid-row: auto; }
  .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure.wide { grid-column: span 2; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo img, .hero-card { animation: none; }
  .mosaic img, .ticket, .btn { transition: none; }
}
