:root {
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --ink: #211d18;
  --soft: #70675d;
  --line: #e9dfcf;
  --gold: #b89659;
  --olive: #434a39;
  --wine: #8f3b2e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(24, 22, 19, .72), rgba(24, 22, 19, .12));
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.seal {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.brand strong {
  display: block;
  max-width: min(52vw, 520px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.08;
}

.brand span span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

.nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav a { text-decoration: none; }
.nav .pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 5vw, 76px) 72px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-img);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 17, 14, .62), rgba(18, 17, 14, .22) 56%, rgba(18, 17, 14, .36)),
    linear-gradient(0deg, rgba(18, 17, 14, .56), rgba(18, 17, 14, .04) 50%);
}

.hero-copy {
  width: min(660px, 100%);
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3d899;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
}

.hero p {
  width: min(560px, 100%);
  margin: 0 0 26px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .03em;
}

.btn.light {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.08);
  color: #fff;
}

section {
  padding: 78px clamp(20px, 5vw, 76px);
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 44px;
  align-items: center;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.12;
}

.lead {
  margin: 0;
  max-width: 720px;
  color: var(--soft);
  font-size: 18px;
}

.photo-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #efe5d7;
  aspect-ratio: 4 / 3;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cream {
  background: #fffaf1;
  border-block: 1px solid var(--line);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.menu-card {
  min-height: 118px;
  padding: 18px;
  background: rgba(255,255,255,.54);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-card span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-card strong {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.notes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.note {
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--soft);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.gallery .photo-frame {
  aspect-ratio: 16 / 10;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: 8px;
  background: var(--olive);
  color: #fff;
}

.booking p { margin: 6px 0 0; color: rgba(255,255,255,.78); }
.booking .btn { background: #fff; color: var(--ink); border-color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-card {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-decoration: none;
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 13px;
}

.contact-card strong {
  overflow-wrap: anywhere;
}

footer {
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 13px;
}

.mobile-actions {
  position: fixed;
  z-index: 30;
  display: none;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 8px;
  padding: 8px;
  background: rgba(251,247,239,.96);
  border-top: 1px solid var(--line);
}

.mobile-actions a {
  flex: 1;
  padding: 12px 8px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .topbar {
    min-height: 68px;
    padding: 12px 16px;
    background: rgba(28, 25, 20, .76);
    backdrop-filter: blur(10px);
  }
  .seal { width: 38px; height: 38px; font-size: 13px; }
  .brand strong { max-width: 54vw; font-size: 17px; }
  .brand span span { font-size: 9px; }
  .nav a:not(.pill) { display: none; }
  .nav .pill { padding: 10px 13px; font-size: 11px; }
  .hero {
    min-height: 92svh;
    padding: 102px 20px 76px;
  }
  .hero::before { background-position: center center; }
  .eyebrow { font-size: 11px; }
  h1 { max-width: 340px; font-size: 31px; }
  .hero p { max-width: 340px; font-size: 16px; }
  section { padding: 56px 20px; }
  .intro-grid,
  .booking,
  .contact-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .notes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .photo-frame { aspect-ratio: 4 / 3; }
  .mobile-actions { display: flex; }
  footer { padding-bottom: 78px; }
}
