:root {
  --black: #030404;
  --white: #ffffff;
  --paper: #e6ded2;
  --teal: #0085CA;
  --red: #C8102E;
  --orange: #C8102E;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 62px);
  background: rgba(0, 0, 0, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 250px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--teal);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.brand strong,
h1,
.site-nav,
.button,
.call-button,
.principles-section h2,
.site-footer nav {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 38px;
  line-height: 0.86;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  gap: clamp(10px, 1.7vw, 24px);
  align-items: center;
  font-size: 15px;
}

.site-nav a,
.call-button,
.site-footer a {
  text-decoration: none;
}

.nav-item {
  position: relative;
}

.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 210px;
  padding: 12px 0;
  background: rgba(3, 4, 4, 0.96);
  border: 1px solid rgba(53, 184, 196, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-menu a {
  padding: 10px 16px;
  white-space: nowrap;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid var(--orange);
  font-size: 20px;
}

.call-button img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(96%) saturate(3432%) hue-rotate(345deg) brightness(95%) contrast(93%);
}

.why-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #030404;
}

.why-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 68%;
}

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

.why-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.98) 34%, rgba(0, 0, 0, 0.42) 67%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.34));
}

.why-hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 48px));
  padding: 134px 0 58px;
  margin-left: clamp(24px, 4.6vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(68px, 8.4vw, 104px);
  font-weight: 400;
  line-height: 0.96;
}

.hero-brush-line {
  display: block;
  width: 430px;
  max-width: 92%;
  height: 20px;
  margin: 16px 0 22px;
  background: url("instinct-brush-line.png") left center / 100% 100% no-repeat;
}

.why-hero-copy p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.heritage-section {
  display: grid;
  grid-template-columns: 0.8fr 0.85fr 1fr 1fr;
  gap: 36px;
  padding: 34px clamp(24px, 5vw, 60px);
  color: #15120f;
  background: var(--paper);
}

.heritage-media {
  align-self: end;
  margin: 62px 0 -34px -60px;
}

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

.heritage-section h2,
.partners-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

.heritage-section p,
.partners-copy p {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.52;
}

.heritage-section strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.red-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin: 14px 0 0;
  background: var(--orange);
}

.red-rule.left {
  margin-top: 22px;
}

.principles-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at center, #151818, #050606 70%);
}

.principles-section article {
  min-height: 290px;
  padding: 38px clamp(24px, 5vw, 70px);
  border-right: 1px solid var(--line);
}

.principles-section article:last-child {
  border-right: 0;
}

.principles-section h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.principles-section p {
  margin: 0 0 14px;
  color: #f1f4f4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.5;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: 54px;
  padding: clamp(46px, 6vw, 72px) clamp(24px, 6vw, 72px);
  color: var(--white);
  background: #080909;
  border-bottom: 1px solid var(--line);
}

.experience-section .eyebrow {
  color: var(--orange);
}

.experience-section h2 {
  max-width: 430px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: none;
}

.experience-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.experience-grid article {
  padding: 24px 28px;
  background: #111313;
}

.experience-grid h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.experience-grid p {
  margin: 0;
  color: #e8eeee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

.origin-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(44px, 6vw, 76px) clamp(24px, 8vw, 100px);
  color: #15120f;
  background: #f7f3eb;
  border-top: 1px solid var(--paper-line);
}

.origin-section h2 {
  max-width: 460px;
  margin: 0;
  color: #15120f;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 400;
  line-height: 0.96;
}

.origin-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.origin-copy p {
  margin: 0;
  color: #202526;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(360px, 1.05fr);
  background: var(--paper);
  color: #15120f;
}

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

.partners-copy {
  padding: clamp(42px, 5vw, 68px) clamp(24px, 7vw, 72px);
}

.partners-copy a {
  display: inline-block;
  margin-top: 12px;
  color: #9a2318;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  text-decoration: none;
}

.partners-copy a::after {
  content: " ->";
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(24px, 5vw, 60px);
  background: #030404;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  min-width: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    flex-wrap: wrap;
  }

  .why-hero-copy {
    padding-top: 72px;
    margin-left: 24px;
  }

  .why-hero-media {
    width: 100%;
    opacity: 0.5;
  }

  .heritage-section,
  .principles-section,
  .experience-section,
  .origin-section,
  .experience-grid,
  .partners-section {
    grid-template-columns: 1fr;
  }

  .heritage-media {
    margin: 0;
  }

  .principles-section article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .call-button {
    width: 100%;
  }
}
