:root {
  --bg: #faf7f1;
  --bg-soft: #f2ede2;
  --card: #ffffff;
  --ink: #14140e;
  --ink-soft: #4a463e;
  --muted: #7a7568;
  --accent: #b14e2a;
  --accent-dark: #8a3a1f;
  --accent-soft: #f4e3d6;
  --line: rgba(20, 20, 14, 0.12);
  --shadow: 0 24px 70px rgba(48, 36, 28, 0.09);
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 247, 241, 0.9);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-dot,
.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: var(--accent);
}

.nav-label {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.footer a:hover,
.text-link:hover {
  color: var(--accent);
}

.hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -250px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), rgba(244, 227, 214, 0));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap: 56px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 650;
}

h1 em {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--accent);
}

.lede {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}

.identity-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.identity-label {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-card p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 16px;
}

.identity-card strong {
  color: var(--ink);
}

.identity-card .identity-note {
  margin: 20px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.email-list li + li {
  margin-top: 6px;
}

.email-list a {
  overflow-wrap: anywhere;
}

.identity-card address {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.section {
  padding: 32px 0 88px;
}

.panel {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-soft);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.panel h2,
.privacy h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  color: var(--bg);
}

.footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

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

.footer a,
.text-link {
  color: var(--ink-soft);
  font-weight: 600;
  text-underline-offset: 3px;
}

.privacy {
  max-width: 760px;
  padding: 76px 0 92px;
}

.privacy .lede {
  margin-bottom: 40px;
}

.privacy h2 {
  margin: 34px 0 10px;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.privacy p,
.privacy li {
  color: var(--ink-soft);
}

.privacy ul {
  padding-left: 22px;
}

@media (max-width: 780px) {
  body {
    font-size: 17px;
  }

  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 68px;
  }

  .hero {
    padding: 64px 0 38px;
  }

  .hero-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .panel-grid {
    gap: 28px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .section {
    padding-bottom: 64px;
  }
}
