:root {
  --ink: #11171b;
  --ivory: #f4f0e8;
  --paper: #f7f4ee;
  --navy: #071d27;
  --navy-deep: #04151e;
  --gold: #b69255;
  --gold-light: #d4b270;
  --line: rgba(255, 255, 255, 0.25);
  --content: 1220px;
  --gutter: clamp(24px, 6vw, 92px);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--paper);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-wrap {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px var(--gutter);
  color: #fff;
}

.brand img,
.footer-brand img {
  width: clamp(190px, 17vw, 244px);
  height: auto;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.6vw, 58px);
  font-size: 14px;
}

.primary-navigation a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.primary-navigation a:not(.nav-cta):hover {
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
}

.nav-cta {
  min-width: 142px;
  padding: 15px 22px;
  text-align: center;
  background: rgba(166, 132, 75, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: background-color 160ms ease;
}

.nav-cta:hover {
  background: var(--gold);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 41.5% 58.5%;
  min-height: clamp(680px, 63vw, 900px);
  color: #fff;
  background: #1c1b18;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(150px, 14vw, 210px) clamp(40px, 5.9vw, 92px) clamp(50px, 5vw, 76px);
  background:
    radial-gradient(circle at 78% 24%, rgba(142, 112, 71, 0.17), transparent 32%),
    linear-gradient(115deg, #24221e 0%, #191916 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -80px 0 auto;
  width: 150px;
  background: linear-gradient(90deg, rgba(25, 25, 22, 0.95), transparent);
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  max-width: 560px;
  margin: 26px 0 24px;
  font-family: var(--serif);
  font-size: clamp(52px, 4.85vw, 74px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-intro {
  max-width: 510px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 196px;
  padding: 17px 22px;
  border-radius: 3px;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.button-gold {
  color: #fff;
  background: linear-gradient(100deg, #8f7344, #a98b54);
}

.button-gold:hover {
  background: var(--gold);
}

.button span,
.text-link span {
  font-size: 22px;
  line-height: 0;
}

.hero-motto {
  position: relative;
  margin: 50px 0 0 66px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 2;
  text-transform: uppercase;
}

.hero-motto span {
  position: absolute;
  top: 9px;
  right: calc(100% + 20px);
  width: 48px;
  height: 1px;
  background: var(--gold-light);
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 17, 14, 0.12), transparent 26%);
  pointer-events: none;
}

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

.approach {
  background: var(--paper);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 160px);
  padding-block: clamp(76px, 8vw, 118px);
}

.rule-label {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rule-label::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.approach h2,
.continuity h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.approach h2 {
  margin: 22px 0 0;
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 1.07;
}

.approach-copy {
  align-self: end;
  max-width: 500px;
  padding-bottom: 4px;
  font-size: 17px;
  line-height: 1.5;
}

.approach-copy p {
  margin: 0 0 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.continuity {
  position: relative;
  min-height: clamp(390px, 42vw, 590px);
  overflow: hidden;
  color: var(--navy-deep);
}

.continuity-media,
.continuity-shade {
  position: absolute;
  inset: 0;
}

.continuity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.continuity-shade {
  background:
    linear-gradient(90deg, rgba(241, 228, 199, 0.34), transparent 48%, rgba(2, 17, 22, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 22, 28, 0.1));
}

.continuity-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  min-height: inherit;
  padding-block: clamp(48px, 5vw, 76px);
}

.continuity h2 {
  margin: 20px 0 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.98;
}

.continuity-motto {
  position: relative;
  align-self: center;
  margin: 0 0 0 60px;
  padding-left: 36px;
  color: #fff;
  border-left: 1px solid rgba(212, 178, 112, 0.85);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 2.05;
  text-transform: uppercase;
}

.continuity-motto span {
  display: block;
  width: 45px;
  height: 1px;
  margin-top: 22px;
  background: var(--gold-light);
}

.contact {
  position: relative;
  color: #fff;
  background:
    radial-gradient(ellipse at 76% 10%, rgba(59, 88, 99, 0.22), transparent 50%),
    linear-gradient(115deg, #082735, var(--navy-deep));
}

.contact::after,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(118deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%),
    linear-gradient(70deg, transparent 0 72%, rgba(255, 255, 255, 0.05) 73%, transparent 74%);
  background-size: 380px 280px, 520px 360px;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-block: clamp(54px, 6vw, 86px);
}

.rule-label-gold {
  color: var(--gold-light);
}

.contact h2 {
  margin: 20px 0 0;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.08;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 70px;
  padding-left: 50px;
  color: #fff;
  border-left: 1px solid var(--gold);
  font-size: clamp(15px, 1.35vw, 19px);
  text-decoration: none;
}

.email-link svg {
  flex: 0 0 auto;
  color: var(--gold-light);
}

.email-link span {
  overflow-wrap: anywhere;
}

.email-address {
  display: inline;
}

.email-link:hover span {
  text-decoration: underline;
  text-decoration-color: var(--gold-light);
  text-underline-offset: 5px;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 180px;
  gap: 48px;
}

.footer-brand {
  justify-self: start;
}

.copyright {
  position: relative;
  margin: 0;
  padding-left: 64px;
  font-size: 12px;
  line-height: 1.55;
}

.copyright span {
  position: absolute;
  top: 9px;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--gold-light);
}

.footer-motto {
  justify-self: end;
  margin: 0;
  padding-left: 28px;
  color: var(--gold-light);
  border-left: 1px solid var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 2.2;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 22px;
  }

  .primary-navigation {
    gap: 22px;
  }

  .nav-cta {
    min-width: 122px;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

  .hero-copy {
    padding-inline: var(--gutter) 36px;
  }

  .approach-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-block: 38px;
  }

  .copyright {
    justify-self: end;
  }

  .footer-motto {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    position: absolute;
    padding: 20px var(--gutter);
  }

  .brand img {
    width: 186px;
  }

  .menu-toggle {
    position: relative;
    z-index: 31;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    place-content: center;
    gap: 7px;
    color: #fff;
    background: transparent;
    border: 0;
  }

  .menu-toggle span:not(.sr-only) {
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 30;
    inset: 0;
    display: none;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px var(--gutter) 40px;
    color: #fff;
    background: rgba(4, 21, 30, 0.98);
    font-family: var(--serif);
    font-size: 36px;
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation .nav-cta {
    margin-top: 24px;
    padding: 18px 20px;
    font-family: var(--sans);
    font-size: 16px;
    border: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-copy {
    min-height: 650px;
    padding: 138px var(--gutter) 44px;
  }

  .hero-copy::after {
    display: none;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(48px, 14.5vw, 70px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-motto {
    margin-left: 54px;
  }

  .hero-motto span {
    width: 36px;
  }

  .hero-media {
    height: min(78vw, 440px);
  }

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

  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    gap: 48px;
    padding-block: 68px;
  }

  .approach h2 {
    font-size: clamp(39px, 10.6vw, 52px);
  }

  .approach-copy {
    font-size: 16px;
  }

  .continuity {
    min-height: 610px;
  }

  .continuity-media img {
    object-position: 58% center;
  }

  .continuity-shade {
    background: linear-gradient(180deg, rgba(246, 232, 201, 0.55), transparent 48%, rgba(2, 17, 22, 0.55));
  }

  .continuity-content {
    grid-template-columns: 1fr;
  }

  .continuity h2 {
    font-size: clamp(48px, 13vw, 62px);
  }

  .continuity-motto {
    align-self: end;
    justify-self: end;
  }

  .contact-grid {
    gap: 42px;
    padding-block: 62px;
  }

  .contact h2 br {
    display: none;
  }

  .email-link {
    min-height: 58px;
    padding-left: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 46px;
  }

  .footer-brand,
  .copyright,
  .footer-motto {
    justify-self: start;
  }

  .copyright {
    padding-left: 54px;
  }

  .footer-motto {
    grid-column: auto;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
