/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--c-surface);
  color: var(--c-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
ul, ol { list-style: none; }
blockquote, q { quotes: none; }

:root {
  --c-black: #0b0b0b;
  --c-surface: #0e0e0e;
  --c-surface-2: #131313;
  --c-surface-3: #1c1b1b;
  --c-surface-4: #201f1f;
  --c-surface-5: #2a2a2a;
  --c-white: #fafaf7;
  --c-text: #e5e2e1;
  --c-text-muted: #9d9d9b;
  --c-text-dim: rgba(229, 226, 225, 0.45);
  --c-red: #E6000F;
  --c-red-light: #ffb4aa;
  --c-red-dark: #c0000a;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-strong: rgba(255, 255, 255, 0.15);
  --f-display: "Newsreader", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 80px;
  --section-gap: clamp(4rem, 9vw, 9rem);
}

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-red-light);
  margin-bottom: 1rem;
}
.display-1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.display-1 em { font-style: italic; font-weight: 400; }
.display-2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.display-2 em { font-style: italic; font-weight: 400; }
.display-3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
}
.display-3 em { font-style: italic; font-weight: 400; }
.muted-caps {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.section__sub {
  color: var(--c-text-muted);
  max-width: 42ch;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

/* ===== Utility ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  background: var(--c-red); color: #fff; padding: 0.75rem 1rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem;
}
.skip-link:focus { top: 1rem; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, label:focus-visible {
  outline: 2px solid var(--c-red); outline-offset: 3px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--f-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.9rem 1.6rem; border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-dark); }
.btn--ghost { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.3); }
.btn--ghost:hover { background: #fff; color: #000; }
.btn--outline-red { background: transparent; color: var(--c-red-light); border-color: var(--c-red-light); padding: 1.25rem 3rem; letter-spacing: 0.15em; }
.btn--outline-red:hover { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.btn--xl { padding: 1.4rem 2.5rem; font-size: 0.8rem; letter-spacing: 0.2em; min-width: 220px; }
.btn--block { display: flex; width: 100%; padding: 1.3rem; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14, 14, 14, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; gap: 2rem;
  max-width: 1600px; margin: 0 auto;
}
.site-header__logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-white);
}
.site-header__logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.site-header__logo span { display: none; }

.site-header__nav { display: none; gap: 2.5rem; }
.site-header__nav a {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  transition: color 0.2s ease;
}
.site-header__nav a:hover { color: var(--c-red-light); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.hide-mobile { display: none; }

.mobile-menu { position: relative; }
.mobile-menu summary {
  list-style: none; cursor: pointer; padding: 0.5rem;
  color: var(--c-white); display: inline-flex; align-items: center;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary .material-symbols-outlined { font-size: 2rem; }
.mobile-menu__panel {
  position: fixed; top: var(--header-h); right: 0; left: 0;
  background: rgba(11, 11, 11, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  animation: slideDown 0.2s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu__panel a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--c-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__panel a:hover { color: var(--c-red-light); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 1.5rem 4rem; overflow: hidden;
}
.hero__image-wrap { position: absolute; inset: 0; z-index: 0; }
.hero__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 2; text-align: center; max-width: 1100px;
}
.hero__content .eyebrow { color: var(--c-red-light); text-shadow: 0 2px 10px rgba(0,0,0,0.6); }
.hero__sub {
  max-width: 42rem; margin: 2rem auto 3rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6; color: rgba(255,255,255,0.88);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero__ctas { display: flex; flex-direction: column; gap: 1rem; align-items: center; }

/* ===== Philosophy ===== */
.philosophy {
  background: var(--c-white); color: #000;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(230, 0, 15, 0.15);
  border-bottom: 1px solid rgba(230, 0, 15, 0.15);
}
.philosophy p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.25;
}

/* ===== Sections ===== */
.section {
  padding: var(--section-gap) 1.5rem;
  max-width: 1400px; margin: 0 auto;
}
.section__head {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 1400px;
}
.section__head--center { text-align: center; align-items: center; }

/* ===== Signatures ===== */
.signatures { max-width: none; padding-right: 0; padding-left: 0; }
.signatures .section__head { padding: 0 1.5rem; }
.signatures__scroller {
  display: flex; gap: 2rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.5rem 2rem;
  scrollbar-width: none;
}
.signatures__scroller::-webkit-scrollbar { display: none; }
.dish-card {
  flex: 0 0 min(85vw, 420px);
  scroll-snap-align: start;
}
.dish-card picture {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block; margin-bottom: 2rem;
  background: var(--c-surface-5);
}
.dish-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.dish-card:hover img { transform: scale(1.04); }
.dish-card__meta { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.dish-card__meta h3 {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 400;
  margin-bottom: 0.4rem;
}
.dish-card__meta p { font-size: 0.9rem; color: var(--c-text-muted); max-width: 300px; line-height: 1.5; }
.price { font-weight: 700; color: var(--c-red-light); font-size: 1.1rem; white-space: nowrap; }

/* ===== Menu Tabs ===== */
.menu { background: var(--c-surface-2); }
.tabs { max-width: 1100px; margin: 0 auto; }
.tabs input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tabs__labels {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 2rem; margin-bottom: 4rem;
}
.tab {
  font-family: var(--f-display); font-size: 1.2rem; font-weight: 400;
  color: rgba(229, 226, 225, 0.4);
  cursor: pointer; padding-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tab:hover { color: var(--c-text); }
.tab-panel { display: none; }

/* :checked state transitions */
#tab-tapas:checked ~ .tabs__labels [for="tab-tapas"],
#tab-entree:checked ~ .tabs__labels [for="tab-entree"],
#tab-rolls:checked ~ .tabs__labels [for="tab-rolls"],
#tab-premium:checked ~ .tabs__labels [for="tab-premium"] {
  color: var(--c-red-light); font-style: italic; border-color: var(--c-red-light);
}
#tab-tapas:checked ~ #panel-tapas,
#tab-entree:checked ~ #panel-entree,
#tab-rolls:checked ~ #panel-rolls,
#tab-premium:checked ~ #panel-premium { display: block; animation: fadeIn 0.25s ease; }

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

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 5rem;
}
.menu-item { border-bottom: 1px solid var(--c-border); padding-bottom: 1.5rem; }
.menu-item__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; margin-bottom: 0.5rem;
}
.menu-item__row h4 { font-family: var(--f-display); font-size: 1.5rem; font-weight: 400; }
.menu-item__row span { font-size: 0.95rem; color: var(--c-text-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item p { font-style: italic; font-size: 0.85rem; color: var(--c-text-dim); }
.menu__cta { display: flex; justify-content: center; margin-top: 5rem; }

/* ===== Story ===== */
.story { background: var(--c-surface-3); }
.story__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.story__image { position: relative; max-width: 500px; margin: 0 auto; }
.story__image picture, .story__image img { width: 100%; aspect-ratio: 3/4; }
.story__badge {
  position: absolute; bottom: -2rem; right: -1rem;
  background: var(--c-red); padding: 1.5rem 2rem;
  color: #fff; text-align: center;
}
.story__badge em { font-family: var(--f-display); font-size: 2rem; font-style: italic; display: block; }
.story__badge span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.9; display: block; margin-top: 0.3rem; }
.story__prose p { font-size: 1.05rem; color: rgba(229, 226, 225, 0.82); margin-bottom: 2rem; }
.story__prose blockquote {
  font-family: var(--f-display); font-style: italic; font-size: 1.5rem;
  border-left: 2px solid var(--c-red); padding: 1rem 0 1rem 2rem;
  margin: 2rem 0; color: var(--c-text); line-height: 1.4;
}

/* ===== Reviews ===== */
.reviews { background: var(--c-surface); }
.reviews__rating {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
}
.stars { color: var(--c-red); font-size: 1.5rem; letter-spacing: 0.1em; }
.reviews__count { font-size: 0.85rem; color: var(--c-text-muted); letter-spacing: 0.05em; }
.reviews__grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.review {
  background: var(--c-surface-4); padding: 2.5rem;
  border-left: 2px solid var(--c-red);
}
.review blockquote {
  font-family: var(--f-display); font-style: italic;
  font-size: 1.25rem; line-height: 1.5;
  color: var(--c-text); margin-bottom: 1.5rem;
}
.review figcaption {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-red-light); display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap;
}
.review figcaption span { color: var(--c-text-dim); }

/* ===== Gallery ===== */
.gallery { background: var(--c-surface-2); }
.gallery__grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px; margin: 0 auto;
}
.gallery__grid figure { overflow: hidden; }
.gallery__grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: saturate(0.75);
}
.gallery__grid figure:hover img { transform: scale(1.05); filter: saturate(1); }

/* ===== Visit ===== */
.visit { background: var(--c-surface); }
.visit__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.visit__book {
  background: var(--c-surface-5);
  padding: clamp(2rem, 5vw, 4rem);
}
.visit__sub { color: var(--c-text-muted); margin-bottom: 2.5rem; max-width: 30rem; }
.visit__row { border-bottom: 1px solid var(--c-border); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.visit__row .label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-red-light); margin-bottom: 0.4rem;
}
.visit__phone {
  font-family: var(--f-display); font-style: italic; font-size: 1.6rem;
  color: var(--c-white);
}
.visit__phone:hover { color: var(--c-red-light); }
.visit__chowbus {
  font-family: var(--f-display); font-style: italic; font-size: 1.25rem;
  color: var(--c-red-light);
}
.visit__chowbus:hover { text-decoration: underline; }
.visit__info { display: flex; flex-direction: column; gap: 2.5rem; justify-content: center; }
.visit__address {
  font-family: var(--f-display); font-style: normal; font-size: 1.6rem; line-height: 1.3;
  margin-bottom: 0.75rem;
}
.visit__phone-small {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-red-light);
}
.visit__phone-small:hover { text-decoration: underline; }
.visit__hours {
  display: grid; grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.visit__hours dt { color: var(--c-text-dim); }
.visit__map { aspect-ratio: 16/9; background: var(--c-surface-4); position: relative; overflow: hidden; }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.6) contrast(1.1); }
.visit__note {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-text-dim);
}
.visit__note .material-symbols-outlined { color: var(--c-red); font-size: 1rem; }

/* ===== FAQ ===== */
.faq { background: var(--c-surface-2); }
.faq__list { max-width: 900px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--c-border); padding: 1.5rem 0; }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; cursor: pointer;
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--c-red-light); }
.faq__icon { color: var(--c-red); transition: transform 0.2s ease; }
.faq details[open] .faq__icon { transform: rotate(45deg); }
.faq details p {
  padding-top: 1rem; color: rgba(229, 226, 225, 0.75);
  line-height: 1.7; max-width: 70ch;
}

/* ===== Newsletter ===== */
.newsletter {
  background: linear-gradient(180deg, var(--c-surface) 0%, var(--c-surface-2) 100%);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--c-border);
}
.newsletter__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
.newsletter__sub { color: var(--c-text-muted); max-width: 36rem; margin-top: 1rem; }
.newsletter__form {
  display: flex; gap: 0; align-items: stretch;
  border-bottom: 1px solid var(--c-border-strong);
}
.newsletter__form input {
  flex: 1; background: transparent; border: none; padding: 1rem 0;
  font-size: 1rem; color: var(--c-white); outline: none;
}
.newsletter__form input::placeholder { color: var(--c-text-dim); }
.newsletter__form .btn { padding: 1rem 2rem; background: transparent; color: var(--c-red-light); }
.newsletter__form .btn:hover { color: var(--c-red); }

/* ===== Footer ===== */
.site-footer { background: var(--c-black); border-top: 1px solid var(--c-border); }
.site-footer__inner {
  max-width: 1400px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
.site-footer__wordmark {
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem;
  line-height: 1.2;
}
.site-footer__wordmark em { color: var(--c-red); font-style: italic; }
.site-footer__address { font-style: normal; }
.site-footer__address p {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-text-muted); margin-bottom: 0.4rem;
}
.site-footer__address a { color: var(--c-text-muted); }
.site-footer__address a:hover { color: var(--c-red-light); }
.site-footer__hours li {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-muted); margin-bottom: 0.5rem;
}
.site-footer__social { display: flex; flex-direction: column; gap: 0.8rem; }
.site-footer__social a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-text-muted); transition: color 0.2s ease;
}
.site-footer__social a:hover { color: var(--c-red); }
.site-footer__bottom {
  border-top: 1px solid var(--c-border);
  padding: 1.5rem 2rem;
  text-align: center;
}
.site-footer__bottom p {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-text-dim);
}

/* ===== Breakpoints ===== */
@media (min-width: 640px) {
  .site-header__logo span { display: inline; }
  .hero__ctas { flex-direction: row; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__inner { grid-template-columns: 1.2fr 1fr; align-items: end; }
  .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .hide-mobile { display: inline-flex; }
  .site-header__nav { display: flex; }
  .mobile-menu { display: none; }
  .section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section__head--center { flex-direction: column; align-items: center; justify-content: center; }
  .story__grid { grid-template-columns: 5fr 7fr; gap: 6rem; }
  .visit__grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
  .section { padding-left: 3rem; padding-right: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__image-wrap img { animation: none; }
}


/* ===== brandSweep: holeinthewallsushi ===== */
:root {
  --c-red: #E6000F;
  --c-red-dark: #c0000a;
  --c-red-light: #ffb4aa;
  --c-surface: #0e0e0e;
  --c-surface-2: #131313;
  --c-white: #fafaf7;
  --f-display: "Newsreader", Georgia, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
