:root {
  --ink: #17191b;
  --muted: #5c6873;
  --paper: #f3f0e8;
  --white: #fffdf8;
  --brick: #a7342c;
  --teal: #075f62;
  --gold: #e2aa3e;
  --harbor: #1c3342;
  --line: rgba(23, 25, 27, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p, a, strong, span { overflow-wrap: anywhere; letter-spacing: 0; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 58px;
  color: var(--white);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 12px 30px rgba(23, 25, 27, .08);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brick);
  font-weight: 950;
}
.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}
.brand small {
  max-width: 230px;
  overflow: hidden;
  font-size: 12px;
  opacity: .78;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 850;
}
.nav-links a { text-decoration: none; }
.lang-switch {
  min-width: 48px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, .1);
  font-weight: 900;
  cursor: pointer;
}
.site-header.scrolled .lang-switch {
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--harbor);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 20, .9), rgba(10, 16, 20, .5) 48%, rgba(10, 16, 20, .18)),
    linear-gradient(0deg, rgba(10, 16, 20, .55), rgba(10, 16, 20, .05) 54%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 150px 58px 210px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--brick); }
h1 {
  max-width: 770px;
  margin: 0;
  font-size: 82px;
  line-height: .96;
  letter-spacing: 0;
}
.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, .84);
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 950;
  text-decoration: none;
}
.btn.primary { color: var(--white); background: var(--brick); }
.btn.secondary { color: var(--white); background: var(--teal); }
.btn.glass {
  border-color: rgba(255, 255, 255, .36);
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}
.btn.outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.hero-panel {
  position: absolute;
  z-index: 3;
  right: 58px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, calc(100% - 116px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  background: rgba(255, 253, 248, .14);
  backdrop-filter: blur(18px);
}
.hero-panel div,
.quick-facts a {
  padding: 18px;
  text-decoration: none;
}
.hero-panel span,
.quick-facts span {
  display: block;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-panel strong,
.quick-facts strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--harbor);
  color: var(--white);
}
.quick-facts a { border-right: 1px solid rgba(255, 255, 255, .13); }

.section { padding: 112px 58px; }
.section-copy {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 38px;
}
.section-copy.compact { max-width: 1050px; }
.section-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0;
}
.section-copy p:not(.eyebrow),
.contact-copy p,
.source-note p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.visit-section { background: var(--white); }
.visit-tool {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}
.visit-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}
.visit-tabs button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.visit-tabs button.active { color: var(--white); background: var(--teal); }
.visit-panel {
  display: grid;
  grid-template-columns: minmax(260px, .46fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
  background: #f7f5ef;
}
.visit-panel img {
  width: 100%;
  height: 470px;
  border-radius: 8px;
  object-fit: cover;
}
.panel-kicker {
  margin: 0 0 10px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.visit-panel h3 {
  margin: 0;
  font-size: 44px;
  line-height: 1.04;
}
.visit-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}
.visit-panel li {
  position: relative;
  padding-left: 22px;
}
.visit-panel li::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brick);
}
.proof-section { background: #e7edf0; }
.proof-grid,
.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.proof-grid article,
.hours-grid article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}
.proof-grid strong {
  display: block;
  color: var(--brick);
  font-size: 58px;
  line-height: .94;
}
.proof-grid span,
.hours-grid span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 850;
}
.review-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
blockquote {
  margin: 0;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.45;
}
.hours-section {
  color: var(--white);
  background: var(--ink);
}
.hours-section .section-copy p:not(.eyebrow) { color: rgba(255, 253, 248, .74); }
.hours-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hours-grid article {
  min-height: 132px;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
}
.hours-grid span { color: rgba(255, 253, 248, .68); }
.hours-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
}
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #d7dde0;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(23, 25, 27, .74);
  font-weight: 900;
}
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 58px;
  background: var(--white);
}
.contact-copy { align-self: center; }
.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}
.contact-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #f7f5ef;
}
.contact-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-list dd {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
}
.contact-list a { text-decoration: none; }
.map-wrap {
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  background: #d7dde0;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}
.source-note {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f7f5ef;
}
.source-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.mobile-cta {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity .2s ease, transform .22s ease;
}
.mobile-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--brick);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(18, 22, 29, .25);
}
.mobile-cta a + a { background: var(--teal); }

@media (max-width: 980px) {
  .site-header { padding: 12px 18px; }
  .nav-links { display: none; }
  .hero-copy { padding: 120px 18px 260px; }
  h1 { font-size: 58px; }
  .hero-panel {
    right: 18px;
    left: 18px;
    width: auto;
  }
  .quick-facts,
  .proof-grid,
  .review-strip,
  .gallery-grid,
  .contact-section,
  .section-copy,
  .visit-tool,
  .visit-panel,
  .hours-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .wide { grid-column: auto; }
  .section { padding: 78px 18px; }
  .section-copy { gap: 18px; }
  .contact-section { gap: 28px; }
}

@media (max-width: 640px) {
  .brand small { max-width: 148px; }
  .hero { min-height: 880px; }
  .hero-copy { padding: 104px 16px 24px; }
  h1 {
    font-size: 42px;
    line-height: 1.02;
  }
  .hero-copy p:not(.eyebrow),
  .section-copy p:not(.eyebrow),
  .contact-copy p,
  .source-note p {
    font-size: 16px;
  }
  .hero-actions { display: none; }
  .contact-list div { grid-template-columns: 1fr; }
  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: 20px 16px 0;
  }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts a { min-height: 104px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .section { padding: 62px 16px; }
  .section-copy { margin-bottom: 26px; }
  .section-copy h2,
  .contact-copy h2 {
    font-size: 38px;
    line-height: 1.04;
  }
  .visit-panel { padding: 14px; }
  .visit-panel img { height: 330px; }
  .visit-panel h3 {
    font-size: 29px;
    line-height: 1.05;
  }
  .proof-grid article { min-height: 136px; }
  .hours-grid strong { font-size: 28px; }
  .gallery-grid figure { min-height: 315px; }
  .map-wrap,
  .map-wrap iframe { min-height: 420px; }
  .mobile-cta { display: grid; }
}
