:root {
  --ink: #111719;
  --graphite: #22292c;
  --muted: #627075;
  --line: #d8e0df;
  --paper: #f4f6f2;
  --white: #ffffff;
  --green: #176b57;
  --blue: #165c8f;
  --red: #c94535;
  --gold: #d5a33d;
  --shadow: 0 24px 70px rgba(17, 23, 25, .22);
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 50px);
  color: var(--white);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 34px rgba(17,23,25,.12);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
  font-weight: 950;
}
.brand strong, .brand small { display: block; white-space: nowrap; }
.brand strong { font-size: 18px; }
.brand small {
  max-width: 190px;
  overflow: hidden;
  font-size: 12px;
  opacity: .78;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}
.nav-links a { text-decoration: none; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.lang-switch, .icon-action {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 8px;
  color: inherit;
  background: rgba(255,255,255,.12);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.site-header.scrolled .lang-switch,
.site-header.scrolled .icon-action {
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: clamp(112px, 13vw, 170px) clamp(20px, 6vw, 76px) clamp(34px, 7vw, 76px);
  color: var(--white);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(13,25,22,.96) 0%, rgba(13,25,22,.74) 48%, rgba(13,25,22,.22) 100%),
    linear-gradient(0deg, rgba(13,25,22,.45), rgba(13,25,22,.1));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-bottom: 92px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--red); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  letter-spacing: 0;
}
.hero-content p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 22px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
}
.btn.primary { color: var(--white); background: var(--red); }
.btn.secondary {
  border-color: rgba(255,255,255,.48);
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.btn.outline {
  border-color: var(--line);
  color: var(--green);
  background: var(--white);
}
.hero-panel {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 6vw, 76px);
  bottom: clamp(20px, 6vw, 54px);
  display: grid;
  width: min(460px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  background: rgba(255,255,255,.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-panel div { min-width: 0; padding: 17px; }
.hero-panel div + div { border-left: 1px solid rgba(255,255,255,.24); }
.hero-panel span, .quick-contact span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.hero-panel strong, .quick-contact strong {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--graphite);
  color: var(--white);
}
.quick-contact a {
  min-width: 0;
  padding: 22px clamp(18px, 3vw, 38px);
  text-decoration: none;
}
.quick-contact a + a { border-left: 1px solid rgba(255,255,255,.15); }

.section { padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 76px); }
.section-copy {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  margin-bottom: 38px;
}
.section-copy.narrow { display: block; width: min(860px, 100%); }
.section-copy h2, .media-card h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}
.section-copy p:not(.eyebrow), .media-card p:not(.eyebrow), .contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}
.visit-section, .proof-section, .hours-section { background: var(--white); }
.proof-section { background: #edf3ef; }
.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: 14px 16px;
  color: var(--graphite);
  background: var(--white);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.visit-tabs button.active {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}
.visit-panel {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1fr);
  gap: 30px;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 42px);
  background: var(--paper);
}
.visit-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border-radius: 8px;
  object-fit: cover;
}
.panel-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.visit-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}
.visit-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.visit-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 17px;
}
.visit-panel li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "●";
}
.proof-grid, .hours-board, .quote-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.proof-grid article, .hours-board article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}
.proof-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}
.proof-grid span, .hours-board span {
  display: block;
  margin-top: 12px;
  color: var(--graphite);
  font-weight: 850;
}
.quote-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}
blockquote {
  margin: 0;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  padding: 22px;
  color: var(--graphite);
  background: var(--white);
  font-size: 20px;
  font-weight: 850;
}
.media-section { background: var(--paper); }
.media-card {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.media-card img {
  width: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.hours-board { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hours-board strong {
  display: block;
  margin: 12px 0;
  color: var(--green);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}
.hours-board p { color: var(--muted); }
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
  background: var(--white);
}
.contact-copy { align-self: center; }
.contact-copy p {
  width: min(620px, 100%);
  margin: 18px 0 24px;
}
.map-wrap {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
.mobile-cta {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(120%);
  transition: transform .22s ease;
}
.mobile-cta.visible { transform: translateY(0); }
.mobile-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(17,23,25,.25);
}
.mobile-cta a + a { background: var(--green); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { min-height: 870px; align-items: center; }
  .hero-content { padding-bottom: 220px; }
  .hero-panel { right: 20px; left: 20px; grid-template-columns: 1fr; }
  .hero-panel div + div { border-top: 1px solid rgba(255,255,255,.24); border-left: 0; }
  .quick-contact, .proof-grid, .quote-row, .hours-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-contact a:nth-child(odd) { border-left: 0; }
  .quick-contact a:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.15); }
  .section-copy, .visit-tool, .visit-panel, .media-card, .contact-section { grid-template-columns: 1fr; }
  .visit-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-cta { display: grid; }
}

@media (max-width: 620px) {
  .site-header { padding: 10px 14px; gap: 8px; }
  .brand small { max-width: 128px; }
  .hero { min-height: 850px; padding: 94px 16px 22px; }
  .hero-content { padding-bottom: 200px; }
  h1 { max-width: 12ch; font-size: clamp(39px, 13vw, 58px); }
  .hero-content p:not(.eyebrow) { margin-top: 16px; font-size: 16px; }
  .hero-actions { margin-top: 18px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .quick-contact, .proof-grid, .quote-row, .hours-board, .visit-tabs { grid-template-columns: 1fr; }
  .quick-contact a + a, .quick-contact a:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .section { padding: 58px 16px; }
  .section-copy h2, .media-card h2, .contact-copy h2 { font-size: clamp(32px, 11vw, 46px); }
  .visit-panel { min-height: 0; padding: 18px; }
  .visit-panel img { min-height: 245px; }
  .media-card img { min-height: 240px; }
  .map-wrap, .map-wrap iframe { min-height: 360px; }
}
