:root {
  --ink: #111111;
  --ink-soft: #4b4b4b;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --sage: #e6dfca;
  --accent: #b9a77c;
  --accent-dark: #8f7d52;
  --line: #ded8c8;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
}

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

.site-header {
  margin: 0 auto;
  max-width: 1240px;
  padding: 14px 28px 6px;
}

.top-brand-banner {
  display: block;
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}

.hero {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
  margin: 18px auto 80px;
  max-width: 1240px;
  padding: 0 28px;
}

.hero-copy {
  align-self: start;
  padding-top: 48px;
}

.eyebrow,
.form-kicker {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(36px, 3.35vw, 47px);
  line-height: 0.98;
  margin-bottom: 16px;
  max-width: none;
  white-space: nowrap;
}

.hero-intro {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 570px;
}

.reviews-panel {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  max-width: 570px;
  padding-top: 14px;
}

.reviews-rating {
  align-items: center;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 7px;
  text-decoration: none;
  transition: color 150ms ease;
}

.reviews-rating:hover {
  color: var(--accent-dark);
}

.reviews-rating strong {
  font-size: 24px;
}

.stars {
  color: #e7b34b;
  font-size: 18px;
  letter-spacing: 1px;
}

.review-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 11px;
}

.review-badges span {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  padding: 7px 10px;
}

.review-badges strong {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--accent);
  display: inline-flex;
  font-size: 8px;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.form-card {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 34px 40px;
  position: relative;
}

.form-card::before {
  border: 1px solid rgba(17, 17, 17, 0.15);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.form-card > * {
  position: relative;
}

.form-heading {
  margin-bottom: 20px;
}

.form-heading h2 {
  font-size: 32px;
  margin-bottom: 5px;
}

.form-heading p:last-child {
  color: var(--ink-soft);
  font-size: 14px;
}

.form-grid {
  display: grid;
  gap: 13px 16px;
  grid-template-columns: 1fr 1fr;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.02em;
}

.optional {
  color: #81908c;
  font-weight: 400;
}

input,
select,
textarea {
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  min-width: 0;
  outline: none;
  padding: 13px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(185, 167, 124, 0.22);
}

.honeypot {
  left: -9999px;
  position: absolute;
}

.submit-button {
  align-items: center;
  background: var(--ink);
  border: 0;
  color: white;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 22px;
  padding: 17px 20px;
  transition: background 150ms ease, transform 150ms ease;
  width: 100%;
}

.submit-button:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-note,
.form-status {
  color: #72817d;
  font-size: 11px;
  line-height: 1.5;
  margin: 12px 0 0;
  text-align: center;
}

.form-status {
  color: #a13e32;
  font-weight: 600;
}

.success-message {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  align-items: center;
  background: var(--sage);
  border-radius: 50%;
  display: inline-flex;
  font-size: 24px;
  height: 58px;
  justify-content: center;
  margin-bottom: 22px;
  width: 58px;
}

.success-message h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

.success-message p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.credibility {
  background: var(--ink);
  color: var(--paper);
  padding: 100px max(28px, calc((100vw - 1184px) / 2));
}

.credibility > h2 {
  font-size: clamp(42px, 5vw, 66px);
  margin-bottom: 20px;
  max-width: 760px;
}

.credibility > p:not(.eyebrow) {
  color: #b9c7c2;
  line-height: 1.8;
  max-width: 700px;
}

.credibility .eyebrow {
  color: var(--accent);
}

.benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.benefits article {
  padding-top: 24px;
}

.benefits span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.benefits h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin: 20px 0 10px;
}

.benefits p {
  color: #b9c7c2;
  font-size: 14px;
  line-height: 1.7;
}

footer {
  background: #000000;
  color: #d7cfb8;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 24px max(28px, calc((100vw - 1184px) / 2));
}

@media (max-width: 920px) {
  .hero {
    gap: 25px;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .hero-copy {
    padding: 14px 0 0;
  }

  h1 {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 12px 18px;
  }

  .hero {
    margin-bottom: 50px;
    padding: 0 18px;
  }

  h1 {
    font-size: 42px;
  }

  .form-card {
    padding: 28px 24px;
  }

  .form-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .form-grid label {
    grid-column: 1;
  }

  .credibility {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  footer {
    gap: 8px;
    flex-direction: column;
  }
}
