:root {
  --navy: #071b3a;
  --navy-2: #0c2b5a;
  --red: #b31f2d;
  --red-dark: #8f1622;
  --white: #ffffff;
  --cream: #f7f4ee;
  --ink: #152238;
  --muted: #5e6a7d;
  --gold: #c7a557;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  text-rendering: optimizeLegibility;
}

body,
button {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.splash {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 27, 58, 0) 0%, rgba(7, 27, 58, 0.08) 100%),
    var(--cream);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("img/photo-00004.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 17, 36, 0.94) 0%, rgba(7, 27, 58, 0.82) 42%, rgba(7, 27, 58, 0.36) 100%),
    linear-gradient(180deg, rgba(5, 17, 36, 0.48) 0%, rgba(5, 17, 36, 0.12) 48%, rgba(5, 17, 36, 0.82) 100%);
}

.site-header {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  padding: 3px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.hero__content {
  align-self: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 86px;
  color: var(--white);
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #f4dfad;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--red);
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.lede {
  max-width: 650px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.contact-button:focus-visible {
  outline: 3px solid rgba(244, 223, 173, 0.9);
  outline-offset: 4px;
}

.statement {
  position: relative;
  margin-top: -38px;
  padding: 0 20px 56px;
}

.statement__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: stretch;
  gap: 0;
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 27, 58, 0.22);
}

.statement__inner > p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 42px 48px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.34;
}

.statement__image {
  min-height: 260px;
  border-left: 1px solid rgba(7, 27, 58, 0.12);
  background: var(--navy);
}

.statement__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

@media (max-width: 760px) {
  .hero {
    min-height: 80vh;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 17, 36, 0.9) 0%, rgba(7, 27, 58, 0.78) 54%, rgba(5, 17, 36, 0.9) 100%),
      linear-gradient(90deg, rgba(5, 17, 36, 0.78), rgba(5, 17, 36, 0.44));
  }

  .site-header,
  .hero__content {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 20px 0;
  }

  .brand {
    font-size: 0.72rem;
  }

  .hero__content {
    padding: 34px 0 84px;
  }

  .lede {
    margin: 22px 0 28px;
  }

  .statement {
    margin-top: -28px;
    padding-inline: 14px;
  }

  .statement__inner {
    display: block;
  }

  .statement__inner > p {
    display: block;
    padding: 30px 24px;
  }

  .statement__image {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(7, 27, 58, 0.12);
  }

  .statement__image img {
    height: auto;
    min-height: 0;
  }
}
