:root {
  --gold: #c48a22;
  --gold-dark: #8a5d10;
  --cream: #fbf6ed;
  --cream2: #f3eadb;
  --ink: #111111;
  --muted: #625d55;
  --line: #e5d5bd;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 16, 5, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 6vw;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--gold-dark);
  font-weight: 800;
}

nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  color: #28231d;
}

nav a:hover { color: var(--gold-dark); }

.header-btn, .btn, .form-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 13px;
  font-weight: 900;
  transition: .2s ease;
}

.header-btn, .btn.primary, .form-button {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 30px rgba(196, 138, 34, .25);
}

.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 46px;
  align-items: center;
  padding: 74px 6vw 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 900;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.055em;
  line-height: .98;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.8;
}

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

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 650px;
}

.mini-stats div {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.mini-stats strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.45rem;
}

.mini-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.visual-card {
  position: relative;
  min-height: 590px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(120deg, rgba(0,0,0,.08), rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.business-card {
  position: absolute;
  left: 28px;
  top: 28px;
  width: min(470px, calc(100% - 56px));
  background: #000;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.18);
}

.business-card img {
  display: block;
  width: 100%;
  height: auto;
}

.chat-widget {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100% - 56px));
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.message {
  margin: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: .94rem;
  line-height: 1.48;
}

.message.user {
  margin-left: 72px;
  background: var(--cream);
}

.message.bot {
  margin-right: 60px;
  background: #f1f1f1;
}

.chat-input {
  display: flex;
  justify-content: space-between;
  margin: 16px;
  padding: 15px 16px;
  border-radius: 15px;
  border: 1px solid var(--line);
  color: var(--gold-dark);
  font-weight: 900;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px 6vw 44px;
}

.feature-strip div {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20, 14, 4, .06);
  font-weight: 900;
}

.section {
  padding: 66px 6vw;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title p {
  margin: 0 0 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 900;
}

.section-title h2, .split-card h2, .cta h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

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

.steps article, .benefit-grid article, .testimonial-grid article, .split-card, .contact-section {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 38px rgba(20, 14, 4, .07);
}

.steps article {
  text-align: center;
  padding: 32px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 900;
}

.steps h3, .benefit-grid h3 {
  margin: 18px 0 10px;
  font-size: 1.28rem;
}

.steps p, .benefit-grid p, .split-card li, .testimonial-grid p, .contact-section p {
  color: var(--muted);
  line-height: 1.75;
}

.benefits {
  background: rgba(243, 234, 219, .45);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid article {
  padding: 28px;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--cream);
  font-size: 1.45rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 66px 6vw;
}

.split-card {
  padding: 38px;
  min-height: 340px;
  background: linear-gradient(135deg, #fff, #eef5ff);
}

.split-card.seller {
  background: linear-gradient(135deg, #fff, #eef8ee);
}

.split-card ul {
  padding-left: 20px;
  margin: 22px 0;
}

.split-card a {
  color: var(--gold-dark);
  font-weight: 900;
}

.cta {
  margin: 36px 6vw;
  padding: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 35%),
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow);
}

.cta p {
  margin: 0 0 8px;
  font-weight: 900;
}

.btn.light {
  background: #fff;
  color: var(--gold-dark);
}

.testimonial-grid article {
  padding: 30px;
}

.testimonial-grid strong {
  color: var(--gold-dark);
}

.contact-section {
  margin: 34px 6vw 72px;
  padding: 36px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  font-weight: 800;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: .88rem;
  font-weight: 900;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.lead-form textarea {
  min-height: 112px;
  resize: vertical;
}

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

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 6vw;
  color: #fff;
  background: #0d0d0d;
}

footer div {
  display: grid;
  gap: 7px;
}

footer strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

footer span {
  color: #d8d8d8;
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero, .contact-section, .split-section {
    grid-template-columns: 1fr;
  }
  .feature-strip, .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps, .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .visual-card {
    min-height: 650px;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .header-btn {
    width: 100%;
  }
  .hero {
    padding-top: 42px;
  }
  .hero-actions, .mini-stats, .feature-strip, .benefit-grid, .lead-form {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn, .form-button {
    width: 100%;
  }
  .visual-card {
    min-height: 620px;
  }
  .business-card {
    left: 18px;
    top: 18px;
    width: calc(100% - 36px);
  }
  .chat-widget {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }
  .cta, footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.hidden-field {
  display: none;
}

button.form-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.assistant-link {
  display: inline-flex;
  justify-content: center;
  color: var(--gold-dark);
  font-weight: 900;
  padding-top: 4px;
}


.contact-no-form {
  display: block;
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-no-form p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 24px;
}

.contact-no-form .contact-lines {
  justify-items: center;
}
