:root {
  --ink: #161719;
  --muted: #60666f;
  --paper: #f7f4ef;
  --line: #ddd7cf;
  --blue: #123c94;
  --blue-dark: #09245f;
  --red: #bd2131;
  --brick: #8c4631;
  --gold: #d69b32;
  --teal: #147b78;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  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;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: rgba(9, 26, 55, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.nav a,
.header-call {
  transition:
    color 160ms ease,
    background 160ms ease;
}

.nav a:hover {
  color: var(--white);
}

.header-call {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.header-call:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111827;
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: 0.98;
  transform: scale(1.12);
  transform-origin: 74% 44%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 26%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0) 78%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, calc(100% - 36px));
  padding: 0 clamp(18px, 4vw, 54px) clamp(68px, 10vh, 116px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6.2vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.24);
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0;
}

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

.button.primary:hover {
  background: #981625;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.quick-info div {
  min-height: 96px;
  padding: 22px clamp(18px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.visit h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.service-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.06);
}

.service-grid h3 {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 1.25rem;
}

.service-grid p,
.visit p {
  color: var(--muted);
  font-size: 1rem;
}

.work {
  background: #171b23;
  color: var(--white);
}

.work .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.source-note {
  max-width: 720px;
  margin: -16px 0 26px;
  color: rgba(255, 255, 255, 0.68);
}

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

.gallery figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #232a35;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.reviews {
  background: var(--white);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-grid a {
  min-height: 196px;
  display: block;
  padding: clamp(20px, 3vw, 30px);
  border-left: 5px solid var(--blue);
  background: #f7f4ef;
}

.review-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.review-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.visit {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(9, 36, 95, 0.92), rgba(20, 123, 120, 0.92)),
    var(--teal);
  color: var(--white);
}

.visit-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}

.visit p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.visit .button.primary {
  background: var(--white);
  color: var(--teal);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84vh;
    align-items: end;
  }

  .hero-image {
    object-position: center top;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 24%, rgba(0, 0, 0, 0) 54%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 72%, rgba(0, 0, 0, 0.34) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 0 14px 44px;
  }

  .quick-info,
  .service-grid,
  .review-grid,
  .visit-inner {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery figure {
    grid-column: span 1;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding: 12px 14px;
  }

  h1 {
    font-size: 2.08rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .gallery {
    gap: 6px;
  }
}
