:root {
  --burgundy: #781c2a;
  --burgundy-dark: #55131d;
  --charcoal: #202326;
  --charcoal-deep: #17191b;
  --paper: #fffdf9;
  --warm-white: #f6f2eb;
  --stone: #d8d0c5;
  --muted: #6f706f;
  --gold: #bb955b;
  --white: #ffffff;
  --max-width: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 42px), var(--max-width));
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(32, 35, 38, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 420px;
  max-width: 36vw;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
}

/* TYPE */

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  letter-spacing: -0.045em;
  line-height: 1.01;
}

h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

/* HERO */

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at 79% 22%,
      rgba(120, 28, 42, 0.46),
      transparent 33%
    ),
    linear-gradient(
      115deg,
      #202326 0%,
      #1c1f21 65%,
      #2a1b1f 100%
    );
  color: var(--white);
}

.hero-inner {
  max-width: 930px;
  padding-block: 110px;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* BUTTONS */

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease;
}

.button:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button--light {
  background: var(--white);
  color: var(--charcoal);
}

.button--light:hover {
  background: var(--warm-white);
}

/* SECTIONS */

.section {
  padding-block: 105px;
}

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

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--burgundy {
  background: var(--burgundy-dark);
  color: var(--white);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.section--dark .section-heading p:last-child,
.section--burgundy .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 34px;
  border: 1px solid var(--stone);
  background: var(--paper);
}

.card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--burgundy);
  font-family: var(--serif);
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.dark-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.prose {
  max-width: 800px;
}

.prose p {
  margin: 0 0 24px;
}

.prose h2 {
  margin: 55px 0 20px;
  font-size: 2.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.statement {
  padding: 50px;
  background: var(--burgundy);
  color: var(--white);
}

.statement p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.2;
}

.principle {
  padding: 29px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.principle:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.principle p {
  max-width: 750px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

/* PAGE HERO */

.page-hero {
  padding-block: 125px 95px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(120, 28, 42, 0.34),
      transparent 31%
    ),
    var(--charcoal);
  color: var(--white);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero .lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.17rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "—";
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-form {
  padding: 40px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(20, 22, 24, 0.11);
}

.form-field {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px;
  border: 1px solid #b9b2a9;
  background: var(--white);
  font: inherit;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.contact-note {
  padding: 20px;
  border-left: 3px solid var(--burgundy);
  background: rgba(120, 28, 42, 0.06);
}

/* FOOTER */

.site-footer {
  padding-block: 58px;
  background: var(--charcoal-deep);
  color: rgba(255, 255, 255, 0.68);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-name {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.footer-tagline {
  margin-top: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

/* TABLET */

@media (max-width: 1050px) {
  .brand img {
    width: 350px;
    max-width: 34vw;
  }

  .site-nav {
    gap: 21px;
  }
}

/* MOBILE */

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

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

  .brand img {
    width: 290px;
    max-width: 70vw;
    max-height: 74px;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 25px 22px 32px;
    background: var(--charcoal);
  }

  .site-nav--open {
    display: flex;
  }

  .grid--2,
  .grid--3,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-layout {
    gap: 45px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

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

  .brand img {
    width: 245px;
    max-width: 72vw;
    max-height: 65px;
  }

  .site-nav {
    top: 82px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    padding-block: 78px;
  }

  .section {
    padding-block: 75px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .card,
  .statement,
  .contact-form {
    padding: 27px;
  }
}