:root {
  --ink: #15110f;
  --ink-soft: #2b2521;
  --rice: #f6efe3;
  --paper: #fffaf1;
  --cream: #eadcc5;
  --clay: #a33a2d;
  --clay-deep: #76241d;
  --nori: #33443a;
  --sage: #9eac8a;
  --gold: #d8ae68;
  --line: rgba(21, 17, 15, 0.14);
  --shadow: 0 24px 70px rgba(21, 17, 15, 0.22);
  --shadow-soft: 0 16px 48px rgba(21, 17, 15, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(246, 239, 227, 0.98), rgba(255, 250, 241, 1) 36%),
    var(--rice);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans", "Noto Sans CJK SC", "Hiragino Sans", "Yu Gothic", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 10px;
  color: var(--paper);
  background: rgba(21, 17, 15, 0.68);
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: grid;
  gap: 1px;
  min-width: 138px;
  padding: 4px 6px;
}

.wordmark span {
  font-weight: 780;
  line-height: 1;
}

.wordmark small {
  color: rgba(255, 250, 241, 0.68);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.lang-button {
  min-height: 36px;
  border-radius: 7px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 250, 241, 0.78);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.lang-button:hover {
  color: var(--paper);
  background: rgba(255, 250, 241, 0.11);
  transform: translateY(-1px);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.07);
}

.lang-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  min-width: 42px;
  font-size: 0.82rem;
}

.lang-button.is-active {
  color: var(--ink);
  background: var(--paper);
}

.section-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 132px max(18px, calc((100% - 1120px) / 2)) 44px;
  color: var(--paper);
  overflow: hidden;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: var(--ink);
  transform: scale(1.02);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  animation: imageBreath 9s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 17, 15, 0.88), rgba(21, 17, 15, 0.44) 47%, rgba(21, 17, 15, 0.15)),
    linear-gradient(0deg, rgba(21, 17, 15, 0.74), rgba(21, 17, 15, 0.08) 54%, rgba(21, 17, 15, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f7cb94;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.96;
  font-weight: 680;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  line-height: 1.02;
  font-weight: 650;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary,
.button-submit {
  color: var(--paper);
  background: var(--clay);
  box-shadow: 0 14px 36px rgba(118, 36, 29, 0.28);
}

.button-primary:hover,
.button-submit:hover {
  background: var(--clay-deep);
  box-shadow: 0 18px 42px rgba(118, 36, 29, 0.34);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(255, 250, 241, 0.34);
  background: rgba(255, 250, 241, 0.08);
}

.button-ghost.light {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 241, 0.66);
}

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(820px, 100%);
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 18px;
  background: rgba(21, 17, 15, 0.34);
}

.hero-facts span,
.info-line span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.78rem;
}

.hero-facts strong,
.info-line strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.35;
}

.atmosphere,
.gallery,
.request-section,
.details,
.confirmation {
  padding: 92px 0 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.request-copy p,
.details-main p,
.quiet-note {
  color: rgba(43, 37, 33, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading.compact {
  width: min(680px, 100%);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
}

.feature-image,
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.feature-image img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.feature-image:hover img,
.image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.feature-image.tall {
  min-height: 620px;
}

figcaption {
  padding: 14px 16px 16px;
  color: rgba(255, 250, 241, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
  background: rgba(21, 17, 15, 0.94);
}

.fact-panel {
  align-self: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(238, 225, 205, 0.75)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.panel-kicker {
  margin-bottom: 18px;
  color: var(--nori);
  font-weight: 800;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.chips span,
.manual-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(51, 68, 58, 0.22);
  border-radius: 7px;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: rgba(255, 250, 241, 0.72);
  font-size: 0.9rem;
  line-height: 1.25;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.image-card {
  min-height: 380px;
  grid-column: span 4;
}

.image-card.wide {
  grid-column: span 8;
}

.image-card.menu-shot {
  grid-column: span 6;
  min-height: 420px;
  background: #f8f4ec;
}

.image-card.menu-shot img {
  object-fit: contain;
  padding: 10px;
  background: #f7f4ef;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.request-copy {
  position: sticky;
  top: 112px;
  padding: 4px 0;
}

.manual-alert {
  margin-top: 24px;
  padding: 16px;
  border-left: 4px solid var(--clay);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(216, 174, 104, 0.22);
  line-height: 1.55;
}

.request-form {
  padding: 24px;
  border: 1px solid rgba(51, 68, 58, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(240, 231, 216, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.mode-field {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin: 0 0 18px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 17, 15, 0.04);
}

.mode-field legend {
  grid-column: 1 / -1;
  padding: 0 4px 6px;
  color: rgba(43, 37, 33, 0.62);
  font-size: 0.78rem;
  font-weight: 780;
}

.mode-field label {
  position: relative;
}

.mode-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mode-field span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 12px;
  color: rgba(43, 37, 33, 0.72);
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.mode-field input:checked + span {
  color: var(--paper);
  background: var(--nori);
  box-shadow: 0 10px 26px rgba(51, 68, 58, 0.22);
}

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

.request-form label {
  display: grid;
  gap: 7px;
}

.request-form label span {
  color: rgba(43, 37, 33, 0.72);
  font-size: 0.84rem;
  font-weight: 760;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 17, 15, 0.16);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.request-form input {
  min-height: 46px;
}

.request-form textarea {
  resize: vertical;
  min-height: 112px;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(163, 58, 45, 0.72);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(163, 58, 45, 0.1);
}

.full-span {
  grid-column: 1 / -1;
}

.button-submit {
  width: 100%;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--nori);
  font-weight: 780;
  line-height: 1.45;
}

.form-status.is-error {
  color: var(--clay-deep);
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 20px;
  align-items: stretch;
}

.details-main,
.info-stack {
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.details-main {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(21, 17, 15, 0.94), rgba(51, 68, 58, 0.9)),
    var(--ink);
}

.details-main .eyebrow {
  color: #f5c98d;
}

.details-main p {
  color: rgba(255, 250, 241, 0.74);
}

.info-stack {
  display: grid;
  gap: 1px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.info-line {
  padding: 22px;
  background: rgba(255, 250, 241, 0.9);
}

.info-line span {
  color: rgba(43, 37, 33, 0.58);
}

.info-line strong {
  color: var(--ink);
}

.manual-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.confirmation {
  padding-bottom: 90px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: rgba(43, 37, 33, 0.64);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 780;
  color: var(--clay-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 780ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 330ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageBreath {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: 118px;
  }

  .hero-facts,
  .atmosphere-grid,
  .request-section,
  .details {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }

  .image-card,
  .image-card.wide,
  .image-card.menu-shot {
    grid-column: span 12;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    gap: 8px;
  }

  .wordmark {
    min-width: 108px;
  }

  .wordmark span {
    font-size: 0.9rem;
  }

  .language-switch {
    gap: 2px;
  }

  .lang-button {
    min-width: 34px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 87svh;
    padding: 108px 14px 26px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(21, 17, 15, 0.58), rgba(21, 17, 15, 0.26) 36%, rgba(21, 17, 15, 0.86)),
      linear-gradient(90deg, rgba(21, 17, 15, 0.7), rgba(21, 17, 15, 0.22));
  }

  .hero-content {
    padding-bottom: 20px;
  }

  h1 {
    font-size: 2.62rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 0.98rem;
    line-height: 1.58;
  }

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

  .hero-facts {
    gap: 1px;
  }

  .hero-facts div {
    padding: 14px;
  }

  .atmosphere,
  .gallery,
  .request-section,
  .details,
  .confirmation {
    padding-top: 68px;
  }

  .feature-image.tall,
  .image-card,
  .image-card.wide,
  .image-card.menu-shot {
    min-height: 0;
  }

  .feature-image.tall img {
    aspect-ratio: 4 / 5;
  }

  .image-card img {
    aspect-ratio: 4 / 3;
  }

  .image-card.menu-shot img {
    aspect-ratio: 16 / 11;
  }

  .fact-panel,
  .request-form,
  .details-main {
    padding: 20px;
  }

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

  .mode-field {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
