@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --sage: #A7B89A;
  --deep-sage: #718465;
  --charcoal: #333333;
  --warm-white: #F8F8F5;
  --stone: #E9E9E6;
  --gold: #D7C7A4;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(248,248,245,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51,51,51,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--deep-sage);
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 11px 17px;
  border-radius: 999px;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: clamp(50px, 8vw, 110px) clamp(22px, 6vw, 90px);
  background:
    radial-gradient(circle at 78% 22%, rgba(167,184,154,0.35), transparent 30%),
    linear-gradient(135deg, var(--warm-white), #ffffff 55%, #edf1e9);
}

.eyebrow {
  color: var(--deep-sage);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 0.95;
  color: #2d2d2d;
}

h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.hero-text, .large {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.7;
  max-width: 690px;
  color: #555;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 18px;
}

.button, button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.primary, button {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(51,51,51,0.16);
}

.secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(51,51,51,0.12);
}

.trust-line {
  color: #666;
  font-size: 0.94rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 36px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(to top, rgba(51,51,51,0.78), rgba(51,51,51,0.05)),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1200&q=80') center/cover;
  color: var(--white);
  box-shadow: 0 28px 70px rgba(51,51,51,0.18);
}

.hero-card h2, .hero-card p {
  color: var(--white);
  position: relative;
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.hero-card p {
  line-height: 1.7;
  max-width: 420px;
}

.shine {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 28px;
}

.section {
  padding: clamp(55px, 8vw, 105px) clamp(22px, 6vw, 90px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(51,51,51,0.08);
  box-shadow: 0 16px 44px rgba(51,51,51,0.06);
}

.card span {
  font-size: 2rem;
}

.card p, .about p, .quote p {
  color: #5c5c5c;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  background: var(--charcoal);
  color: var(--white);
}

.split h2, .split p {
  color: var(--white);
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist p {
  margin: 0;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.about {
  background:
    linear-gradient(90deg, rgba(167,184,154,0.18), transparent),
    var(--warm-white);
}

.about-box {
  max-width: 900px;
  background: var(--white);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 55px);
  border: 1px solid rgba(51,51,51,0.08);
}

.quote {
  background: var(--white);
}

.quote-form {
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(51,51,51,0.16);
  border-radius: 18px;
  font: inherit;
  background: var(--warm-white);
}

textarea {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
}

button {
  grid-column: 1 / -1;
  font-size: 1rem;
}

footer {
  padding: 36px 22px;
  text-align: center;
  color: #777;
  background: #2d2d2d;
}

footer p {
  color: #f4f4f4;
  margin: 8px 0;
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .hero, .split {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 360px;
  }

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

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