:root {
  --ink: #1e1e1f;
  --ink-soft: #2f2d2a;
  --paper: #ffffff;
  --paper-soft: #f8f6f1;
  --gold: #ad9160;
  --gold-light: #c3a66d;
  --sage: #6d7f69;
  --salmon: #c97159;
  --line: rgba(173, 145, 96, 0.28);
  --shadow: 0 14px 32px rgba(0, 0, 0, 0.13);
  --max: 1180px;
  --font-main: "Roobert", sans-serif;
}

@font-face {
  font-family: "Roobert";
  src: url("../fonts/roobert-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Roobert";
  src: url("../fonts/roobert-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "Roobert";
  src: url("../fonts/roobert-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

button,
input,
select,
textarea {
  font-family: var(--font-main);
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
  background: transparent;
  pointer-events: none;
}

.nav-wrap {
  position: relative;
  width: min(880px, calc(100% - 32px));
  min-height: 76px;
  margin: 18px auto 0;
  padding: 8px 12px 8px 18px;
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(173, 145, 96, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(31, 31, 32, 0.18);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  justify-content: center;
  width: 152px;
  height: 54px;
  text-decoration: none;
}

.brand img {
  width: 148px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgba(173, 145, 96, 0.2);
  border-radius: 50%;
  background: #f8f6f1;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.main-nav {
  position: absolute;
  inset: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-width: 0;
  pointer-events: none;
}

.main-nav a {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: transparent;
  color: var(--gold);
}

.nav-cta {
  position: absolute;
  right: 0;
  top: 50%;
  min-width: 120px;
  justify-self: end;
  margin-left: 0;
  padding: 13px 24px !important;
  border: 0;
  background: var(--gold);
  color: #ffffff !important;
  text-align: center;
  transform: translateY(-50%);
}

.nav-cta:hover {
  background: #9c7f4f !important;
  color: #ffffff !important;
  transform: translateY(-50%);
}

.hero {
  position: relative;
  min-height: 100vh;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.66) 0%, rgba(12, 12, 11, 0.28) 52%, rgba(12, 12, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 12, 11, 0.38) 0%, rgba(12, 12, 11, 0) 50%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-main);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 860px;
  font-family: var(--font-main);
  font-size: 5.4rem;
  font-weight: 700;
}

.hero-title {
  display: flex;
  justify-content: center;
  gap: 0.22em;
  max-width: min(100%, 1040px);
  text-align: center;
  white-space: normal;
}

.hero-rotator {
  display: inline-block;
  min-width: 0;
  text-align: center;
  color: #ffffff;
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 420ms ease, transform 420ms ease, filter 420ms ease;
}

.hero-rotator.is-changing {
  opacity: 0;
  transform: translateY(0.24em);
  filter: blur(4px);
}

h2 {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 700;
}

h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.lead {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(251, 247, 239, 0.86);
  font-size: 1.24rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(251, 247, 239, 0.48);
  color: var(--paper);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

.button.light {
  border-color: var(--line);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 46px auto 0;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  overflow: hidden;
}

.hero-facts div {
  min-height: 88px;
  padding: 18px;
  background: rgba(21, 21, 20, 0.52);
  text-align: center;
}

.hero-facts strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.22rem;
}

.hero-facts span {
  color: rgba(251, 247, 239, 0.78);
}

.section {
  padding: 88px 0;
}

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

.section.soft {
  background: var(--paper-soft);
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.stacked {
  display: block;
  max-width: 780px;
}

.section-head.stacked p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 18px;
}

.section-head p:not(.eyebrow) {
  margin: 0;
  color: #5a5145;
}

.dark .section-head p:not(.eyebrow) {
  color: rgba(251, 247, 239, 0.72);
}

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

.pillar {
  padding: 24px 0 8px;
  border: 1px solid var(--line);
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.pillar p {
  margin: 12px 0 0;
  color: #5a5145;
}

.formula-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
}

.formula-copy p:not(.eyebrow) {
  color: #514a40;
}

.formula-board {
  padding: 38px 44px;
  border: 2px solid #242424;
  border-radius: 16px;
  background: #fff;
  color: #202020;
}

.formula-title {
  text-align: center;
  text-transform: uppercase;
  line-height: 0.92;
  font-weight: 700;
}

.formula-title span {
  display: block;
  font-size: 2.05rem;
}

.formula-title strong {
  display: block;
  color: var(--gold);
  font-size: 2.35rem;
}

.formula-note {
  margin: 28px 0 24px;
  text-align: center;
  color: #202020;
  font-size: 1.55rem;
  font-weight: 500;
}

.formula-block h3 {
  margin-bottom: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.75rem;
  font-weight: 700;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.18;
}

.price-row strong {
  font-size: 2.35rem;
}

.formula-line {
  width: 78%;
  height: 2px;
  margin: 28px auto;
  background: var(--gold);
}

.kids-note {
  margin: 28px auto 0;
  max-width: 560px;
  text-align: center;
  color: #202020;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 0.86fr);
}

.split p:not(.eyebrow) {
  color: #514a40;
}

.image-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  aspect-ratio: 1 / 1;
  margin-bottom: 34px;
}

.wide-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.menu-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: center;
}

.menu-preview img,
.menu-card img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.menu-preview img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.dark .muted {
  color: rgba(251, 247, 239, 0.74);
}

.muted {
  color: #5a5145;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.gallery-grid img:nth-child(1) {
  object-position: center;
}

.gallery-grid img:nth-child(3) {
  object-position: center;
}

.page-hero {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(21, 21, 20, 0.88), rgba(21, 21, 20, 0.46)),
    var(--hero-image, url("../img/sushi-assortment.webp")) var(--hero-position, center) / cover no-repeat;
  padding: 160px 0 78px;
}

.page-hero .section-inner {
  max-width: var(--max);
}

.page-hero h1 {
  font-size: 5.2rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(251, 247, 239, 0.86);
  font-size: 1.18rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.menu-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.menu-card-body {
  padding: 26px;
}

.menu-choice-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.menu-choice-grid {
  align-items: stretch;
}

.menu-choice-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.menu-ticket {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  margin: 28px;
  padding: 34px 28px;
  border: 2px solid #262626;
  border-radius: 18px;
  color: #1f1f20;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.menu-ticket:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.menu-ticket-hint {
  margin-bottom: 18px;
  color: #2d2d2d;
  font-size: 0.98rem;
  font-weight: 700;
}

.menu-ticket-title {
  text-transform: uppercase;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 0.95;
}

.menu-ticket-subtitle {
  margin-top: 6px;
  font-family: var(--font-main);
  text-transform: uppercase;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.menu-price-lines {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.menu-price-lines span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  max-width: 360px;
  margin: 0 auto;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.14;
}

.menu-price-lines em {
  color: var(--gold);
  font-style: normal;
  font-size: 2.2rem;
}

.menu-price-lines.single {
  margin-top: 42px;
}

.menu-card-body h2 {
  font-size: 2.05rem;
}

.menu-choice-card .menu-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.menu-choice-card .actions {
  margin-top: auto;
  padding-top: 20px;
}

.menu-card ul,
.policy-page ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.notice {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--salmon);
  background: rgba(217, 107, 79, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 34px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.44);
}

.contact-item > strong {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.contact-item p strong,
.text-strong {
  display: inline;
  color: inherit;
  text-transform: none;
  font-size: inherit;
  letter-spacing: 0;
  font-weight: 700;
}

.map-box {
  min-height: 360px;
  padding: 30px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(21, 21, 20, 0.82), rgba(21, 21, 20, 0.48)),
    url("../img/sange-map-illustration.webp") center / cover no-repeat;
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.policy-page {
  max-width: 860px;
}

.policy-page h2 {
  margin-top: 44px;
  font-size: 2.3rem;
}

.policy-page p {
  color: #514a40;
}

.site-footer {
  background: #111110;
  color: var(--paper);
  padding: 54px 0 28px;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  width: 164px;
  margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--font-main);
  font-size: 0.86rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--gold-light);
}

.site-footer p,
.site-footer a {
  color: rgba(251, 247, 239, 0.72);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 4px 0;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 195, 139, 0.18);
  color: rgba(251, 247, 239, 0.54);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .nav-wrap {
    width: min(620px, calc(100% - 24px));
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
    padding: 8px 10px 8px 16px;
    gap: 12px;
  }

  .brand {
    width: 132px;
    height: 48px;
  }

  .brand img {
    width: 128px;
    max-height: 48px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    position: relative;
    z-index: 3;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(173, 145, 96, 0.22);
    border: 1px solid rgba(173, 145, 96, 0.18);
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(31, 31, 32, 0.16);
    pointer-events: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
  }

  .main-nav .nav-cta {
    position: static;
    transform: none;
    margin-left: 0;
    justify-self: stretch;
  }

  .main-nav .nav-cta:hover {
    transform: none;
  }

  .hero {
    min-height: max(720px, 100svh);
  }

  .hero-title {
    gap: 0.18em;
  }

  .hero-rotator {
    min-width: 0;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .page-hero h1 {
    font-size: 3.9rem;
  }

  .hero-facts,
  .pillars,
  .menu-grid,
  .contact-grid,
  .footer-grid,
  .section-head,
  .menu-preview,
  .formula-section,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(3) {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .footer-grid,
  .footer-bottom,
  .hero-inner {
    width: min(100% - 24px, var(--max));
  }

  .nav-wrap {
    width: min(100% - 22px, var(--max));
    margin-top: 12px;
  }

  .brand {
    width: 112px;
    height: 44px;
  }

  .brand img {
    width: 108px;
    max-height: 44px;
  }

  .hero {
    min-height: max(700px, 100svh);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .page-hero h1 {
    font-size: 2.85rem;
  }

  .page-hero {
    padding: 148px 0 84px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1.08rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .hero-inner {
    padding: 104px 0 48px;
  }

  .hero-title {
    flex-direction: column;
    gap: 0.08em;
  }

  .hero-rotator {
    min-width: 0;
    text-align: center;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .hero-facts div {
    min-height: 72px;
    padding: 14px 8px;
  }

  .hero-facts strong {
    font-size: clamp(0.95rem, 3vw, 1.05rem);
  }

  .hero-facts span {
    font-size: clamp(0.76rem, 2.8vw, 0.9rem);
    white-space: nowrap;
  }

  .formula-board {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .menu-ticket {
    min-height: 280px;
    margin: 18px;
    padding: 28px 18px;
    border-radius: 14px;
  }

  .menu-ticket-title {
    font-size: 2.1rem;
  }

  .menu-ticket-subtitle {
    font-size: 1.05rem;
  }

  .menu-price-lines span {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 1.55rem;
  }

  .menu-price-lines em {
    font-size: 1.8rem;
  }

  .formula-title span {
    font-size: 1.55rem;
  }

  .formula-title strong {
    font-size: 1.75rem;
  }

  .formula-note {
    font-size: 1.18rem;
  }

  .price-row {
    font-size: 1.55rem;
  }

  .price-row strong {
    font-size: 1.68rem;
  }

  .section {
    padding: 64px 0;
  }

  .actions,
  .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(3) {
    height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rotator {
    transition: none;
  }
}
