@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --font-main: Manrope, Inter, "Segoe UI", Arial, Helvetica, "Noto Sans SC", sans-serif;
  --ink: #161514;
  --soft-ink: #34322f;
  --muted: #6f6a61;
  --quiet: #9a9286;
  --paper: #f3efe6;
  --sheet: #fffaf0;
  --line: #d7cebf;
  --line-strong: #b6aa98;
  --charcoal: #111315;
  --charcoal-2: #1d2023;
  --burgundy: #7a1f2a;
  --gold: #b39458;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 14px max(24px, calc((100vw - 1260px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(17, 19, 21, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  text-transform: uppercase;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 760;
}

.brand__name {
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--white);
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.language-switcher__button {
  min-width: 40px;
  height: 34px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.language-switcher__button:last-child {
  border-right: 0;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  color: var(--white);
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

.language-switcher__button.is-active {
  color: var(--ink);
  background: var(--sheet);
}

.hero {
  position: relative;
  min-height: calc(92vh - 70px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(17, 19, 21, 0.94) 0%, rgba(17, 19, 21, 0.82) 37%, rgba(17, 19, 21, 0.26) 74%, rgba(17, 19, 21, 0.44) 100%),
    linear-gradient(180deg, rgba(17, 19, 21, 0.24), rgba(17, 19, 21, 0.88)),
    url("assets/hero-editorial.png");
  background-position: center;
  background-size: cover;
}

.hero__inner {
  display: grid;
  align-content: end;
  width: min(1260px, calc(100% - 48px));
  min-height: calc(92vh - 70px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 116px) 0 clamp(34px, 5vw, 60px);
}

.hero__copy {
  max-width: 760px;
}

.eyebrow,
.section__label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

h2 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(27px, 2.6vw, 40px);
  line-height: 1.13;
}

h3 {
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.24;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
}

.button--primary {
  color: var(--ink);
  border-color: var(--sheet);
  background: var(--sheet);
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

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

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 880px);
  margin: clamp(54px, 7vw, 92px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__meta div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(17, 19, 21, 0.42);
}

.hero__meta dt,
.card__kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__meta dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.38;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--sheet);
}

.strip__item {
  min-height: 120px;
  padding: 28px clamp(24px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.strip__item:last-child {
  border-right: 0;
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 650;
}

.strip span {
  max-width: 460px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 58px;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section--intro {
  padding-top: 104px;
}

.section--dark {
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100% - 1260px) / 2));
  color: var(--white);
  background: var(--charcoal);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section__body > p,
.section__note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--soft-ink);
  font-size: 18px;
  line-height: 1.68;
}

.section--dark .format p {
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.card {
  min-height: 252px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.54);
}

.card p,
.term p,
.format p,
.timeline__item p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.63;
}

.card__kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--burgundy);
}

.format-list {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.format {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.timeline__item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
  counter-increment: process;
}

.timeline__item::before {
  content: counter(process, decimal-leading-zero);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 800;
}

.terms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.term {
  min-height: 166px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.5);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-grid .term {
  min-height: 218px;
}

.section--legal {
  padding-top: 72px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.82fr);
  gap: 58px;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto 52px;
  padding: clamp(34px, 5vw, 60px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(122, 31, 42, 0.2), transparent 38%),
    var(--charcoal);
}

.contact h2 {
  margin-top: 18px;
  color: var(--white);
}

.contact__body {
  align-self: end;
}

.contact__body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.office {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 14px;
  line-height: 1.55;
}

.office strong {
  color: var(--white);
  font-size: 14px;
}

.office a {
  color: var(--white);
  text-decoration-color: rgba(179, 148, 88, 0.72);
  text-underline-offset: 3px;
}

.future-locations {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .grid--services,
  .strip,
  .terms,
  .legal-grid,
  .hero__meta {
    grid-template-columns: 1fr;
  }

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

  .strip__item:last-child {
    border-bottom: 0;
  }

  .format {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand__name {
    display: none;
  }

  .language-switcher {
    max-width: 222px;
    overflow-x: auto;
  }

  .language-switcher__button {
    min-width: 38px;
  }

  .hero {
    min-height: calc(92vh - 64px);
    background-position: 58% center;
  }

  .hero__inner,
  .section,
  .contact {
    width: calc(100% - 32px);
  }

  .hero__inner {
    min-height: calc(92vh - 64px);
    padding: 56px 0 30px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .lead,
  .section__body > p,
  .section__note {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__meta {
    margin-top: 40px;
  }

  .hero__meta div {
    min-height: auto;
  }

  .section {
    gap: 22px;
    padding: 66px 0;
  }

  .section--dark {
    width: 100%;
    padding: 66px 16px;
  }

  .card,
  .term,
  .legal-grid .term {
    min-height: auto;
  }

  .timeline__item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
  }

  .contact {
    margin-bottom: 32px;
    padding: 24px;
  }
}
