/* ---------- Base ---------- */
:root {
  --ink: #1f2330;
  --ink-soft: #4a4f5e;
  --muted: #7a7f8f;
  --line: #e7e8ee;
  --bg: #fdfcf9;
  --bg-alt: #f5f1ea;
  --accent: #d97757;        /* warm terracotta */
  --accent-dark: #b95f43;
  --accent-soft: #fbe9df;
  --card: #ffffff;
  --shadow: 0 8px 30px rgba(31, 35, 48, 0.06);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

em { font-style: italic; color: var(--accent-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.centered { text-align: center; }

.kicker {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  font-weight: 600;
  margin: 0 0 0.6em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 1.2em;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.footnote { font-size: 0.95rem; color: var(--muted); margin-top: 2em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 249, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.brand .dot { color: var(--accent); }
.nav nav { display: flex; gap: 28px; align-items: center; }
.nav nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav nav a:hover { color: var(--ink); }
.cta-link {
  background: var(--ink);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
}
.cta-link:hover { background: var(--accent-dark); color: #fff !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 24px 100px;
  background:
    radial-gradient(ellipse at top right, var(--accent-soft) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 { margin-bottom: 0.5em; }
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2em;
}
.lede-narrow { max-width: 540px; margin: 0 auto 2em; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-row li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
  margin-right: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(217, 119, 87, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-block { display: block; width: 100%; }

/* ---------- Sections ---------- */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }

.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.facts { list-style: none; padding: 0; margin: 0; }
.facts li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.facts li:last-child { border-bottom: none; }
.facts strong { color: var(--ink); }

/* ---------- Service tiles ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tile-icon { font-size: 2rem; margin-bottom: 12px; }
.tile h3 { margin-bottom: 8px; }
.tile p { margin: 0; font-size: 0.96rem; }

/* ---------- Rates ---------- */
.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .rate-grid { grid-template-columns: 1fr; } }

.rate-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
}
.rate-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, var(--accent-soft) 100%);
  transform: scale(1.04);
}
.rate-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rate-card h3 { margin-bottom: 8px; color: var(--ink-soft); font-family: 'Inter', sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0.2em 0;
}
.price span { font-size: 1rem; color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; }
.rate-note { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}
.quote p { font-style: italic; font-size: 1rem; margin-bottom: 1em; }
.quote cite {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Form ---------- */
.form {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form label {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  margin-top: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form textarea { resize: vertical; }

.hidden-field { position: absolute; left: -9999px; }

.form-fineprint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1em;
  margin-bottom: 0;
}

.form-success {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px;
}

/* ---------- QR block ---------- */
.qr-block {
  margin: 40px auto 0;
  text-align: center;
  max-width: 240px;
}
.qr-block img {
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow);
}
.qr-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #d6d8e0;
  padding: 40px 0;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-foot {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.footer .muted { color: #9a9eab; }
.footer p { color: #d6d8e0; margin: 0; }
