:root {
  --orange: #ed6328;
  --orange-dark: #d84e16;
  --graphite: #2e3032;
  --grey: #595958;
  --mid-grey: #8b8d8e;
  --light-grey: #e4e6e7;
  --paper: #f5f5f3;
  --white: #fff;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(89, 89, 88, .14);
  background: rgba(245, 245, 243, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--grey);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-layout {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: 72px 92px;
}

.eyebrow,
.section-number,
.contact-label {
  margin: 0 0 28px;
  color: var(--orange);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--graphite);
  font-size: clamp(3.7rem, 8vw, 7.2rem);
  font-weight: 750;
  letter-spacing: -.07em;
  line-height: .91;
}

.hero h1 span {
  color: var(--orange);
}

.intro {
  max-width: 580px;
  margin: 34px 0 0;
  color: var(--grey);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  padding: 0 28px;
  color: var(--white);
  background: var(--graphite);
  transition: background .2s ease, transform .2s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange);
  transform: translateY(-2px);
}

.button-text {
  gap: 10px;
  color: var(--grey);
}

.button-text span {
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.button-text:hover span,
.button-text:focus-visible span {
  transform: translateX(5px);
}

.brand-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.logo-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: clamp(42px, 7vw, 78px);
  border: 1px solid rgba(89, 89, 88, .12);
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 30px 80px rgba(46, 48, 50, .11);
  transform: rotate(3deg);
}

.logo-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 8px;
  content: "";
  background: var(--orange);
}

.logo-panel img {
  width: 100%;
  transform: rotate(-3deg);
}

.shape {
  position: absolute;
  display: block;
}

.shape-one {
  top: 8px;
  right: -86px;
  width: 260px;
  height: 260px;
  border: 46px solid var(--light-grey);
  transform: rotate(24deg);
}

.shape-two {
  bottom: 12px;
  left: -72px;
  width: 178px;
  height: 178px;
  background: var(--orange);
  opacity: .96;
  transform: rotate(18deg);
}

.hero-rule {
  height: 10px;
  background: linear-gradient(90deg, var(--orange) 0 31%, var(--graphite) 31% 34%, var(--light-grey) 34% 100%);
}

.section {
  padding-block: clamp(90px, 13vw, 170px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .72fr);
  justify-content: space-between;
  gap: clamp(48px, 12vw, 160px);
}

.section h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.section-copy {
  align-self: end;
  padding-bottom: 4px;
  border-left: 3px solid var(--orange);
  padding-left: clamp(24px, 4vw, 42px);
}

.section-copy p {
  margin: 0;
  color: var(--grey);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.section-copy p + p {
  margin-top: 22px;
}

.contact {
  padding-block: 0;
  color: var(--white);
  background: var(--orange);
}

.contact-card {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(48px, 10vw, 140px);
  padding-block: clamp(74px, 10vw, 120px);
}

.contact .section-number,
.contact .contact-label {
  color: rgba(255, 255, 255, .76);
}

.contact h2 {
  color: var(--white);
}

.contact-details {
  padding: 40px 0 40px clamp(26px, 4vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, .42);
}

.contact-label {
  margin-bottom: 12px;
}

.phone {
  color: var(--white);
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  font-weight: 750;
  letter-spacing: -.05em;
  line-height: 1;
  text-decoration: none;
}

.phone:hover,
.phone:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.contact-note {
  max-width: 800px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: .93rem;
}

.site-footer {
  color: var(--mid-grey);
  background: var(--graphite);
}

.footer-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner img {
  width: 140px;
  filter: grayscale(1) brightness(2.4);
  opacity: .82;
}

.footer-inner p {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .05em;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-link {
  color: var(--white);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--orange);
}

.legal-hero {
  padding-block: clamp(80px, 11vw, 140px);
  overflow: hidden;
}

.legal-heading {
  position: relative;
}

.legal-heading::after {
  position: absolute;
  top: 5%;
  right: -8%;
  width: clamp(180px, 30vw, 420px);
  aspect-ratio: 1;
  border: clamp(30px, 5vw, 70px) solid var(--light-grey);
  content: "";
  opacity: .75;
  pointer-events: none;
  transform: rotate(24deg);
}

.legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(3.6rem, 8vw, 7.1rem);
  font-weight: 750;
  letter-spacing: -.07em;
  line-height: .91;
}

.legal-hero h1 span {
  color: var(--orange);
}

.legal-intro {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 34px 0 0;
  color: var(--grey);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.legal-updated {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--mid-grey);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-rule {
  height: 10px;
  background: linear-gradient(90deg, var(--orange) 0 31%, var(--graphite) 31% 34%, var(--light-grey) 34% 100%);
}

.legal-content {
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(50px, 10vw, 140px);
}

.legal-nav {
  position: sticky;
  top: 126px;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}

.legal-nav-title {
  margin: 0 0 16px;
  color: var(--graphite);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 5px 0;
  color: var(--grey);
  font-size: .88rem;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.legal-copy a:hover,
.legal-copy a:focus-visible {
  color: var(--orange);
}

.legal-nav .legal-home-link {
  margin-top: 22px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-copy > section {
  scroll-margin-top: 120px;
}

.legal-copy > section + section {
  margin-top: clamp(80px, 10vw, 120px);
  padding-top: clamp(70px, 9vw, 100px);
  border-top: 1px solid var(--light-grey);
}

.legal-kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-copy h2 {
  margin: 0 0 38px;
  color: var(--graphite);
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .98;
}

.legal-copy h3 {
  margin: 46px 0 14px;
  color: var(--graphite);
  font-size: 1.22rem;
  line-height: 1.35;
}

.legal-copy p,
.legal-copy li {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-copy p {
  margin: 0 0 18px;
}

.legal-copy ul {
  margin: 8px 0 24px;
  padding-left: 24px;
}

.legal-copy li + li {
  margin-top: 7px;
}

.legal-copy a {
  color: var(--orange-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-summary {
  padding: clamp(26px, 4vw, 40px);
  border-left: 4px solid var(--orange);
  background: var(--paper);
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-contact {
  padding: clamp(34px, 6vw, 58px);
  color: var(--white);
  border: 0 !important;
  background: var(--orange);
}

.legal-copy .legal-contact h2,
.legal-copy .legal-contact .legal-kicker,
.legal-copy .legal-contact address {
  color: var(--white);
}

.legal-copy .legal-contact .legal-kicker {
  opacity: .76;
}

.legal-copy .legal-contact h2 {
  margin-bottom: 28px;
}

.legal-contact address {
  font-size: 1.08rem;
  font-style: normal;
  line-height: 1.75;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.contact :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--white);
}

@media (max-width: 860px) {
  .hero-layout,
  .section-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-top: 64px;
  }

  .brand-stage {
    min-height: 390px;
  }

  .logo-panel {
    width: min(84vw, 390px);
  }

  .section-copy {
    max-width: 620px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-details {
    padding-top: 34px;
    padding-bottom: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 24px;
  }

  .legal-nav-title,
  .legal-nav .legal-home-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 142px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: .67rem;
    letter-spacing: .11em;
  }

  .hero-layout {
    min-height: 0;
    gap: 40px;
    padding-block: 58px 62px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

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

  .button-primary {
    width: 100%;
  }

  .brand-stage {
    min-height: 310px;
  }

  .logo-panel {
    padding: 46px;
  }

  .shape-one {
    width: 180px;
    height: 180px;
    border-width: 32px;
  }

  .shape-two {
    width: 120px;
    height: 120px;
  }

  .section {
    padding-block: 84px;
  }

  .section-grid,
  .contact-card {
    gap: 52px;
  }

  .section h2 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .section-copy {
    padding-left: 22px;
  }

  .contact-card {
    padding-block: 78px;
  }

  .contact-details {
    padding-left: 22px;
  }

  .phone {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 34px;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .legal-heading::after {
    top: 36%;
    right: -28%;
  }

  .legal-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-nav-title,
  .legal-nav .legal-home-link {
    grid-column: auto;
  }

  .legal-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .legal-copy h3 {
    margin-top: 38px;
  }

  .legal-copy p,
  .legal-copy li {
    font-size: .96rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
