@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/bodoni-moda-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #ffffff;
  --ink: #111111;
  --accent: #991f2b;
  --rule: #8f8f8f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(100% - 9vw, 1480px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 68px) 0 clamp(30px, 3vw, 48px);
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  animation: rule-in 0.8s ease-out both;
}

.brand {
  width: clamp(150px, 15vw, 230px);
  display: block;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-link {
  position: relative;
  margin-top: 30px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
}

.header-link::after,
.contact-grid a:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform-origin: left;
  transition: transform 180ms ease;
}

.header-link:hover::after,
.contact-grid a:last-child:hover::after {
  transform: scaleX(0.55);
}

.hero {
  flex: 1;
  padding: clamp(45px, 6vh, 82px) 1.7vw clamp(32px, 4vh, 56px);
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-family: "Bodoni Moda", Didot, "Times New Roman", serif;
  font-size: clamp(78px, 13.4vw, 214px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.075em;
  animation: rise 0.85s 0.08s cubic-bezier(.2,.7,.25,1) both;
}

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

.hero p {
  width: min(590px, 55%);
  margin: clamp(86px, 8vh, 112px) 0 0;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  animation: rise 0.8s 0.18s cubic-bezier(.2,.7,.25,1) both;
}

.state-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--rule);
}

.state {
  position: relative;
  padding: 22px 1.7vw 25px;
  font-size: clamp(12px, 1.15vw, 17px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.state + .state::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr 0.9fr;
}

.contact-grid > * {
  position: relative;
  min-height: 96px;
  margin: 0;
  padding: 28px 1.7vw 10px;
  display: flex;
  align-items: flex-start;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
  font-style: normal;
}

.contact-grid > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 0;
  width: 1px;
  background: var(--rule);
}

.contact-grid a {
  transition: color 160ms ease;
}

.contact-grid a:hover {
  color: var(--accent);
}

.text-contact {
  flex-direction: column;
  gap: 3px;
}

.text-contact span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-grid a:last-child {
  width: max-content;
  padding-bottom: 5px;
}

.contact-grid a:last-child::after {
  right: auto;
  width: 72px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes rule-in {
  from { opacity: 0; transform: scaleX(0.96); }
  to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 850px) {
  .site-shell {
    width: calc(100% - 40px);
    padding-top: 24px;
  }

  .site-header {
    min-height: 104px;
  }

  .brand {
    width: 135px;
  }

  .header-link {
    margin-top: 22px;
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 44px;
  }

  .hero h1 {
    font-size: clamp(67px, 20vw, 112px);
    line-height: 0.88;
    letter-spacing: -0.07em;
  }

  .hero p {
    width: 100%;
    max-width: 520px;
    margin-top: 66px;
    font-size: 15px;
  }

  .state-rail {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--rule);
  }

  .state {
    padding: 17px 0;
    font-size: 12px;
  }

  .state + .state {
    border-top: 1px solid #dedede;
  }

  .state + .state::before {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    padding: 16px 0 0;
  }

  .contact-grid > * {
    min-height: 0;
    padding: 12px 0;
    font-size: 13px;
  }

  .contact-grid > * + *::before {
    display: none;
  }

  .contact-grid a:last-child {
    margin-top: 6px;
    margin-bottom: 16px;
  }
}
