:root {
  --bg: #f4f6f5;
  --paper: #ffffff;
  --ink: #202424;
  --muted: #6f7878;
  --line: #d8dddd;
  --line-dark: #bfc8c8;
  --accent: #c85f4a;
  --accent-dark: #a94d3d;
  --slate: #314044;
  --bluegray: #8fa3a8;
  --cool-fill: #e7ebea;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(143, 163, 168, 0.16), transparent 34rem),
    radial-gradient(circle at bottom left, rgba(49, 64, 68, 0.08), transparent 36rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100vh;
  padding: 34px 0 28px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: default;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border: 1px solid var(--slate);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  right: -3px;
  bottom: -3px;
  background: var(--accent);
  border-radius: 50%;
}

.header-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: stretch;
  padding: 30px 0 72px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--ink);
}

.intro {
  max-width: 590px;
  margin-top: auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.form-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.form-card h2 {
  margin: 0 0 16px;
  font-family: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--slate);
}

.contact-form {
  display: grid;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  padding: 13px 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba3a3;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bluegray);
  box-shadow: 0 0 0 3px rgba(143, 163, 168, 0.18);
}

.contact-form textarea {
  resize: vertical;
  min-height: 142px;
}

.contact-form button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid var(--slate);
  border-radius: 999px;
  background: var(--slate);
  color: white;
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.website-field {
  display: none;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details article {
  padding: 28px 30px 32px 0;
  border-right: 1px solid var(--line);
}

.details article + article {
  padding-left: 30px;
}

.details article:last-child {
  border-right: 0;
}

.number {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.details h2 {
  margin: 12px 0 8px;
  font-family: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--slate);
}

.details p {
  margin: 0;
  color: var(--muted);
  max-width: 290px;
  font-size: 15px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 58px;
  }

  .hero-copy {
    min-height: auto;
  }

  .intro {
    margin-top: 28px;
  }

  .form-card {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    display: block;
  }

  .header-note,
  .site-footer p + p {
    margin-top: 10px;
  }

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

  .details article,
  .details article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .details article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 28px, 1180px);
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 64px);
  }

  .form-card {
    max-width: none;
  }
}