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

:root {
  --ink: #000;
  --text: #1b1c1c;
  --muted: #444748;
  --soft: #efeded;
  --line: #f0e9e3;
  --gray: #6b7280;
  --accent: #735a3a;
}

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

html {
  background: #fff;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

body { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

.page-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 25px 46px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.site-header.no-border { border-bottom: 0; }
.brand { font-size: 24px; font-weight: 700; line-height: 32px; letter-spacing: -0.6px; }
.nav { display: flex; align-items: center; gap: 23px; }
.nav a {
  border-bottom: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.nav a.active, .nav a:hover { border-color: #000; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-size: 0;
  line-height: 0;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 12px;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transition: top .18s ease, transform .18s ease, opacity .18s ease;
}

.menu-toggle::before { top: 15px; }
.menu-toggle span { top: 21px; }
.menu-toggle::after { top: 27px; }

.site-header.nav-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span { opacity: 0; }

.site-header.nav-open .menu-toggle::after {
  top: 21px;
  transform: rotate(-45deg);
}

.section { padding: 80px 112px; }
.section-narrow { padding: 80px 136px; }
.eyebrow { color: var(--gray); font-size: 14px; line-height: 22.75px; text-transform: uppercase; }
.h1 { font-size: clamp(46px, 5vw, 64px); font-weight: 700; line-height: 1.18; }
.h2 { font-size: clamp(36px, 4vw, 48px); font-weight: 700; line-height: 1.25; }
.h3 { font-size: clamp(26px, 2.7vw, 32px); font-weight: 600; line-height: 34px; }
.body { color: var(--muted); font-size: 14px; line-height: 22.75px; }
.lead { color: var(--muted); font-size: 24px; font-weight: 500; line-height: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 5px;
  border: .5px solid #fff;
  background: #000;
  padding: 12px 32px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 9999px;
  padding: 5px 17px;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  text-transform: uppercase;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--soft);
}
.image-card > img, .cover-img { width: 100%; height: 100%; object-fit: cover; }
.round-32 { border-radius: 32px; }
.soft-bg { background: var(--soft); }
.line-bg { background: var(--line); }
.shadow-soft { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.mono { font-family: "Manrope", Arial, sans-serif; }
.text-shadow { text-shadow: 0 1px 2px rgba(0,0,0,.31); }
.arrow-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  box-shadow: 0 1px 1px rgba(0,0,0,.31);
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 70px;
  background: #000;
  padding: 80px 109px;
  color: #fff;
}
.footer-brand { font-size: clamp(40px, 5vw, 64px); font-weight: 700; line-height: 1; }
.footer h4 { margin: 0 0 24px; font-size: 12px; font-weight: 700; line-height: 16px; letter-spacing: 1.2px; text-transform: uppercase; }
.footer p { display: grid; gap: 12px; margin: 0; color: #9ca3af; font-size: 12px; line-height: 16px; }

.field {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c4c7c7;
  background: transparent;
  padding: 13px 0 14px;
  color: #1b1c1c;
  outline: none;
}
.field::placeholder { color: rgba(116,120,120,.45); }

@media (max-width: 900px) {
  .site-header { position: relative; gap: 16px; min-height: 72px; padding: 16px 24px; }
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 8px);
    z-index: 40;
    display: grid;
    gap: 0;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 50px -24px rgba(0,0,0,.36);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 0 20px;
    font-size: 13px;
  }
  .nav a:last-child { border-bottom: 0; }
  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .section, .section-narrow { padding: 56px 24px; }
  .lead { font-size: 18px; line-height: 26px; }
  .footer { grid-template-columns: 1fr; gap: 32px; padding: 56px 32px; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: 22px; }
  .menu-toggle { width: 40px; height: 40px; }
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span { left: 11px; width: 17px; }
  .menu-toggle::before { top: 13px; }
  .menu-toggle span { top: 19px; }
  .menu-toggle::after { top: 25px; }
  .site-header.nav-open .menu-toggle::before,
  .site-header.nav-open .menu-toggle::after { top: 19px; }
  .nav { left: 18px; right: 18px; }
}
