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

:root {
  --bg: #f6efe9;
  --text: #22191a;
  --muted: #6f5f60;
  --accent: #a35d58;
  --accent-2: #d18a62;
  --surface: #fffdfb;
  --surface-2: #faf3ee;
  --surface-3: #efe1d6;
  --highlight: #ead6c8;
  --shadow: 0 20px 55px rgba(50, 28, 25, .10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.55), transparent 30%),
    linear-gradient(180deg, var(--bg), color-mix(in srgb, var(--bg) 92%, white 8%));
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; color: var(--muted); }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 86%, white 14% / 82%);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}
.nav-inner {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.02em; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent-2) 68%, white 32%));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 22%, transparent);
}
.nav-links { display:flex; align-items:center; gap: 12px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-weight: 600; padding: 10px 14px; border-radius: 999px; }
.nav-links a:hover { background: color-mix(in srgb, var(--highlight) 72%, white 28%); color: var(--text); }

.btn, .btn-secondary {
  display:inline-flex; align-items:center; justify-content:center; gap:10px; padding: 14px 20px;
  border-radius: 999px; font-weight: 700; transition: .2s ease; cursor: pointer;
}
.btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 14px 32px color-mix(in srgb, var(--accent) 32%, transparent);
}
.btn:hover { transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
}

.hero { padding: 76px 0 58px; }
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; margin: 0 0 18px; }
.hero h1, .section-title, h2, h3 { font-family: var(--font-heading); color: var(--text); letter-spacing: -.04em; }
.hero h1 { font-size: clamp(44px, 7vw, 76px); line-height: .96; margin: 0 0 18px; }
.hero-copy { font-size: 18px; max-width: 650px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-top: 28px; }

.hero-panel {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
}
.hero-panel::after {
  content:""; position:absolute; inset:auto -60px -60px auto; width:220px; height:220px; border-radius:50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent); filter: blur(5px);
}
.mini-stat-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 18px; }
.mini-stat {
  padding: 16px; border-radius: 18px; background: color-mix(in srgb, var(--highlight) 45%, white 55%);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}
.mini-stat strong { display:block; font-size: 14px; margin-bottom: 4px; }

.section { padding: 76px 0; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom: 26px; }
.section-title { font-size: clamp(34px, 5vw, 54px); margin:0; }
.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow);
  border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}
.card h3, .card h4 { margin: 0 0 10px; }
.card p:last-child { margin-bottom: 0; }

.feature-bullets { list-style:none; padding:0; margin: 18px 0 0; display:grid; gap: 12px; }
.feature-bullets li { padding-left: 20px; position: relative; color: var(--muted); }
.feature-bullets li::before {
  content:""; width: 10px; height: 10px; border-radius: 50%; position:absolute; left:0; top:8px; background: var(--accent);
}

.band {
  background: linear-gradient(135deg, var(--surface-3), color-mix(in srgb, var(--surface-3) 82%, white 18%));
  border-top: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}
.quote {
  font-size: clamp(20px, 3vw, 30px); line-height: 1.3; color: var(--text); max-width: 830px;
  font-family: var(--font-heading); letter-spacing: -.03em;
}

.cta-box {
  padding: 36px; border-radius: var(--radius-xl); background: #efe5db;
  box-shadow: var(--shadow); border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: center; }

.footer { padding: 28px 0 42px; }
.footer-inner { display:flex; justify-content:space-between; gap: 18px; align-items:center; flex-wrap: wrap; color: var(--muted); }

.page-hero { padding: 54px 0 34px; }
.page-hero h1 { margin: 0 0 12px; font-size: clamp(38px,6vw,62px); }

.stack { display:grid; gap: 18px; }
.service-card .service-tag { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; margin-bottom: 12px; }

.faq details { padding: 18px 20px; border-radius: 16px; background: var(--surface); border:1px solid color-mix(in srgb, var(--text) 10%, transparent); }
.faq details + details { margin-top: 12px; }
.faq summary { cursor:pointer; font-weight: 700; color: var(--text); }
.faq p { margin-bottom: 0; }

.preview-badge {
  display:inline-flex; gap:8px; align-items:center; padding:8px 12px; border-radius:999px;
  background: color-mix(in srgb, var(--highlight) 72%, white 28%);
  color: var(--text); font-size: 13px; font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .nav-inner { padding: 14px 0; }
}
@media (max-width: 720px) {
  .nav-links { display:none; }
  .container { width: min(100% - 28px, 1180px); }
  .hero h1 { font-size: clamp(38px, 9vw, 56px); }
  .section { padding: 58px 0; }
  .cta-box, .hero-panel, .card { padding: 22px; }
}
