:root {
  --bg: #dbd3cd;
  --surface: rgba(244, 238, 232, 0.78);
  --surface-strong: #f4eee8;
  --text: #201c16;
  --muted: #74532a;
  --accent: #b89573;
  --accent-soft: #d2c7bf;
  --outline: rgba(32, 28, 22, 0.12);
  --shadow: 0 26px 60px rgba(32, 28, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 149, 115, 0.32), transparent 28%),
    radial-gradient(circle at bottom right, rgba(116, 83, 42, 0.18), transparent 30%),
    linear-gradient(180deg, #d8d0ca 0%, #efe7e0 100%);
}

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

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  min-height: calc(100vh - 48px);
  border: 1px solid var(--outline);
  border-radius: 36px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(244, 238, 232, 0.96), rgba(210, 199, 191, 0.9));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 28px;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  line-height: 0.94;
}

h1 {
  font-size: clamp(4rem, 10vw, 7rem);
}

.intro,
.form-note,
label {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 16px 30px rgba(32, 25, 23, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #000;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(32, 25, 23, 0.12);
}

.hero-copy {
  flex: 1;
  padding: 22px 10px 22px 8px;
}

.intro {
  margin: 14px 0 0;
  font-size: 1.05rem;
  max-width: 35rem;
}

.hero-photo-card {
  width: min(430px, 100%);
  padding: 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(184, 149, 115, 0.28));
  border: 1px solid rgba(32, 25, 23, 0.08);
}

.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(180deg, #dbd3cd, #b89573);
}

@media (max-width: 820px) {
  .hero {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .hero {
    border-radius: 22px;
    min-height: auto;
    padding: 18px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.4rem);
  }
}
