body {
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 237, 224, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.brand-word__logo {
  width: 168px;
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(11, 31, 51, 0.15);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px 22px;
  background: rgba(244, 237, 224, 0.98);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

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

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lang-switch {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(11, 31, 51, 0.18);
}

.lang-switch a {
  min-width: 44px;
  justify-content: center;
  padding: 0 12px;
}

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

.hero-section {
  position: relative;
  padding: 28px 0 56px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 12vw, 6rem);
  font-style: italic;
}

.hero-subtitle {
  margin-top: 18px;
  max-width: 44ch;
  font-size: 16px;
  color: rgba(11, 31, 51, 0.82);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .btn {
  width: 100%;
}

.hero-meta {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 31, 51, 0.12);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(11, 31, 51, 0.68);
}

.hero-visual {
  min-height: 360px;
  background: linear-gradient(135deg, var(--stone-200), var(--stone-100));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mark {
  position: absolute;
  right: -100px;
  bottom: -70px;
  width: 260px;
  color: rgba(185, 148, 96, 0.16);
  pointer-events: none;
}

.media-placeholder {
  min-height: 100%;
  display: flex;
  align-items: end;
  padding: 20px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(11, 31, 51, 0.16) 100%),
    repeating-linear-gradient(135deg, var(--stone-200), var(--stone-200) 18px, var(--stone-100) 18px, var(--stone-100) 36px);
}

.media-placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-band,
.section {
  padding: 56px 0;
}

.intro-band {
  background: var(--stone-50);
  border-block: 1px solid rgba(11, 31, 51, 0.08);
}

.intro-band__inner {
  text-align: center;
}

.intro-band h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 8vw, 3.6rem);
  font-style: italic;
}

.intro-band p {
  max-width: 42rem;
  margin: 24px auto 0;
  color: rgba(11, 31, 51, 0.8);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 8vw, 4.4rem);
  font-style: italic;
}

.space-grid,
.menu-grid,
.reservation-grid,
.visit-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.space-card {
  display: grid;
  gap: 16px;
}

.space-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone-200);
}

.space-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold-600);
}

.space-copy h3 {
  margin-top: 6px;
  font-size: 2rem;
  font-style: italic;
}

.space-copy p {
  margin-top: 10px;
  color: rgba(11, 31, 51, 0.78);
}

.section--dark {
  background: var(--navy-800);
  color: var(--stone-100);
}

.section--dark .eyebrow {
  color: var(--gold-400);
}

.menu-group {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.12);
}

.menu-group h3 {
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 237, 224, 0.08);
}

.menu-item strong {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-400);
}

.menu-note {
  margin-top: 22px;
  font-style: italic;
  color: rgba(244, 237, 224, 0.72);
}

.reservation-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--navy-800);
  color: var(--stone-100);
}

.reservation-panel h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-style: italic;
}

.reservation-form-wrap {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(11, 31, 51, 0.1);
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 31, 51, 0.62);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 31, 51, 0.22);
  background: transparent;
  color: var(--ink);
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field-submit {
  margin-top: 4px;
}

.field-submit .btn {
  width: 100%;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin-bottom: 18px;
  padding: 16px;
  border-left: 3px solid var(--gold-500);
  background: rgba(11, 31, 51, 0.04);
}

.form-notice h3 {
  font-size: 1.6rem;
  font-style: italic;
}

.form-notice p {
  margin-top: 8px;
}

.form-notice--success {
  border-left-color: #2f8f56;
  background: rgba(47, 143, 86, 0.12);
}

.form-notice--error {
  border-left-color: #ad3b3b;
  background: rgba(173, 59, 59, 0.12);
}

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

.visit-map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-700), var(--navy-900));
}

.map-layer {
  position: absolute;
  inset: 0;
}

.map-layer--grid {
  background-image:
    linear-gradient(rgba(203, 168, 117, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 168, 117, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.map-label,
.map-compass {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-100);
}

.map-label {
  top: 22px;
  left: 20px;
}

.map-compass {
  bottom: 20px;
  left: 20px;
  opacity: 0.8;
}

.visit-info {
  display: grid;
  gap: 16px;
}

.visit-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(11, 31, 51, 0.1);
}

.visit-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.visit-card p + p {
  margin-top: 8px;
}

.visit-card .btn {
  margin-top: 18px;
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: calc(100vw - 32px);
  padding: 12px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.whatsapp-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.whatsapp-fab__icon img {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.whatsapp-fab__label {
  font-size: 15px;
  font-weight: 700;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px dotted rgba(11, 31, 51, 0.15);
  font-size: 14px;
}

.hours-table td:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 12px;
}

.hours-table .is-today td {
  font-weight: 700;
}

.site-footer {
  padding: 44px 0 120px;
  background: var(--navy-900);
  color: var(--stone-100);
}

.footer-grid > div {
  display: grid;
  gap: 10px;
}

.footer-logo {
  width: 150px;
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 18px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(244, 237, 224, 0.12);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.66);
  text-align: center;
  line-height: 1.8;
}

.footer-bottom span {
  display: block;
}

.footer-bottom__credit a {
  display: inline-block;
}

.legal-shell {
  padding: 32px 0 56px;
}

.legal-card {
  max-width: 780px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(11, 31, 51, 0.1);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-card h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-style: italic;
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 1.8rem;
}

.legal-card p {
  margin-top: 12px;
}

@media (min-width: 577px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
  }

  .section-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

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

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

@media (min-width: 768px) {
  .hero-section {
    padding: 40px 0 72px;
  }

  .hero-grid,
  .reservation-grid,
  .visit-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

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

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

  .site-footer {
    padding-bottom: 108px;
  }

}

@media (min-width: 1024px) {
  .site-footer {
    padding-bottom: 96px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .nav-cta {
    margin-left: 8px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 48%);
    align-items: center;
    gap: 48px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-meta {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .section,
  .intro-band {
    padding: 88px 0;
  }

  .visit-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}
