:root {
  --navy: #1e2a39;
  --navy-2: #27364a;
  --gold: #c8a96a;
  --beige: #f4efe7;
  --sage: #a8b39d;
  --white: #ffffff;
  --ink: #1f2933;
  --muted: #667085;
  --line: rgba(30, 42, 57, 0.10);
  --shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 106, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(168, 179, 157, 0.14), transparent 24%),
    linear-gradient(180deg, #fcfbf8 0%, #f7f4ef 100%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 32px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 700;
  color: var(--navy);
}

.brand-sub {
  font-size: 0.92rem;
  color: var(--muted);
}

.topbar-link {
  font-weight: 600;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero,
.preview,
.lead-form-wrap,
.closing-cta,
.benefits {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 42, 57, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero h1,
.section-heading h2,
.preview-copy h2,
.form-copy h2,
.closing-cta h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-top: 12px;
  letter-spacing: -0.03em;
}

.hero-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 56ch;
  margin: 18px 0 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 42, 57, 0.05);
  border: 1px solid rgba(30, 42, 57, 0.08);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(30, 42, 57, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  border: 1px solid rgba(30, 42, 57, 0.12);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(244, 239, 231, 0.8);
  border: 1px solid rgba(30, 42, 57, 0.08);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.image-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 620px;
  background: linear-gradient(180deg, rgba(30, 42, 57, 0.08), rgba(30, 42, 57, 0.02));
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 22px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.10), rgba(17, 24, 39, 0.72));
  color: var(--white);
  display: grid;
  gap: 6px;
}

.image-overlay span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.image-overlay strong {
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 24ch;
}

.benefits,
.preview,
.lead-form-wrap,
.closing-cta {
  margin-top: 26px;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2,
.preview-copy h2,
.form-copy h2,
.closing-cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 8px;
}

.section-heading p,
.preview-copy p,
.form-copy p,
.closing-cta p {
  color: var(--muted);
  line-height: 1.8;
  margin: 12px 0 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  background: linear-gradient(180deg, rgba(244, 239, 231, 0.9), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(30, 42, 57, 0.08);
  border-radius: 24px;
  padding: 22px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(30, 42, 57, 0.06);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
}

.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.preview {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.mini-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.mini-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 239, 231, 0.85);
  border: 1px solid rgba(30, 42, 57, 0.08);
}

.mini-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 169, 106, 0.16);
  flex: 0 0 auto;
}

.preview-art {
  display: flex;
  justify-content: center;
}

.preview-image {
  width: min(100%, 560px);
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 45px rgba(17, 24, 39, 0.10);
  border: 1px solid rgba(30, 42, 57, 0.08);
  background: #fff;
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  margin-top: 24px;
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(30, 42, 57, 0.97), rgba(39, 54, 74, 0.97));
  color: var(--white);
}

.contact-card strong {
  display: block;
  font-size: 1.08rem;
}

.contact-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.lead-form {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 42, 57, 0.08);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.field + .field {
  margin-top: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy);
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(30, 42, 57, 0.12);
  background: var(--white);
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: rgba(200, 169, 106, 0.85);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
}

.phone-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.success-message {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(168, 179, 157, 0.16);
  border: 1px solid rgba(168, 179, 157, 0.35);
  color: var(--navy);
  display: none;
}

.success-message.show {
  display: block;
}

.closing-cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(30, 42, 57, 0.95), rgba(39, 54, 74, 0.95));
  color: var(--white);
}

.closing-cta h2 {
  color: var(--white);
  max-width: 14ch;
}

.closing-cta .section-kicker {
  color: rgba(200, 169, 106, 0.95);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero,
  .preview,
  .lead-form-wrap {
    grid-template-columns: 1fr;
  }

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

  .image-card,
  .image-card img {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
    padding-top: 10px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .benefits,
  .preview,
  .lead-form-wrap,
  .closing-cta {
    padding: 20px;
    border-radius: 24px;
  }

  .trust-row,
  .benefit-grid,
  .footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .closing-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
