:root {
  --gold: #cfa670;
  --orange: #f04e27;
  --ink: #25252f;
  --soft: #f6f2ea;
  --paper: #fffdf8;
  --muted: #777;
  --footer: #1b1b1b;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  color: #222;
  background-color: #fbf7ef;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(207,166,112,.11), transparent 23%),
    radial-gradient(circle at 86% 4%, rgba(70,52,34,.055), transparent 20%),
    linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,0) 38%, rgba(95,73,45,.035)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed, fixed;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  height: 82px;
  padding: 18px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: background .28s ease, height .28s ease, box-shadow .28s ease;
}
.site-header.is-sticky {
  height: 72px;
  background: rgba(255, 255, 255, .96);
  color: #222;
  box-shadow: 0 6px 26px rgba(0,0,0,.08);
}
.brand {
  position: relative;
  display: block;
  width: 168px;
  height: 56px;
}
.brand img {
  position: absolute;
  inset: 50% auto auto 0;
  width: 168px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity .24s ease, filter .24s ease;
}
.brand .logo-light { width: 132px; opacity: 1; filter: drop-shadow(0 2px 8px rgba(0,0,0,.28)); }
.brand .logo-dark { opacity: 0; }
.site-header.is-sticky .brand .logo-light { opacity: 0; }
.site-header.is-sticky .brand .logo-dark { opacity: 1; }
.desktop-nav { display: flex; gap: 30px; font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--orange); }
.menu-toggle, .drawer-close, .scroll-top {
  appearance: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  background: transparent;
  display: grid;
  gap: 5px;
  align-content: center;
}
.menu-toggle span {
  height: 2px;
  width: 24px;
  background: currentColor;
  display: block;
  justify-self: end;
  transition: width .2s ease;
}
.menu-toggle:hover span:nth-child(2) { width: 16px; }

.drawer {
  position: fixed;
  z-index: 60;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: #191919;
  color: #fff;
  padding: 36px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22,.61,.36,1);
  box-shadow: -30px 0 80px rgba(0,0,0,.3);
}
.drawer.is-open { transform: translateX(0); }
.drawer-close { background: transparent; color: #fff; font-size: 38px; line-height: 1; float: right; }
.drawer-logo { width: 115px; margin: 52px 0 34px; }
.drawer nav { display: grid; gap: 16px; text-transform: uppercase; font-size: 13px; font-weight: 900; }
.drawer p { color: #aaa; margin-top: 42px; }

.hero-slider {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #111;
  display: grid;
  place-items: center;
}
.hero-slide {
  position: absolute;
  inset: -6vh 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.35s ease, transform 6.8s ease;
}
.hero-slide::after, .page-caption::after, .parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.28);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 110px 24px 40px;
}
.hero-content img { width: 126px; margin: 0 auto 26px; }
.hero-content h1 {
  margin: 0;
  font-family: Lato, Arial, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .95;
  font-weight: 300;
  letter-spacing: 0;
}
.hero-content strong { font-weight: 900; }
.hero-content p { margin: 18px 0 26px; font-size: 15px; text-transform: uppercase; letter-spacing: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .2s ease, border .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.gold { background: var(--gold); color: #fff; }
.btn.gold:hover { background: var(--orange); }
.btn.outline { border: 2px solid #fff; color: #fff; margin-left: 12px; }
.btn.dark { background: var(--ink); color: #fff; border: 0; }

.paper {
  background-color: rgba(255,253,248,.94);
  background-image:
    radial-gradient(rgba(207,166,112,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.022), transparent 35%, rgba(0,0,0,.022)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='90' height='90' filter='url(%23p)' opacity='.075'/%3E%3C/svg%3E");
  background-size: 26px 26px, auto, 90px 90px;
}
.intro { padding: 88px 24px 52px; }
.title-block { max-width: 820px; margin: 0 auto; text-align: center; }
.title-block span, .parallax-title span, .split-panel h2 span, .contact-panel h2 span {
  display: block;
  font-family: Kristi, cursive;
  font-size: 70px;
  font-weight: 400;
  color: var(--gold);
  line-height: .55;
  text-transform: none;
}
.title-block h2, .parallax-title h2, .split-panel h2, .contact-panel h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 60px);
  line-height: .95;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}
.title-block p { color: var(--muted); margin: 16px 0 0; text-transform: uppercase; font-size: 13px; font-weight: 700; }
.title-block i, .split-panel i, .contact-panel i, .map-card i {
  display: block;
  width: 42px;
  border-top: 2px solid var(--gold);
  margin: 24px auto 0;
}

.split-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .95fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 24px;
  align-items: center;
}
.split-card.is-reversed { grid-template-columns: minmax(320px, .95fr) minmax(0, 1.55fr); }
.split-card.is-reversed .split-image { grid-column: 2; }
.split-card.is-reversed .split-panel { grid-column: 1; grid-row: 1; }
.image-frame {
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.image-frame:hover img { transform: scale(1.06); }
.split-panel {
  background: #fff;
  padding: 44px;
  box-shadow: 0 18px 55px rgba(45,31,17,.11);
  margin-left: -42px;
  z-index: 2;
  border-top: 4px solid var(--gold);
}
.is-reversed .split-panel { margin: 0 -42px 0 0; }
.split-panel h2 { font-size: clamp(32px, 5vw, 52px); }
.split-panel i, .contact-panel i, .map-card i { margin-left: 0; }
.split-panel p { color: #555; margin-bottom: 0; }

.parallax-band, .page-caption {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  place-items: center;
  color: #fff;
}
.page-caption { min-height: 70vh; }
.parallax-layer {
  position: absolute;
  inset: -18% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-title, .page-caption h1 {
  position: relative;
  z-index: 2;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.page-caption h1 {
  font-size: clamp(48px, 7vw, 82px);
  text-transform: uppercase;
  letter-spacing: 0;
}

.locations {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
}
.locations article { background: #fff; padding: 28px; min-height: 150px; box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.locations strong { color: var(--gold); font-size: 20px; }
.locations.compact { padding-top: 24px; }

.location-showcase {
  background:
    radial-gradient(circle at 20% 20%, rgba(207,166,112,.12), transparent 24%),
    linear-gradient(135deg, #111 0%, #171717 58%, #0d0d0d 100%);
  color: #fff;
  padding: 70px 24px;
  overflow: hidden;
}
.location-showcase.compact { padding-top: 58px; }
.location-showcase-inner {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}
.location-showcase-inner::before,
.location-showcase-inner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(207,166,112,.14);
  opacity: .55;
  transform: rotate(45deg);
}
.location-showcase-inner::before { left: -170px; top: -120px; }
.location-showcase-inner::after { right: -170px; bottom: -120px; }
.location-heading {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  color: #f3d49a;
  text-align: center;
}
.location-heading span {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d6a84f, transparent);
}
.location-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}
.location-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(207,166,112,.45);
  border-bottom: 1px solid rgba(207,166,112,.45);
}
.location-card {
  min-height: 280px;
  padding: 30px 24px;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 13px;
  border-right: 1px solid rgba(207,166,112,.45);
}
.location-card:last-child { border-right: 0; }
.location-icon {
  width: 86px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #d6a84f;
  border-bottom: 2px solid rgba(207,166,112,.65);
  line-height: 1;
}
.location-icon svg {
  width: 76px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location-card h3 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.1;
  text-transform: uppercase;
}
.location-card p {
  margin: 0;
  color: #f6f0e7;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 800;
}
.location-card a {
  color: #d6a84f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.menu-item { background: #fff; box-shadow: 0 14px 38px rgba(45,31,17,.09); overflow: hidden; border-bottom: 3px solid transparent; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.menu-item:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(45,31,17,.14); border-color: var(--gold); }
.menu-item img { width: 100%; aspect-ratio: 1.15; object-fit: cover; transition: transform .55s ease; }
.menu-item:hover img { transform: scale(1.05); }
.menu-item div { padding: 20px; }
.menu-item header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.menu-item h2 { font-size: 18px; margin: 0 0 10px; line-height: 1.25; text-transform: uppercase; font-weight: 900; }
.menu-item header strong { color: var(--gold); white-space: nowrap; font-size: 14px; padding-top: 1px; }
.menu-item p { color: #666; margin: 0; font-size: 13px; line-height: 1.55; }
.menu-item .menu_eng {
  display: block;
  color: #333;
  font-weight: 700;
  margin-bottom: 7px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
input, textarea, select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(207,166,112,.16); }
textarea { min-height: 120px; resize: vertical; grid-column: 1 / -1; }
fieldset { grid-column: 1 / -1; border: 1px solid #ddd; display: flex; flex-wrap: wrap; gap: 12px; padding: 12px; }
legend { font-size: 12px; font-weight: 900; text-transform: uppercase; }
.location-picker {
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}
.location-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
}
.location-picker label {
  position: relative;
  min-height: 46px;
  cursor: pointer;
}
.location-picker label:hover span {
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(207,166,112,.2);
  transform: translateY(-2px);
}
.location-picker input {
  position: absolute;
  opacity: 0;
  inset: 0;
}
.location-picker span {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.location-picker input:checked + span {
  background: var(--ink);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(207,166,112,.18);
  transform: translateY(-2px);
}

.map-stack { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.map-row { position: relative; min-height: 500px; margin-bottom: 70px; }
.map-frame { width: 65%; height: 500px; background: #e5e5e5; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); }
.map-card {
  position: absolute;
  top: 58px;
  right: 0;
  width: 42%;
  background: var(--ink);
  color: #fff;
  padding: 44px;
}
.map-row.is-reversed .map-frame { margin-left: auto; }
.map-row.is-reversed .map-card { left: 0; right: auto; }
.map-card h2 { font-size: 46px; margin: 0; color: #fff; }
.map-card a { color: var(--gold); font-weight: 900; }
.contact-band { background-size: cover; background-position: center bottom; padding: 70px 24px; }
.contact-panel { max-width: 640px; margin: 0 auto; background: rgba(255,255,255,.96); padding: 48px; box-shadow: 0 24px 80px rgba(0,0,0,.18); border-top: 4px solid var(--gold); }

.flash-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(18, 14, 10, .48);
  backdrop-filter: blur(4px);
}
.flash {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  padding: 34px 34px 30px;
  text-align: center;
}
.flash-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(207,166,112,.14);
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}
.flash h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.1;
}
.flash p {
  margin: 0 0 24px;
  color: #555;
}
.flash-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.flash.error { border-color: var(--orange); }
.flash.error .flash-mark {
  background: rgba(240,78,39,.12);
  color: var(--orange);
}
.scroll-top {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--orange); }
.site-footer { background: var(--footer); color: #bbb; padding: 58px 24px 24px; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr .7fr 1fr; gap: 34px; }
.footer-logo { width: 104px; margin-bottom: 18px; }
.site-footer h3 { color: #fff; margin-top: 0; text-transform: uppercase; font-size: 14px; }
.site-footer a { display: block; color: #bbb; margin-bottom: 8px; }
.mini-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.mini-gallery img { aspect-ratio: 1; object-fit: cover; }
.copyright { max-width: var(--max); margin: 34px auto 0; border-top: 1px solid #333; padding-top: 18px; font-size: 12px; }
.error-page { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 120px 24px; }

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .site-header { padding: 14px 22px; }
  .brand { width: 138px; height: 48px; }
  .brand img { width: 138px; }
  .brand .logo-light { width: 112px; }
  .split-card, .split-card.is-reversed {
    grid-template-columns: 1fr;
    padding: 40px 18px;
  }
  .split-card.is-reversed .split-image, .split-card.is-reversed .split-panel {
    grid-column: auto;
    grid-row: auto;
  }
  .split-panel, .is-reversed .split-panel {
    margin: -24px 16px 0;
    padding: 30px;
  }
  .locations, .footer-grid { grid-template-columns: 1fr; }
  .location-card-grid { grid-template-columns: 1fr; border-top: 0; }
  .location-card { border-right: 0; border-top: 1px solid rgba(207,166,112,.45); min-height: auto; }
  .location-card:last-child { border-bottom: 1px solid rgba(207,166,112,.45); }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .map-row { min-height: auto; margin-bottom: 36px; }
  .map-frame, .map-card {
    position: relative;
    width: 100%;
    inset: auto;
  }
  .map-card { top: auto; padding: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .page-caption { min-height: 58vh; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
}
