:root {
  --ink: #12231d;
  --muted: #5c675f;
  --paper: #f7f3eb;
  --paper-strong: #fffaf0;
  --sage: #d6e0d0;
  --clay: #b45f36;
  --clay-dark: #88412a;
  --gold: #d7a647;
  --line: rgba(18, 35, 29, 0.15);
  --shadow: 0 24px 70px rgba(18, 35, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 46px);
  background: rgba(247, 243, 235, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.93rem;
}

nav a,
.footer-actions a,
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.primary-action {
  background: var(--clay);
  color: #fffdf8;
  box-shadow: 0 12px 28px rgba(180, 95, 54, 0.25);
}

.nav-cta {
  padding: 0 18px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(22px, 4vw, 50px);
  padding: 120px clamp(18px, 5vw, 70px) 46px;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 21, 17, 0.82), rgba(10, 21, 17, 0.48) 47%, rgba(10, 21, 17, 0.12)),
    linear-gradient(0deg, rgba(10, 21, 17, 0.52), transparent 40%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-content {
  max-width: 820px;
  color: #fffdf8;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c16b;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 8.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  min-width: 172px;
  padding: 0 24px;
}

.secondary-action {
  border: 1px solid rgba(255, 253, 248, 0.62);
  background: rgba(255, 253, 248, 0.12);
  color: #fffdf8;
  backdrop-filter: blur(12px);
}

.visit-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.visit-panel div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.visit-panel div:last-child {
  border-bottom: 0;
}

.visit-panel span,
.quick-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-panel strong {
  display: block;
  margin: 5px 0;
  font-size: 1.3rem;
}

.visit-panel small {
  color: var(--muted);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--paper-strong);
}

.quick-strip a {
  min-width: 0;
  padding: 24px clamp(16px, 4vw, 54px);
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.section {
  padding: clamp(72px, 10vw, 126px) clamp(18px, 5vw, 70px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.feature-list p,
.note-card small,
.info-grid p,
.map-copy p,
.site-footer p {
  color: var(--muted);
}

.menu-notes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
  background: #e9dfcf;
}

.note-card {
  min-height: 350px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.note-card.dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  color: #fffdf8;
}

.note-card.dark p {
  color: #f0c16b;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(30px, 5vw, 70px);
}

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

.info-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(18, 35, 29, 0.09);
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  margin: 0;
  font-weight: 800;
  white-space: nowrap;
}

.muted {
  font-size: 0.93rem;
}

.gallery-section {
  padding: clamp(70px, 10vw, 126px) clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: #fffdf8;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.gallery-heading h2 {
  max-width: 740px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #000;
  cursor: zoom-in;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item:hover img {
  opacity: 0.88;
  transform: scale(1.04);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  background: var(--paper-strong);
}

.map-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 82px) clamp(18px, 5vw, 70px);
}

.map-copy p {
  max-width: 520px;
}

.compact {
  min-width: 138px;
  margin-top: 12px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 70px) 94px;
  background: var(--ink);
  color: #fffdf8;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.72);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.mobile-bar {
  position: fixed;
  z-index: 30;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 999px;
  background: rgba(18, 35, 29, 0.94);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.mobile-bar a {
  padding: 13px 8px;
  color: #fffdf8;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 253, 248, 0.16);
}

.lightbox {
  width: min(94vw, 1040px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

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

  nav {
    display: none;
  }

  .hero,
  .intro-grid,
  .info-section,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .visit-panel {
    max-width: 560px;
  }

  .menu-notes,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .note-card {
    min-height: 260px;
  }

  .gallery-heading {
    display: block;
  }

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

  .map-section iframe {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding: 11px 14px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 104px 16px 28px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 21, 17, 0.9), rgba(10, 21, 17, 0.62) 54%, rgba(10, 21, 17, 0.2)),
      linear-gradient(90deg, rgba(10, 21, 17, 0.55), rgba(10, 21, 17, 0.18));
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 5.4rem);
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .visit-panel div {
    padding: 16px;
  }

  .quick-strip {
    grid-template-columns: 1fr;
  }

  .quick-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .gallery-section {
    padding-inline: 16px;
  }

  .feature-list article {
    grid-template-columns: 44px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    display: block;
  }

  .footer-actions {
    margin-top: 18px;
  }

  .mobile-bar {
    display: grid;
  }
}
