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

:root {
  --ink: #30242f;
  --muted: #756976;
  --rose: #a94d73;
  --rose-dark: #823957;
  --rose-soft: #f8eaf0;
  --cream: #fffaf7;
  --white: #ffffff;
  --line: #eadde3;
  --shadow: 0 20px 60px rgba(75, 38, 58, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 221, 227, .75);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.brand-mark { font-size: 1.35rem; }

.nav-links {
  display: flex;
  gap: 25px;
  margin-left: auto;
  color: var(--muted);
  font-size: .94rem;
}

.nav-links a:hover { color: var(--rose); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.language-select select {
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: .88rem;
  cursor: pointer;
}

.globe { font-size: .9rem; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 14px;
  background: var(--rose);
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(169, 77, 115, .22);
  transition: transform .2s, background .2s, box-shadow .2s;
}

.button:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(169, 77, 115, .28);
}

.button-small { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.button-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button-ghost:hover { background: var(--white); color: var(--rose-dark); }
.full-width { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 234, 240, .95), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(255, 235, 219, .7), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  display: inline-block;
  color: var(--rose-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
}

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

h1 { max-width: 650px; margin: 17px 0 24px; font-size: clamp(3.5rem, 8vw, 6.5rem); }
h1 span { color: var(--rose); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); margin-bottom: 15px; }
h3 { margin-top: 0; }

.hero-text { max-width: 600px; color: var(--muted); font-size: 1.15rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-size: .9rem; }

.quote-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 26px; }
.card-kicker { color: var(--rose); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.quote-card h2 { font-family: "DM Sans", sans-serif; font-size: 1.55rem; letter-spacing: -.03em; margin: 5px 0 0; }
.car-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--rose-soft); font-size: 1.45rem; }

label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 8px; }

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

input:focus, textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(169, 77, 115, .1); }

.input-with-unit {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  overflow: hidden;
}

.input-with-unit input { border: 0; box-shadow: none; }
.input-with-unit span { padding: 0 14px; color: var(--muted); font-weight: 700; }

.price-result {
  margin: 22px 0;
  padding: 19px;
  border-radius: 16px;
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-result span { color: var(--muted); font-size: .86rem; }
.price-result strong { color: var(--rose-dark); font-size: 1.8rem; }
.fine-print, .muted { color: var(--muted); font-size: .8rem; }

.section { padding: 100px 0; }
.section-soft { background: #fff2f5; }

.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading p, .pricing-grid p, .business-card p, .request-box > div p { color: var(--muted); font-size: 1.03rem; }

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

.step-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.step-number { color: var(--rose); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.step-icon { font-size: 2rem; margin: 25px 0 14px; }
.step-card h3 { font-size: 1.25rem; margin-bottom: 7px; }
.step-card p { color: var(--muted); margin-bottom: 0; }

.pricing-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }

.price-table { background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-row { display: flex; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row strong { color: var(--rose-dark); }

.business-card, .request-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 45px;
  align-items: center;
  background: #30242f;
  color: white;
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow);
}

.business-card p { color: #d8cbd2; margin-bottom: 0; }
.business-card .eyebrow, .request-box .eyebrow { color: #efb8ca; }

.request-section { padding-top: 0; }
.request-box { grid-template-columns: .8fr 1.2fr; align-items: start; }
.request-box h2 { margin-top: 10px; }

.delivery-form { background: white; color: var(--ink); border-radius: 22px; padding: 25px; }
.delivery-form label { margin-bottom: 16px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.delivery-form .button { margin-top: 5px; }
.form-message { margin: 12px 0 0; font-size: .88rem; color: var(--rose-dark); }

.site-footer { background: #211a21; color: #ddd2d9; padding: 38px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; }
.footer-brand { color: white; }
.site-footer p { margin: 7px 0 0; font-size: .82rem; color: #a99ca5; }
.footer-right { text-align: right; }
.footer-right p:last-child { color: #d99ab2; }

@media (max-width: 850px) {
  .nav-links { display: none; }
  .hero { padding: 65px 0 70px; }
  .hero-grid, .pricing-grid, .request-box { grid-template-columns: 1fr; gap: 35px; }
  .steps { grid-template-columns: 1fr; }
  .business-card { grid-template-columns: 1fr; }
  .request-box { padding: 30px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header .button-small { display: none; }
  .nav { gap: 10px; }
  .brand { margin-right: auto; }
  .hero { padding-top: 50px; }
  h1 { font-size: 3.45rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { flex-direction: column; gap: 5px; }
  .section { padding: 70px 0; }
  .quote-card { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
}
