:root {
  --accent: #075e67;
  --paper: #f6efe4;
  --warm: #b84532;
  --ink: #172026;
  --line: rgba(31, 28, 23, .16);
  --hero: url("assets/exterior-square-alt-wide.webp");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, Arial, sans-serif; color: var(--ink); background: var(--paper); }
a { color: inherit; }
.top { position: fixed; inset: 0 0 auto; z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 15px clamp(18px, 4vw, 54px); color: white; background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0)); }
.brand { font-family: Georgia, serif; text-decoration: none; font-size: 21px; }
.nav { display: flex; gap: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.nav a { text-decoration: none; }
.hero { min-height: 92svh; display: flex; align-items: end; padding: 120px clamp(18px, 6vw, 82px) 70px; color: white; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.76)), var(--hero) center/cover; }
.hero-inner { max-width: 790px; }
.kicker { display: inline-flex; max-width: 100%; padding: 8px 12px; border: 1px solid rgba(255,255,255,.46); border-radius: 999px; background: rgba(0,0,0,.24); font-size: 13px; line-height: 1.35; }
h1 { margin: 18px 0 14px; font-family: Georgia, serif; font-weight: 500; font-size: clamp(42px, 7vw, 78px); line-height: .98; }
h2 { margin: 0 0 14px; font-family: Georgia, serif; font-weight: 500; font-size: clamp(28px, 4vw, 46px); line-height: 1.06; }
p { line-height: 1.65; }
.hero p { max-width: 680px; font-size: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 16px; border-radius: 999px; background: var(--accent); color: white; text-decoration: none; font-weight: 800; }
.btn.alt { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.54); }
section { padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 78px); }
.grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); gap: clamp(22px, 5vw, 58px); align-items: start; }
.grid > * { min-width: 0; }
.lead { max-width: 760px; font-size: 17px; color: rgba(31, 28, 23, .72); }
.card { border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: rgba(255,255,255,.56); }
.card a { overflow-wrap: anywhere; word-break: break-word; }
.card ul { padding-left: 18px; }
dl { display: grid; grid-template-columns: 118px 1fr; gap: 12px; margin: 0; }
dt { font-weight: 900; color: var(--accent); }
dd { margin: 0; }
.menu { background: #fffaf2; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-top: 24px; }
.menu-item { min-height: 118px; border-top: 4px solid var(--accent); border-radius: 8px; padding: 18px; background: white; font-weight: 900; }
.proof li, .hours li { margin-bottom: 11px; line-height: 1.55; }
.photos { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 24px; }
.photos img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; display: block; }
.visit { background: var(--ink); color: white; }
.visit .lead { color: rgba(255,255,255,.74); }
.visit .btn { background: white; color: var(--ink); }
.map { min-height: 360px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); }
iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
footer { padding: 26px clamp(18px, 5vw, 78px) 92px; background: var(--ink); color: rgba(255,255,255,.72); }
.mobile-actions { position: fixed; z-index: 25; left: 12px; right: 12px; bottom: 12px; display: none; grid-template-columns: 1fr 1fr; gap: 8px; }
.mobile-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 999px; color: white; background: var(--accent); text-decoration: none; font-weight: 900; box-shadow: 0 14px 32px rgba(0,0,0,.18); }
@media (max-width: 760px) {
  .nav { display: none; }
  .hero { min-height: 88svh; padding: 104px 18px 62px; }
  h1 { font-size: 43px; }
  .hero p { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  dl { grid-template-columns: 1fr; gap: 5px; }
  .photos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-actions { display: grid; }
}
