:root {
  --cream: #f5eee5;
  --paper: #fffdf8;
  --ink: #101b27;
  --muted: #6f706e;
  --navy: #0f1c2a;
  --gold: #c59a5f;
  --line: rgba(16, 27, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, system-ui, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
  border-top: 28px solid #e4e1db;
  box-shadow: 0 8px 30px rgba(16, 27, 39, 0.06);
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.topbar-item {
  display: grid;
  gap: 3px;
  font-size: 0.78rem;
}

.topbar-item span {
  color: var(--muted);
}

.topbar-item.right {
  text-align: right;
}

.brand {
  display: grid;
  place-items: center;
  gap: 4px;
  min-width: 260px;
  text-align: center;
}

.brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.navrow {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  min-height: 64px;
  padding: 0 clamp(16px, 4vw, 52px);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
}

.site-nav a {
  position: relative;
  padding: 22px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.search-button,
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.search-button span {
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-button span::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  background: currentColor;
  rotate: 45deg;
}

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 8px;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 32px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

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

.hero-img {
  object-fit: cover;
  filter: blur(1px);
  scale: 1.015;
}

.hero-overlay {
  background: rgba(16, 27, 39, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 80px 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.6vw, 6.4rem);
}

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

h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 25px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-gold {
  background: #e5c18f;
  color: var(--ink);
}

.btn-white {
  width: 100%;
  background: #fff;
  color: var(--navy);
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.hours-booking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(74px, 9vw, 130px) clamp(20px, 9vw, 150px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("assets/new-interior.png") center / cover;
}

.hours {
  align-self: center;
}

.hours h2,
.menu-intro h2,
.story h2,
.contact h2 {
  color: var(--ink);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 36px;
}

.hours-grid p,
.story-copy p,
.menu-panel em,
.contact-info p,
.note {
  color: var(--muted);
}

.hours-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.hours-grid li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-grid strong {
  color: var(--ink);
  text-align: right;
}

.note {
  margin: 28px 0 0;
  font-size: 0.9rem;
}

.booking-card {
  align-self: start;
  display: grid;
  gap: 15px;
  padding: 42px 38px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 24px 70px rgba(16, 27, 39, 0.18);
}

.booking-card h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}

.booking-card p:not(.eyebrow) {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 0.9rem;
}

.booking-card label {
  display: grid;
  gap: 7px;
}

.booking-card label span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  padding: 12px 13px;
  background: transparent;
  color: inherit;
  font: inherit;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.story {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(74px, 9vw, 130px) clamp(20px, 10vw, 170px);
  background: var(--cream);
  overflow: hidden;
  text-align: center;
}

.story-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.story-side {
  position: absolute;
  width: clamp(160px, 24vw, 340px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 22px 60px rgba(16, 27, 39, 0.16);
}

.story-side.left {
  left: -72px;
  top: 46px;
}

.story-side.right {
  right: -84px;
  bottom: 44px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 0 clamp(20px, 7vw, 110px) clamp(74px, 9vw, 120px);
  background: var(--cream);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.menu-section {
  padding: clamp(74px, 9vw, 130px) clamp(20px, 7vw, 110px);
  background: #fff;
}

.menu-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.menu-tabs button {
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-tabs button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.menu-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 54px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-panel.active {
  display: grid;
}

.menu-panel article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.menu-panel span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.menu-panel em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 0.9rem;
}

.menu-panel strong {
  color: var(--gold);
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  background: var(--cream);
}

.contact-info {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(54px, 8vw, 110px) clamp(24px, 6vw, 80px);
}

.contact-info a {
  font-weight: 700;
}

.contact iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 28px 20px;
  background: var(--navy);
  color: #fff;
  font-size: 0.86rem;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 960px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .topbar-item.right {
    text-align: center;
  }

  .navrow {
    grid-template-columns: 44px 1fr 44px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 18px;
    background: #fff;
    box-shadow: 0 20px 36px rgba(16, 27, 39, 0.12);
  }

  .site-nav.is-open {
    display: grid;
    gap: 5px;
  }

  .site-nav a {
    padding: 12px 0;
    text-align: center;
  }

  .hours-booking,
  .contact {
    grid-template-columns: 1fr;
  }

  .booking-card {
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }

  .menu-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    border-top-width: 18px;
  }

  .brand {
    min-width: 0;
  }

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

  .topbar-item {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hours-grid,
  .form-row,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .story {
    text-align: left;
  }

  .story-side {
    display: none;
  }

  .booking-card {
    padding: 30px 22px;
  }

  .menu-panel article {
    grid-template-columns: 1fr;
  }

  .contact iframe {
    min-height: 390px;
  }
}
