:root {
  --ink: #111827;
  --graphite: #1d252f;
  --muted: #66717d;
  --line: #d9e1e8;
  --paper: #f5f7f8;
  --white: #ffffff;
  --blue: #004289;
  --blue-dark: #062b54;
  --red: #d71920;
  --amber: #e6a93b;
  --green: #23735d;
  --shadow: 0 24px 70px rgba(17, 24, 39, .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, 24, 39, .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: 48px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 7px;
  color: var(--white);
  background: var(--red);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0;
}

.site-header.scrolled .brand-mark {
  color: var(--white);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  max-width: 180px;
  overflow: hidden;
  color: currentColor;
  font-size: 12px;
  opacity: .78;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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: 850;
  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(6, 24, 45, .94) 0%, rgba(6, 24, 45, .70) 44%, rgba(6, 24, 45, .25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-bottom: 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  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: 14ch;
  font-size: clamp(42px, 6vw, 78px);
  line-height: .94;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.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: 850;
  text-decoration: none;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.btn.outline {
  border-color: var(--line);
  color: var(--blue-dark);
  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, .30);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
  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(--blue-dark);
  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(820px, 100%);
}

.section-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid article {
  min-height: 152px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.proof-grid span {
  display: block;
  margin-top: 12px;
  color: var(--graphite);
  font-weight: 800;
}

.services-section {
  background: #edf2f6;
}

.service-tool {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.service-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
}

.service-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;
}

.service-tabs button.active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 28px;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
}

.panel-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-panel h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}

.service-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 17px;
}

.service-panel li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "●";
}

.service-panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  height: clamp(230px, 26vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border-radius: 7px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(6, 24, 45, .72);
  font-size: 13px;
  font-weight: 850;
}

.hours-section {
  background: var(--paper);
}

.hours-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hours-board article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.hours-board span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hours-board strong {
  display: block;
  margin: 12px 0;
  color: var(--blue-dark);
  font-size: clamp(30px, 4vw, 50px);
  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 h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1;
}

.contact-copy p:not(.eyebrow) {
  width: min(620px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.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, 24, 39, .25);
}

.mobile-cta a + a {
  background: var(--blue);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 860px;
    align-items: center;
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .hero-panel {
    left: 20px;
    right: 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,
  .gallery-grid,
  .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,
  .service-tool,
  .service-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-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: 116px;
  }

  .brand-mark {
    width: 43px;
    height: 36px;
  }

  .lang-switch,
  .icon-action {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 830px;
    padding: 96px 16px 22px;
  }

  .hero-content {
    padding-bottom: 230px;
  }

  h1 {
    max-width: 13ch;
    font-size: clamp(39px, 13vw, 56px);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-contact,
  .proof-grid,
  .gallery-grid,
  .hours-board,
  .service-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,
  .contact-copy h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .service-panel {
    min-height: 0;
    padding: 18px;
  }

  .service-panel img {
    min-height: 240px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}
