:root {
  --bg: #fbf7ef;
  --bg-soft: #fffdf8;
  --text: #2c241d;
  --muted: #75685c;
  --line: rgba(92, 73, 54, 0.16);
  --accent: #a9774d;
  --accent-deep: #6f4a2f;
  --card: rgba(255, 253, 248, 0.82);
  --shadow: 0 24px 70px rgba(73, 52, 32, 0.12);
  --radius-large: 34px;
  --radius-medium: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(206, 174, 133, 0.24), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(169, 119, 77, 0.12), transparent 28%),
    linear-gradient(145deg, #fffdf9 0%, var(--bg) 52%, #f4eadc 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.52;
}

body::before {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 10%;
  background: rgba(187, 146, 105, 0.13);
}

body::after {
  width: 220px;
  height: 220px;
  right: -100px;
  top: 18%;
  background: rgba(111, 74, 47, 0.09);
}

.page-shell {
  width: min(100%, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) 20px;
  display: grid;
  place-items: center;
}

.hero {
  width: min(100%, 860px);
  text-align: center;
  padding: clamp(28px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 241, 0.72)),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(169, 119, 77, 0.10);
  border-radius: calc(var(--radius-large) - 12px);
  pointer-events: none;
}

.hero__art {
  width: min(100%, 260px);
  margin: 0 auto 28px;
}

.hero__art img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 8vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  color: var(--text);
}

.domain-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
  padding: 10px 18px;
  border: 1px solid rgba(169, 119, 77, 0.25);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--accent-deep);
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  width: min(100%, 660px);
  margin: 26px auto;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.72;
}

.form-card {
  width: min(100%, 620px);
  margin: 42px auto;
	margin-top: 0;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 45px rgba(73, 52, 32, 0.08);
}

.form-card__header h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.form-card__header p {
  margin: 9px 0 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.pipedrive-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(111, 74, 47, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(245, 232, 214, 0.34));
}

.placeholder-content {
  padding: 20px;
  color: var(--muted);
  text-align: center;
}

.placeholder-content__label,
.placeholder-content__hint {
  display: block;
}

.placeholder-content__label {
  color: var(--accent-deep);
  font-weight: 700;
}

.placeholder-content__hint {
  margin-top: 8px;
  font-size: 0.9rem;
}

.small-note {
  width: min(100%, 560px);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

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

  .hero {
    padding: 30px 18px;
    border-radius: 26px;
  }

  .hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero__art {
    width: 190px;
    margin-bottom: 22px;
  }

  .domain-name {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .lead {
    line-height: 1.62;
  }

  .form-card {
    margin-top: 30px;
    padding: 16px;
  }

  .pipedrive-placeholder {
    min-height: 190px;
  }
}
