:root {
  --ink: #090806;
  --ink-soft: #15110a;
  --wine: #c89a45;
  --wine-deep: #211604;
  --emerald: #d0a354;
  --emerald-deep: #100d08;
  --gold: #c89a45;
  --gold-bright: #f0d7a0;
  --cream: #11100d;
  --paper: #17130d;
  --white: #ffffff;
  --muted: #c2b7a7;
  --line: rgba(200, 154, 69, 0.32);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 154, 69, 0.14), transparent 330px),
    linear-gradient(180deg, #0f0c07, #090806 420px),
    var(--cream);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(9, 8, 6, 0.86);
  border-bottom: 1px solid rgba(240, 215, 160, 0.16);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(9, 8, 6, 0.97);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 4px;
  border: 1px solid var(--gold);
  background: var(--white);
}

.nav-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: rgba(255, 248, 236, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-panel a {
  position: relative;
  padding: 26px 0;
}

.nav-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-bright);
  transition: transform 220ms ease;
}

.nav-panel a:hover::after,
.nav-panel a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 248, 236, 0.22);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid transparent;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-call {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 28px rgba(199, 155, 84, 0.24);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 248, 236, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(199, 155, 84, 0.14);
}

.btn-ghost {
  color: var(--gold-bright);
  border-color: rgba(199, 155, 84, 0.42);
  background: rgba(12, 17, 16, 0.42);
}

.btn-large {
  min-height: 56px;
  padding-inline: 24px;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-light {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(240, 215, 160, 0.05), rgba(9, 8, 6, 0)),
    var(--cream);
}

.section-wine {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 8, 6, 0.98), rgba(33, 22, 4, 0.94)),
    var(--emerald-deep);
}

.section-order {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 8, 6, 0.99), rgba(33, 22, 4, 0.9)),
    var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(720px, 92vh, 940px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 132px 0 78px;
  isolation: isolate;
}

.hero-backdrop,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(12, 17, 16, 0.98), rgba(12, 17, 16, 0.9) 45%, rgba(12, 17, 16, 0.62)),
    linear-gradient(180deg, rgba(12, 17, 16, 0.36), rgba(12, 17, 16, 0.94)),
    url("sushinew.jpg") center / cover no-repeat;
  transform: scale(1.03);
  filter: saturate(0.9);
}

.hero-glow {
  background:
    linear-gradient(115deg, rgba(200, 154, 69, 0.24), transparent 42%),
    linear-gradient(285deg, rgba(240, 215, 160, 0.18), transparent 36%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(4.1rem, 6.8vw, 6.15rem);
}

.hero h1 span:last-child {
  color: var(--gold-bright);
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-details span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-details i {
  color: var(--gold-bright);
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: clamp(500px, 58vw, 650px);
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 210, 162, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-photo img {
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 16px 16px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  background: linear-gradient(180deg, transparent, rgba(12, 17, 16, 0.82));
}

.hero-photo-main {
  grid-column: 2;
  grid-row: 1 / 3;
}

.hero-photo-top {
  grid-column: 1;
  grid-row: 1;
}

.hero-photo-bottom {
  grid-column: 1;
  grid-row: 2;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 9vw, 7.8rem);
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-subtitle {
  margin: 18px 0 12px;
  color: var(--gold-bright);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 56px;
  padding: 100px 0 34px;
}

.section-copy p:not(.eyebrow),
.section-heading + p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 100px;
}

.feature-card,
.why-card,
.dish-card {
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.feature-card {
  min-height: 226px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(240, 215, 160, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(240, 215, 160, 0.18);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.feature-card:hover,
.why-card:hover,
.dish-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 50%;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.restaurant-video {
  padding: 0 0 100px;
}

.video-story {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  padding-top: 64px;
  border-top: 1px solid rgba(240, 215, 160, 0.12);
}

.video-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(240, 215, 160, 0.24);
  border-radius: var(--radius);
  background: #050403;
  box-shadow: var(--shadow);
}

.restaurant-video-player {
  display: block;
  width: 100%;
  max-height: min(72vh, 680px);
  background: #050403;
}

.video-frame figcaption {
  padding: 13px 16px 15px;
  border-top: 1px solid rgba(240, 215, 160, 0.16);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.04);
}

.why,
.order-section,
.menu-section,
.contact {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-wine .section-heading h2,
.section-wine .section-copy h2,
.section-dark .section-copy h2 {
  color: var(--white);
}

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

.why-card {
  min-height: 300px;
  padding: 32px;
  color: rgba(255, 248, 236, 0.88);
  border: 1px solid rgba(255, 248, 236, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.why-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
}

.why-card h3 {
  color: var(--white);
}

.specialties {
  padding: 100px 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dish-card {
  overflow: hidden;
  min-height: 100%;
  color: var(--white);
  background: var(--paper);
  border: 1px solid rgba(240, 215, 160, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.dish-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.dish-card div {
  padding: 24px;
}

.dish-card p {
  min-height: 84px;
  margin: 12px 0 18px;
  color: var(--muted);
}

.dish-card a {
  color: var(--gold-bright);
  font-weight: 800;
}

.order-section .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(247, 241, 230, 0.78);
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  align-items: start;
  gap: 24px;
}

.order-menu,
.cart-panel {
  border: 1px solid rgba(234, 210, 162, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.order-menu {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
}

.order-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  border-bottom: 1px solid rgba(234, 210, 162, 0.16);
  overflow-x: auto;
}

.order-tab {
  min-height: 58px;
  border: 0;
  color: rgba(247, 241, 230, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.order-tab.active {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.order-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
}

.order-item {
  display: grid;
  gap: 14px;
  min-height: 184px;
  padding: 18px;
  border: 1px solid rgba(234, 210, 162, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.order-item:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 210, 162, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.order-item h3 {
  color: var(--white);
  font-size: 1.16rem;
}

.order-item p {
  margin: 0;
  color: rgba(247, 241, 230, 0.72);
  font-size: 0.92rem;
}

.order-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.order-price {
  color: var(--gold-bright);
  font-weight: 900;
}

.order-add,
.cart-qty button,
.cart-remove {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(234, 210, 162, 0.28);
  color: var(--gold-bright);
  background: rgba(12, 17, 16, 0.42);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.order-add {
  min-width: 44px;
  height: 40px;
  border-radius: var(--radius);
}

.order-add:hover,
.cart-qty button:hover,
.cart-remove:hover {
  color: var(--ink);
  background: var(--gold-bright);
}

.cart-panel {
  grid-column: 2;
  grid-row: 1;
  position: sticky;
  top: 96px;
  padding: 22px;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.cart-panel.is-highlighted {
  border-color: rgba(234, 210, 162, 0.72);
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(234, 210, 162, 0.12);
}

.cart-head,
.cart-total,
.cart-row,
.cart-qty {
  display: flex;
  align-items: center;
}

.cart-head,
.cart-total,
.cart-row {
  justify-content: space-between;
  gap: 16px;
}

.cart-head {
  margin-bottom: 16px;
}

.cart-count {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-bright);
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 12px;
  max-height: 310px;
  overflow: auto;
  padding-right: 4px;
}

.cart-empty,
.order-hint {
  margin: 0;
  color: rgba(247, 241, 230, 0.62);
  font-size: 0.9rem;
}

.cart-row {
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(234, 210, 162, 0.12);
}

.cart-row h4 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 0.95rem;
}

.cart-row p {
  margin: 0;
  color: rgba(247, 241, 230, 0.66);
  font-size: 0.85rem;
}

.cart-controls {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.cart-qty {
  gap: 8px;
}

.cart-qty button,
.cart-remove {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.cart-remove {
  color: rgba(247, 241, 230, 0.72);
}

.cart-total {
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid rgba(234, 210, 162, 0.18);
  border-bottom: 1px solid rgba(234, 210, 162, 0.18);
  color: var(--white);
}

.cart-total strong {
  color: var(--gold-bright);
  font-size: 1.45rem;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form label {
  display: grid;
  gap: 6px;
  color: rgba(247, 241, 230, 0.82);
  font-size: 0.84rem;
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(234, 210, 162, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 13px;
  font: inherit;
}

.order-form textarea {
  resize: vertical;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(247, 241, 230, 0.46);
}

.whatsapp-order.disabled {
  pointer-events: none;
  opacity: 0.58;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.menu-layout-single {
  display: block;
  max-width: 760px;
  text-align: center;
}

.menu-layout-single .section-copy {
  display: grid;
  justify-items: center;
}

.menu-layout-single .section-copy p:not(.eyebrow) {
  max-width: 650px;
}

.menu-section .section-copy p {
  color: rgba(255, 248, 236, 0.78);
}

.drink-menu {
  display: none;
  padding: 100px 0;
}

.drink-menu .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.drink-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.drink-category {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(240, 215, 160, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(240, 215, 160, 0.08), rgba(255, 255, 255, 0.03)),
    var(--paper);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.drink-category h3 {
  color: var(--gold-bright);
  font-size: 1.45rem;
}

.drink-items {
  display: grid;
  gap: 10px;
}

.drink-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 215, 160, 0.12);
  color: rgba(255, 248, 236, 0.9);
}

.drink-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.drink-item span {
  min-width: 0;
  font-weight: 800;
}

.drink-item small {
  color: rgba(255, 248, 236, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.drink-item strong {
  color: var(--gold-bright);
  font-weight: 900;
  white-space: nowrap;
}

.drink-item-rich em {
  grid-column: 1 / -1;
  margin-top: -6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.5;
}

.drink-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-lookbook {
  position: relative;
  overflow: hidden;
  padding: 94px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 154, 69, 0.14), transparent 340px),
    linear-gradient(180deg, #11100d, #090806),
    var(--ink);
}

.gallery-lookbook::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(240, 215, 160, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(240, 215, 160, 0.035) 1px, transparent 1px);
  background-size: 128px 128px;
  opacity: 0.68;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.gallery-lookbook .container {
  position: relative;
}

.lookbook-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.46fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  margin-bottom: 34px;
}

.lookbook-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
  color: var(--gold-bright);
}

.lookbook-head h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 680px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
}

.lookbook-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin: 0;
  max-width: 430px;
  color: var(--muted);
  font-size: 1.02rem;
}

.lookbook-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.lookbook-feature,
.lookbook-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(240, 215, 160, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.lookbook-feature {
  min-height: 560px;
}

.lookbook-feature img,
.lookbook-tile img {
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.hero-photo-top img,
.lookbook-feature img {
  object-position: center 58%;
}

.hero-photo-bottom img {
  object-position: center 45%;
}

.lookbook-feature:hover img,
.lookbook-tile:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.08);
}

.lookbook-feature figcaption,
.lookbook-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: var(--white);
  background: linear-gradient(0deg, rgba(12, 17, 16, 0.88), rgba(12, 17, 16, 0));
}

.lookbook-feature figcaption {
  display: grid;
  gap: 10px;
  padding: 90px 34px 30px;
}

.lookbook-feature span {
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lookbook-feature strong {
  max-width: 520px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lookbook-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lookbook-tile {
  min-height: 271px;
}

.lookbook-tile figcaption {
  padding: 60px 18px 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: stretch;
}

.contact-info address {
  margin: 24px 0;
  color: rgba(255, 248, 236, 0.88);
  font-style: normal;
}

.contact-info address a,
.site-footer a:hover {
  color: var(--gold-bright);
}

.hours {
  margin: 24px 0 30px;
}

.hours h3 {
  margin-bottom: 10px;
}

.hours p {
  color: rgba(255, 248, 236, 0.82);
}

.map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  color: rgba(255, 248, 236, 0.72);
  background: var(--ink);
  border-top: 1px solid rgba(255, 248, 236, 0.12);
}

.footer-inner {
  min-height: 104px;
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.9rem;
  text-align: center;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.footer-credit {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: min(420px, 100%);
  margin: 0 auto;
  padding-top: 16px;
  color: rgba(255, 248, 236, 0.62);
  border-top: 1px solid rgba(255, 248, 236, 0.12);
}

.footer-credit p:last-child {
  color: var(--gold-bright);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

body.reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    color: var(--white);
    background: rgba(16, 13, 13, 0.98);
    border-bottom: 1px solid rgba(255, 248, 236, 0.12);
    transform: translateY(-120%);
    transition: transform 240ms ease;
  }

  .nav-panel.open {
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 248, 236, 0.08);
  }

  .nav-panel a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-showcase {
    min-height: 520px;
  }

  .split-layout,
  .menu-layout,
  .order-layout,
  .video-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    grid-column: 1;
    grid-row: auto;
    position: static;
    scroll-margin-top: 96px;
  }

  .order-menu {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-grid,
  .why-grid,
  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 720px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .hero {
    padding: 116px 0 58px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(12, 17, 16, 0.96), rgba(12, 17, 16, 0.88)),
      url("sushinew.jpg") center / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11.8vw, 3.4rem);
    overflow-wrap: normal;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 11px 10px;
    font-size: 0.84rem;
  }

  .hero-details {
    align-items: stretch;
    flex-direction: column;
    margin-top: 14px;
  }

  .hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    min-height: auto;
  }

  .hero-photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 1.2;
  }

  .hero-photo-main {
    grid-column: 1 / -1;
    aspect-ratio: 1.45;
  }

  .hero-photo-top {
    aspect-ratio: 1;
  }

  .hero-photo-bottom {
    aspect-ratio: 1;
  }

  .hero-photo figcaption {
    padding: 44px 14px 14px;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .split-layout,
  .restaurant-video,
  .why,
  .order-section,
  .specialties,
  .menu-section,
  .drink-menu,
  .gallery-lookbook,
  .contact {
    padding: 72px 0;
  }

  .split-layout {
    gap: 32px;
  }

  .restaurant-video {
    padding: 0 0 72px;
  }

  .video-story {
    gap: 28px;
    padding-top: 44px;
  }

  .restaurant-video-player {
    max-height: 72vh;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .why-grid,
  .dish-grid,
  .drink-list,
  .order-items {
    grid-template-columns: 1fr;
  }

  .dish-card p {
    min-height: auto;
  }

  .lookbook-head,
  .lookbook-layout {
    grid-template-columns: 1fr;
  }

  .lookbook-head .eyebrow,
  .lookbook-head h2,
  .lookbook-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .lookbook-feature {
    min-height: 0;
    aspect-ratio: 1.05;
  }

  .lookbook-stack {
    grid-template-columns: 1fr;
  }

  .lookbook-tile {
    min-height: 0;
    aspect-ratio: 1.12;
  }

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

  .cart-row {
    display: grid;
    gap: 10px;
  }

  .cart-controls {
    justify-items: start;
  }
}

@media (max-width: 460px) {
  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-photo-main,
  .hero-photo-top,
  .hero-photo-bottom {
    grid-column: 1;
    aspect-ratio: 1.18;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(362px, calc(100% - 28px));
    margin-left: 14px;
    margin-right: 14px;
  }
}

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