:root {
  --navy: #061b36;
  --navy-deep: #031327;
  --navy-light: #0b294b;
  --gold: #bf810a;
  --steel: #727374;
  --white: #ffffff;
  --muted: #a9b2bd;
  --line: rgba(255, 255, 255, 0.14);
  color-scheme: dark;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(28px, 4.5vw, 72px) clamp(22px, 6vw, 96px) 28px;
  background:
    radial-gradient(circle at 76% 46%, rgba(20, 56, 89, 0.42), transparent 33%),
    linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 46%, #08213f 100%);
}

.site-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 38%;
  border-left: 1px solid rgba(191, 129, 10, 0.25);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018));
  transform: skewX(-10deg) translateX(10%);
  transform-origin: bottom;
}

.structural-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) 0),
    linear-gradient(0deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.05) 0);
  background-size: 12.5vw 100%, 100% 18vh;
  mask-image: linear-gradient(90deg, transparent 0%, black 50%, black 100%);
}

.site-header,
.site-footer,
.hero {
  width: min(100%, 1440px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  display: block;
  width: clamp(210px, 25vw, 350px);
  height: auto;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #d8dde3;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status-mark {
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(191, 129, 10, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(64px, 10vw, 180px);
  padding-block: clamp(72px, 11vh, 150px) clamp(64px, 10vh, 126px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.1vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.intro {
  max-width: 690px;
  margin: clamp(34px, 5vh, 56px) 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: #c5ccd4;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.contact-panel {
  align-self: end;
  border-top: 1px solid rgba(191, 129, 10, 0.8);
}

.contact-heading,
.contact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-heading {
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-index,
.contact-label {
  color: var(--steel);
}

.contact-row {
  text-decoration: none;
  transition: color 180ms ease, padding-left 180ms ease;
}

.contact-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.contact-row:hover,
.contact-row:focus-visible {
  padding-left: 8px;
  color: #e5ad41;
}

.contact-row:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #8f9aa7;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-shell {
    padding-inline: clamp(24px, 6vw, 48px);
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 64px;
    padding-block: 78px 72px;
  }

  .contact-panel {
    width: min(100%, 520px);
  }

  .structural-lines {
    background-size: 25vw 100%, 100% 18vh;
  }
}

@media (max-width: 560px) {
  .site-shell {
    min-height: 100svh;
    padding: 24px 20px 20px;
  }

  .site-shell::before {
    width: 48%;
  }

  .site-header {
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 22px;
  }

  .brand-logo {
    width: clamp(180px, 58vw, 230px);
  }

  .status {
    gap: 8px;
    padding-top: 7px;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .status-mark {
    width: 5px;
    height: 5px;
    box-shadow: 0 0 0 3px rgba(191, 129, 10, 0.14);
  }

  .hero {
    gap: 52px;
    padding-block: clamp(58px, 9vh, 80px) 56px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.59rem;
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: clamp(2.72rem, 14.2vw, 4.25rem);
    line-height: 1;
  }

  .desktop-break {
    display: none;
  }

  .intro {
    margin-top: 30px;
    padding-left: 18px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .contact-heading,
  .contact-row {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding-block: 17px;
  }

  .email-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact-value {
    overflow-wrap: anywhere;
    font-size: 0.87rem;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    line-height: 1.55;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-row {
    transition: none;
  }
}
