:root {
  --site-bg: #f5efe7;
  --site-soft: #fbf7f2;
  --site-paper: #ffffff;
  --site-text: #2f241d;
  --site-muted: #6c5b50;
  --site-accent: #ef432f;
  --site-accent-deep: #ba2e1f;
  --site-line: rgba(75, 48, 35, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--site-text);
  background: var(--site-bg);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--site-line);
  backdrop-filter: blur(12px);
}
.site-nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 65px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-link img { width: min(300px, 54vw); height: auto; display: block; }
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--site-text);
  position: relative;
}
.nav-toggle-label span::before { position: absolute; top: -7px; }
.nav-toggle-label span::after { position: absolute; top: 7px; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  min-height: 65px;
  padding: 0 13px;
  color: #343434;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--site-accent-deep); }
.nav-cta a {
  min-height: 42px;
  margin-left: 8px;
  border-radius: 8px;
  background: var(--site-accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 67, 47, 0.22);
}
.nav-cta a:hover { color: #fff; background: var(--site-accent-deep); }
main { min-height: calc(100vh - 65px); }
.static-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
}
.static-panel {
  border: 1px solid rgba(75, 48, 35, 0.08);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.62));
  box-shadow: 0 24px 60px rgba(66, 41, 28, 0.12);
  overflow: hidden;
}
.booking-panel {
  padding: clamp(26px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  align-items: center;
}
.static-eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(75, 48, 35, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.booking-panel h1,
.location-title {
  margin: 0;
  color: var(--site-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
}
.booking-panel p,
.location-card p,
.distance-list { color: var(--site-muted); font-size: 19px; line-height: 1.7; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid rgba(47, 36, 29, 0.14);
  border-radius: 8px;
  color: var(--site-text);
  background: rgba(255,255,255,0.72);
  font-weight: 800;
  text-decoration: none;
}
.button.primary { background: var(--site-accent); color: #fff; border-color: transparent; }
.booking-image img,
.location-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.booking-image { overflow: hidden; border-radius: 24px; aspect-ratio: 4 / 3; }
.location-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; padding: clamp(22px, 4vw, 36px); align-items: stretch; }
.location-card {
  display: grid;
  gap: 22px;
  align-content: start;
  text-align: center;
}
.location-image { overflow: hidden; border-radius: 24px; aspect-ratio: 16 / 8; background: #fff; }
.location-map iframe { width: 100%; min-height: 520px; border: 0; border-radius: 24px; display: block; }
.distance-block { padding: 0 clamp(22px, 4vw, 36px) clamp(22px, 4vw, 36px); }
.distance-list { columns: 2; margin: 18px 0 0; padding-left: 20px; }
.site-footer {
  padding: 28px 16px 34px;
  background: #f8f4ee;
  border-top: 1px solid var(--site-line);
  text-align: center;
  color: var(--site-muted);
  font-size: 14px;
  line-height: 1.7;
}
.site-footer strong { color: var(--site-text); }
.footer-title {
  display: block;
  margin-bottom: 0;
  color: var(--site-text);
  font-size: 15px;
}
.footer-lines {
  width: min(980px, 100%);
  margin: 0 auto;
}
.footer-credit {
  margin: 0 auto;
  color: var(--site-text);
  font-size: 13px;
}
.footer-credit a {
  color: var(--site-accent-deep);
  font-weight: 700;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }
@media (max-width: 820px) {
  .site-nav { min-height: 64px; flex-wrap: wrap; }
  .nav-toggle-label { display: flex; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-links a { min-height: 48px; justify-content: center; padding: 0 10px; }
  .nav-cta a { margin-left: 0; }
  .booking-panel,
  .location-grid { grid-template-columns: 1fr; }
  .distance-list { columns: 1; }
  .location-map iframe { min-height: 390px; }
}
