:root {
  --night: #07080b;
  --night-raised: #12141b;
  --ink: #16181d;
  --paper: #edf0f1;
  --paper-deep: #dbe1e3;
  --white: #ffffff;
  --gold: #d1a35d;
  --gold-soft: #e1c188;
  --rose: #d94a69;
  --cyan: #77cbd4;
  --smoke: #9ba2a9;
  --line-dark: rgba(255, 255, 255, 0.2);
  --line-light: rgba(22, 24, 29, 0.2);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: var(--sans);
}

img {
  max-width: 100%;
}

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

section {
  scroll-margin-top: 88px;
}

a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 5vw;
  border-bottom: 1px solid rgba(209, 163, 93, 0.35);
  background: rgba(7, 8, 11, 0.86);
  color: var(--white);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 72px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-soft);
}

.header-reservation {
  display: flex;
  min-width: 164px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 12px;
  border: 1px solid rgba(209, 163, 93, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  line-height: 1.3;
}

.header-reservation span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-reservation strong {
  margin-top: 3px;
  font-size: 15px;
}

.header-reservation:hover strong,
.header-reservation:focus-visible strong {
  color: var(--cyan);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(2, 4, 9, 0.63);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  margin: 74px 5vw 0;
  padding: 72px 0 86px;
}

.hero-kicker {
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-script,
.section-script {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  line-height: 1.2;
}

.hero-script {
  margin-top: 32px;
}

.hero h1,
.intro h2,
.gallery-header h2,
.room-menu h2,
.reservation h2,
.visit h2,
.faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 {
  max-width: 660px;
  margin-top: 12px;
  color: var(--white);
  font-size: 72px;
}

.hero-copy {
  max-width: 550px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

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

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
}

.button-gold:hover,
.button-gold:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--night);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.hero-discover {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  z-index: 1;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.hero-discover:hover,
.hero-discover:focus-visible {
  color: var(--gold-soft);
}

.section-shell {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 78px;
  align-items: center;
  padding: 126px 0;
  background: var(--paper);
  color: var(--ink);
}

.intro::before {
  position: absolute;
  content: "";
}

.intro-image {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(209, 163, 93, 0.65);
  border-radius: var(--radius);
  background: var(--night);
}

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

.intro-content {
  position: relative;
  max-width: 520px;
  padding: 36px 0 36px 40px;
  border-left: 2px solid var(--gold);
}

.intro-content .section-script {
  color: #a57638;
}

.intro h2,
.gallery-header h2,
.room-menu h2,
.reservation h2,
.visit h2,
.faq h2 {
  font-size: 47px;
}

.intro h2 {
  max-width: 490px;
  margin-top: 12px;
}

.intro-content > p:not(.section-script) {
  max-width: 480px;
  margin: 24px 0 0;
  color: #4a5158;
  font-size: 17px;
  line-height: 1.72;
}

.intro-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 31px;
  color: #1e252c;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.intro-signature span + span {
  padding-left: 28px;
  border-left: 1px solid #a57638;
}

.gallery-section {
  padding: 122px 0;
  background: var(--night);
}

.gallery-header {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.gallery-header h2 {
  max-width: 760px;
  margin-top: 12px;
  color: var(--white);
}

.gallery-header > p:last-child {
  max-width: 620px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.7;
}

.gallery-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: min(1380px, 94vw);
  margin: 0 auto;
}

.gallery-frame {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--night-raised);
}

.gallery-frame-1 {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 660px;
}

.gallery-frame-2,
.gallery-frame-3 {
  grid-column: span 5;
}

.gallery-frame-4 {
  grid-column: span 12;
  min-height: 450px;
}

.gallery-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery-frame-4 img {
  object-position: center bottom;
}

.gallery-frame:hover img {
  transform: scale(1.025);
}

.gallery-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 46px 26px 24px;
  background: rgba(3, 4, 8, 0.78);
}

.gallery-frame figcaption span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 800;
}

.gallery-frame h3 {
  margin: 8px 0 7px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.12;
}

.gallery-frame p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 14px;
  line-height: 1.55;
}

.room-menu {
  padding: 122px 0;
  background: var(--paper);
  color: var(--ink);
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 54px;
}

.menu-intro .section-script {
  grid-column: 1 / -1;
  color: #a57638;
}

.menu-intro h2 {
  grid-column: 1;
  max-width: 560px;
}

.menu-intro > p:last-child {
  grid-column: 2;
  max-width: 360px;
  margin: 0;
  color: #565f67;
  font-size: 16px;
  line-height: 1.65;
}

.price-ledger {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.44);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.menu-poster {
  position: relative;
  height: 535px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 96, 33, 0.55);
  border-radius: var(--radius);
  background: #3a0707;
}

.menu-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-poster figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  background: rgba(5, 6, 9, 0.88);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.menu-pricing {
  min-width: 0;
}

.price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 25px 26px;
  border-bottom: 1px solid var(--line-light);
}

.price-line h3,
.price-line p {
  margin: 0;
}

.price-line h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.price-line p {
  max-width: 720px;
  margin-top: 8px;
  color: #5d656d;
  font-size: 15px;
  line-height: 1.55;
}

.price-line strong {
  justify-self: end;
  color: #9b6021;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.price-line:last-child {
  border-bottom: 0;
}

.menu-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

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

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--rose);
  background: var(--rose);
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--night-raised);
}

.reservation-image {
  min-height: 480px;
  background: var(--night);
}

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

.reservation-content {
  display: flex;
  max-width: 590px;
  flex-direction: column;
  justify-content: center;
  padding: 86px 7vw;
}

.reservation-content h2 {
  max-width: 540px;
  margin-top: 12px;
  color: var(--white);
}

.reservation-content > p:not(.section-script) {
  max-width: 510px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
  line-height: 1.7;
}

.reservation-phone {
  display: inline-flex;
  width: fit-content;
  margin-top: 30px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
}

.reservation-phone:hover,
.reservation-phone:focus-visible {
  color: var(--cyan);
}

.reservation-actions {
  margin-top: 34px;
}

.button-ghost-dark {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.button-ghost-dark:hover,
.button-ghost-dark:focus-visible {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--night);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.7fr) minmax(180px, 0.45fr);
  gap: 50px;
  align-items: end;
  padding: 104px 0;
  background: var(--night);
}

.visit h2 {
  max-width: 460px;
  margin-top: 12px;
  color: var(--white);
}

.visit-address,
.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 7px;
}

.visit address,
.visit-contact a {
  color: var(--white);
  font-family: var(--serif);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.visit-address > a {
  width: fit-content;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.visit-contact span {
  color: var(--smoke);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.visit-contact a:hover,
.visit-contact a:focus-visible,
.visit-address > a:hover,
.visit-address > a:focus-visible {
  color: var(--cyan);
}

.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: 80px;
  padding: 105px 0;
  background: var(--paper-deep);
  color: var(--ink);
}

.faq-intro .section-script {
  color: #a57638;
}

.faq h2 {
  max-width: 390px;
  margin-top: 12px;
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.36);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 22px 52px 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 19px;
  right: 24px;
  color: #9b6021;
  content: "+";
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 700px;
  margin: 0;
  padding: 0 24px 24px;
  color: #59616a;
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 0.9fr) auto;
  gap: 30px;
  align-items: center;
  padding: 30px 5vw 96px;
  border-top: 1px solid rgba(209, 163, 93, 0.28);
  background: #050609;
  color: var(--white);
}

.footer-logo {
  display: inline-flex;
}

.footer-logo img {
  display: block;
  width: 114px;
  height: 88px;
  object-fit: contain;
}

.site-footer p,
.site-footer address,
.site-footer > a:not(.footer-logo) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer address {
  font-style: normal;
}

.site-footer > a:not(.footer-logo) {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  text-align: right;
}

.site-footer > a:not(.footer-logo):hover,
.site-footer > a:not(.footer-logo):focus-visible {
  color: var(--cyan);
}

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(209, 163, 93, 0.75);
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.quick-actions a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: background-color 180ms ease, color 180ms ease;
}

.quick-actions a + a {
  border-left: 1px solid rgba(209, 163, 93, 0.56);
  color: var(--gold-soft);
}

.quick-actions a:hover,
.quick-actions a:focus-visible {
  background: var(--gold);
  color: var(--night);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 18px;
  }

  .header-reservation {
    min-width: 144px;
    padding: 8px 10px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .intro {
    gap: 48px;
  }

  .gallery-frame-1 {
    min-height: 570px;
  }

  .reservation-content {
    padding: 70px 5vw;
  }

  .visit {
    gap: 32px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 76px;
    padding: 6px 5vw;
  }

  .brand-logo {
    width: 80px;
    height: 62px;
  }

  .main-nav,
  .header-reservation {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .mobile-menu summary {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 9px 0 9px 14px;
    cursor: pointer;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary::after {
    margin-left: 8px;
    content: "+";
    font-size: 18px;
    font-weight: 400;
  }

  .mobile-menu[open] summary::after {
    content: "-";
  }

  .mobile-menu nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 5vw 22px;
    border-bottom: 1px solid rgba(209, 163, 93, 0.4);
    background: var(--night);
  }

  .mobile-menu nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child {
    color: var(--gold-soft);
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    width: min(90vw, 560px);
    margin: 54px 5vw 0;
    padding: 64px 0 72px;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-script,
  .section-script {
    font-size: 23px;
  }

  .hero-script {
    margin-top: 24px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-actions .button,
  .reservation-actions .button {
    width: 100%;
  }

  .hero-discover {
    right: auto;
    left: 5vw;
    bottom: 20px;
  }

  .section-shell {
    width: min(90vw, 620px);
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 74px 0;
  }

  .intro-image {
    min-height: 350px;
  }

  .intro-content {
    padding: 26px 0 26px 25px;
  }

  .intro h2,
  .gallery-header h2,
  .room-menu h2,
  .reservation h2,
  .visit h2,
  .faq h2 {
    font-size: 35px;
  }

  .intro-content > p:not(.section-script) {
    font-size: 16px;
  }

  .intro-signature {
    font-size: 18px;
  }

  .gallery-section,
  .room-menu {
    padding: 76px 0;
  }

  .gallery-header {
    width: min(90vw, 620px);
    margin-bottom: 35px;
  }

  .gallery-shell {
    grid-template-columns: 1fr;
    width: min(90vw, 620px);
    gap: 14px;
  }

  .gallery-frame,
  .gallery-frame-1,
  .gallery-frame-2,
  .gallery-frame-3,
  .gallery-frame-4 {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .gallery-frame figcaption {
    padding: 37px 18px 18px;
  }

  .gallery-frame h3 {
    font-size: 25px;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .menu-intro h2,
  .menu-intro > p:last-child {
    grid-column: auto;
  }

  .menu-intro > p:last-child {
    max-width: 480px;
  }

  .menu-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .menu-poster {
    width: min(100%, 380px);
    height: 410px;
    margin: 0 auto;
  }

  .price-line {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 23px 20px;
  }

  .price-line h3 {
    font-size: 25px;
  }

  .price-line strong {
    justify-self: start;
    font-size: 27px;
    text-align: left;
  }

  .menu-action {
    justify-content: stretch;
  }

  .menu-action .button {
    width: 100%;
  }

  .reservation {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .reservation-image {
    min-height: 350px;
  }

  .reservation-content {
    padding: 62px 7vw;
  }

  .reservation-phone {
    font-size: 34px;
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 76px 0;
  }

  .visit-address,
  .visit-contact {
    padding-bottom: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 76px 0;
  }

  .faq-list summary {
    font-size: 20px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 18px 22px;
    padding: 28px 5vw 84px;
  }

  .site-footer p {
    align-self: center;
  }

  .site-footer address {
    grid-column: 1 / -1;
  }

  .site-footer > a:not(.footer-logo) {
    grid-column: 1 / -1;
    text-align: left;
  }

  .quick-actions {
    right: 0;
    bottom: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-actions a {
    flex: 1 1 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
