:root {
  --navy: #071b38;
  --navy-2: #0d2b55;
  --orange: #f47a22;
  --orange-2: #ffb15a;
  --green: #36b56f;
  --green-2: #9de7b7;
  --ink: #102033;
  --muted: #5a6878;
  --paper: #f6f8f5;
  --white: #ffffff;
  --line: rgba(16, 32, 51, 0.14);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: rgba(7, 27, 56, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  margin-top: 2px;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.text-link:hover,
.site-footer a:hover {
  color: var(--orange-2);
}

.header-cta,
.button,
.contact-form button,
.calendar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: var(--navy);
  background: var(--green-2);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 140px clamp(20px, 6vw, 76px) 72px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background-image: url("assets/hero-av-room.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 56, 0.96) 0%, rgba(7, 27, 56, 0.84) 36%, rgba(7, 27, 56, 0.26) 78%),
    linear-gradient(180deg, rgba(7, 27, 56, 0.25), rgba(7, 27, 56, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, 100%);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  padding: 0 22px;
}

.hero-actions .button {
  min-width: 220px;
}

.button.primary {
  color: var(--navy);
  background: var(--orange);
}

.button.job {
  color: var(--navy);
  background: var(--green-2);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--navy);
  border-color: var(--line);
  background: rgba(7, 27, 56, 0.06);
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 64px);
  bottom: 42px;
  width: min(330px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 27, 56, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.hero-panel p {
  margin: 0 0 18px;
  color: var(--orange-2);
  font-weight: 900;
}

.meter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.meter-row strong {
  color: var(--white);
}

.meter {
  height: 8px;
  margin: 8px 0 16px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--orange));
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
}

.signal-grid span {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.16);
}

.signal-grid span:nth-child(2n),
.signal-grid span:nth-child(7) {
  background: var(--green);
}

.signal-grid span:nth-child(3n) {
  background: var(--orange);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: var(--white);
}

.trust-strip div {
  min-height: 118px;
  padding: 26px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--orange-2);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 76px);
}

.page-hero {
  display: grid;
  gap: 24px;
  min-height: 520px;
  align-content: center;
  padding: 150px clamp(20px, 6vw, 76px) 76px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 27, 56, 0.97), rgba(13, 43, 85, 0.9)),
    var(--navy);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.58;
}

.page-hero.contact-page {
  color: var(--ink);
  background: var(--paper);
}

.page-hero.contact-page p:not(.eyebrow) {
  color: var(--muted);
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.feature-links article {
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
}

.feature-links h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading .eyebrow,
.systems-copy .eyebrow,
.contact-band .eyebrow,
.contact-footer .eyebrow {
  color: var(--green);
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-2);
}

.service-grid p,
.systems-copy p,
.timeline p,
.contact-band p {
  color: var(--muted);
  line-height: 1.65;
}

.systems {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 8vw, 96px);
  align-items: center;
  background: var(--white);
}

.systems-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--navy-2);
  font-weight: 900;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 900;
}

.mini-button.orange {
  background: var(--orange);
}

.mini-button.green {
  background: var(--green-2);
}

.mini-button:hover {
  filter: brightness(1.05);
}

.system-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  background: var(--navy);
}

.system-board div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.system-board span {
  display: block;
  width: 28px;
  height: 7px;
  margin-bottom: 32px;
  border-radius: 99px;
  background: var(--green);
}

.system-board div:nth-child(2n) span {
  background: var(--orange);
}

.process {
  background: #eef3ed;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.timeline li {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--orange);
  font-weight: 950;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 7vw, 84px);
  padding: clamp(70px, 10vw, 122px) clamp(20px, 6vw, 76px);
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(7, 27, 56, 0.96), rgba(13, 43, 85, 0.96)),
    var(--navy);
}

.contact-band.booking-page {
  min-height: calc(100vh - 76px);
  padding-top: 150px;
}

.contact-band h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.contact-band h2 {
  max-width: 780px;
}

.contact-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  border: 0;
  color: var(--navy);
  background: var(--orange);
  cursor: pointer;
  font: inherit;
}

.calendar-link {
  display: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.calendar-link.is-visible {
  display: inline-flex;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green-2);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.74);
  background: #041126;
}

.contact-footer {
  padding: clamp(56px, 8vw, 88px) clamp(20px, 6vw, 76px);
  background: var(--white);
}

.contact-footer h2 {
  max-width: 760px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 300px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 27, 56, 0.96), rgba(7, 27, 56, 0.7)),
      linear-gradient(180deg, rgba(7, 27, 56, 0.2), rgba(7, 27, 56, 0.9));
  }

  .trust-strip,
  .section-heading,
  .systems,
  .timeline,
  .contact-band,
  .form-row,
  .feature-links {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 13px 16px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 112px 18px 292px;
  }

  h1 {
    font-size: clamp(3.25rem, 19vw, 5rem);
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 28px;
    width: auto;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .system-board {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid article,
  .timeline li {
    min-height: auto;
  }

  .icon,
  .timeline span {
    margin-bottom: 32px;
  }

  .site-footer {
    flex-direction: column;
  }
}
