:root {
  --ink: #17202a;
  --muted: #5d6977;
  --line: #d9e1e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --steel: #263746;
  --teal: #0f766e;
  --gold: #b9822e;
  --navy: #101820;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active,
.inner-page .site-header {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 32, 42, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-position-top img {
  object-position: center 38%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.58) 48%, rgba(16, 24, 32, 0.18)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.58), rgba(16, 24, 32, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(830px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: #0b625b;
}

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--white);
}

.trust-band strong {
  display: block;
  color: var(--steel);
  font-size: 1.05rem;
}

.trust-band span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section,
.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section h2,
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.06);
}

.service-panel img {
  height: 290px;
  object-fit: cover;
}

.service-panel:nth-child(2) img {
  object-position: center center;
}

.service-content {
  padding: 28px;
}

.service-content span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-content h3,
.facility-proof h3,
.capability-grid h3,
.steps h3 {
  margin: 10px 0 10px;
  color: var(--navy);
  line-height: 1.18;
}

.service-content h3 {
  font-size: 1.55rem;
}

.service-content p,
.facility-proof p,
.capability-grid p,
.steps p,
.cta-copy p,
.site-footer p {
  color: var(--muted);
}

.service-content ul {
  padding-left: 20px;
  margin: 18px 0 0;
  color: var(--steel);
}

.service-content li + li {
  margin-top: 8px;
}

.facility-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.facility-proof img {
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
}

.facility-proof span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facility-proof h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.facility-proof p {
  margin: 0;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.capability-grid article {
  min-height: 240px;
  padding: 28px;
  background: var(--white);
}

.capability-grid h3 {
  font-size: 1.25rem;
}

.capability-grid p {
  margin-bottom: 0;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.process-media img {
  height: 620px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.steps div {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.steps h3,
.steps p {
  margin-top: 0;
}

.steps p {
  margin-bottom: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfd8e2;
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.2);
  border-color: var(--teal);
}

.contact-form .button {
  width: fit-content;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.resources-section {
  padding-top: 34px;
}

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

.resource-card {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16, 24, 32, 0.05);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.1);
}

.resource-card span,
.content-sidebar h2 {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1.18;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.inner-page {
  background: var(--paper);
}

.inner-page .site-header {
  position: sticky;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 64px;
}

.page-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.page-hero img {
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 96px;
}

.content-main {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-main h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main p,
.number-list {
  color: var(--muted);
  font-size: 1.02rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 24px 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-grid div {
  min-height: 180px;
  padding: 24px;
  background: #fbfcfd;
}

.detail-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  line-height: 1.18;
}

.detail-grid p {
  margin: 0;
}

.number-list {
  display: grid;
  gap: 14px;
  padding-left: 22px;
}

.content-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-sidebar h2 {
  margin: 0 0 4px;
}

.content-sidebar a {
  padding: 12px 0;
  color: var(--steel);
  font-weight: 750;
  border-top: 1px solid var(--line);
}

.content-sidebar a:hover {
  color: var(--teal);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(16, 24, 32, 0.74), rgba(16, 24, 32, 0.74)),
    url("assets/sports-exterior.jpg") center / cover;
}

.success-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.success-brand {
  margin-bottom: 38px;
}

.success-panel h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.success-panel p:not(.section-kicker) {
  margin: 18px 0 28px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 24, 32, 0.88), rgba(16, 24, 32, 0.5)),
      linear-gradient(0deg, rgba(16, 24, 32, 0.68), rgba(16, 24, 32, 0.05) 44%);
  }

  .trust-band,
  .intro-grid,
  .service-layout,
  .facility-proof,
  .capability-grid,
  .resource-grid,
  .page-hero,
  .content-section,
  .process-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .capability-grid article {
    min-height: auto;
  }

  .process-media img {
    height: 430px;
  }

  .facility-proof img {
    height: 280px;
  }

  .page-hero {
    padding-top: 48px;
  }

  .page-hero img {
    height: 360px;
  }

  .content-sidebar {
    position: static;
  }
}

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

  .brand-text {
    display: none;
  }

  .hero-content {
    width: min(100% - 32px, 830px);
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .button,
  .contact-form .button {
    width: 100%;
  }

  .section,
  .cta-section,
  .page-hero,
  .content-section {
    width: min(100% - 32px, 1180px);
    padding: 68px 0;
  }

  .page-hero {
    padding-bottom: 34px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .trust-band div {
    padding: 22px 18px;
  }

  .service-content,
  .facility-proof,
  .resource-card,
  .content-main,
  .content-sidebar,
  .capability-grid article {
    padding: 22px;
  }

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

  .steps div {
    grid-template-columns: 1fr;
  }

  .steps span {
    margin-bottom: 12px;
  }

  .site-footer {
    display: grid;
  }
}
