:root {
  --accent: #00616a;
  --ink: #152025;
  --paper: #f7f3ea;
  --cream: #fffaf2;
  --muted: #e9ded0;
  --line: rgba(28, 26, 23, .16);
  --hero-image: url("assets/exterior-square-alt-wide.webp");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a { color: inherit; }
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 44px);
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.54), rgba(0,0,0,0));
}
.brand {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 2px 20px rgba(0,0,0,.36);
}
.nav { display: flex; gap: 8px; }
.nav a {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,.12);
}
.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 6vw, 76px) 70px;
  color: white;
  background-image:
    radial-gradient(circle at 75% 15%, rgba(255,255,255,.15), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.38) 45%, rgba(0,0,0,.78)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero-content { max-width: 760px; }
.eyebrow {
  display: inline-flex;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.12);
  font-size: 13px;
  overflow-wrap: anywhere;
}
h1 {
  margin: 18px 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(0,0,0,.45);
}
.hero p, .lead {
  max-width: 690px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}
.btn.ghost {
  border-color: rgba(255,255,255,.68);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
section { padding: clamp(54px, 8vw, 92px) clamp(18px, 6vw, 76px); }
.facts {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(24px, 5vw, 58px);
  background: var(--paper);
}
h2 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}
.fact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(24, 34, 27, .08);
}
dl { display: grid; grid-template-columns: 112px 1fr; gap: 10px 15px; margin: 0; }
dt { color: rgba(28,26,23,.62); font-weight: 800; }
dd { margin: 0; }
.menu {
  background: var(--ink);
  color: white;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.18);
  margin-top: 28px;
}
.menu-item {
  min-height: 148px;
  padding: 22px;
  display: flex;
  align-items: end;
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.08;
}
.proof {
  background: var(--cream);
}
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 5vw, 52px);
}
.proof ul, .hours {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
}
.gallery {
  background: #fffaf3;
}
.photo-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 252px;
  gap: 12px;
  margin-top: 26px;
}
.photo-grid figure { margin: 0; overflow: hidden; border-radius: 8px; background: var(--muted); }
.photo-grid figure:first-child { grid-row: span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.visit {
  display: grid;
  grid-template-columns: minmax(290px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: stretch;
}
.visit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--cream);
}
.map-wrap { min-height: 430px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }
footer {
  padding: 30px clamp(18px, 6vw, 76px) 96px;
  background: var(--ink);
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.mobile-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 20;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(23, 33, 29, .86);
  backdrop-filter: blur(18px);
}
.mobile-actions a { min-height: 44px; display: grid; place-items: center; border-radius: 8px; background: var(--accent); color: white; text-decoration: none; font-weight: 800; }
.mobile-actions a:last-child { background: white; color: var(--accent); }
@media (max-width: 860px) {
  body { padding-bottom: 82px; }
  .nav a:not(:last-child) { display: none; }
  .hero { min-height: 88svh; padding-bottom: 52px; }
  .facts, .proof-grid, .visit { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 188px; }
  .photo-grid figure:first-child { grid-column: span 2; grid-row: span 1; }
  .mobile-actions { display: grid; }
}
@media (max-width: 520px) {
  .topbar { padding: 12px 14px; }
  .brand { font-size: 20px; }
  h1 { font-size: clamp(40px, 13vw, 64px); }
  section { padding-left: 16px; padding-right: 16px; }
  dl { grid-template-columns: 86px 1fr; }
  .menu-grid, .photo-grid { grid-template-columns: 1fr; }
  .photo-grid figure:first-child { grid-column: auto; }
}
