:root {
  --white: #ffffff;
  --off: #f6f5f3;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: #e6e4e0;
  --header: 112px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.wrap {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: var(--white);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
}

.menu-toggle i {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--ink);
}

.menu-toggle i:last-child {
  width: 16px;
}

.header-meta {
  font-size: 12px;
  color: #333;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand img {
  height: 87px;
  width: auto;
  max-width: min(420px, 70vw);
  object-fit: contain;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.header-right a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 60;
  display: none;
  padding: 32px 48px;
  overflow: auto;
}

.nav-overlay.open {
  display: block;
}

.nav-overlay header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 72px;
}

.nav-overlay nav {
  display: grid;
  gap: 6px;
  max-width: 720px;
}

.nav-overlay nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.12;
}

.nav-overlay nav a:hover {
  opacity: 0.4;
}

.close-menu {
  border: 0;
  background: none;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero {
  position: relative;
  height: calc(100vh - var(--header));
  min-height: 640px;
  color: var(--white);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.hero-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.05;
  color: var(--white);
  max-width: 18ch;
}

.hero p {
  margin-top: 22px;
  max-width: 640px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.block {
  padding: 120px 0;
}

.block.tight {
  padding: 88px 0 40px;
}

.block.soft {
  background: var(--off);
}

.center {
  text-align: center;
}

.center .kicker,
.center h2,
.center .lede {
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  margin: 16px 0 20px;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-weight: 300;
  font-size: 17px;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 28vw);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 32px 28px;
  scroll-snap-type: x mandatory;
}

.card {
  scroll-snap-align: start;
}

.card figure {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #ddd;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  font-size: 28px;
  margin-top: 16px;
}

.card p {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 680px;
}

.split.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.split figure {
  min-height: 520px;
  overflow: hidden;
}

.split figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 8vw;
}

.split-copy p + p {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 300;
}

.banner {
  position: relative;
  min-height: 72vh;
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.banner-copy {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.banner h2,
.banner blockquote {
  color: var(--white);
}

.banner p,
.banner .kicker {
  color: rgba(255, 255, 255, 0.86);
}

.banner blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  margin: 18px 0 28px;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.quotes article:first-child {
  grid-column: 1 / -1;
}

.quotes blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
}

.quotes article:not(:first-child) blockquote {
  font-size: 26px;
}

.quotes footer {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.story:last-child {
  border-bottom: 1px solid var(--line);
}

.story img {
  width: 220px;
  height: 140px;
  object-fit: cover;
}

.story h3 {
  font-size: 32px;
}

.story p {
  color: var(--muted);
  font-weight: 300;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.btn.light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

form {
  display: grid;
  gap: 18px;
  margin-top: 12px;
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0 12px;
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-line {
  margin-top: 36px;
  font-weight: 300;
  color: var(--muted);
}

.contact-line a {
  display: block;
  color: var(--ink);
}

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 48px;
  padding: 48px 0 8px;
}

.partners img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
}

.site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer li {
  list-style: none;
  margin-bottom: 8px;
}

.site-footer a,
.site-footer p {
  font-weight: 300;
  color: var(--muted);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: #8a8a8a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.faq-grid h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.faq-grid p {
  color: var(--muted);
  font-weight: 300;
}

.inquire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .header-meta {
    display: none;
  }

  .split,
  .split.reverse,
  .quotes,
  .faq-grid,
  .footer-grid,
  .form-row,
  .inquire-grid {
    grid-template-columns: 1fr;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story img {
    width: 100%;
    height: 200px;
  }

  .rail {
    grid-auto-columns: 78vw;
    padding: 0 20px 24px;
  }

  .block {
    padding: 80px 0;
  }

  .wrap {
    width: calc(100% - 40px);
  }
}
