:root {
  --bg: #f5f3f0;
  --bg-card: #ffffff;
  --text: #2b2b2b;
  --text-muted: #6b6b68;
  --accent: #7267e0;
  --accent-hover: #5d52cc;
  --border: #e3e0da;
  --radius: 14px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

header.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.brand span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text-muted);
  margin-top: 2px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-nav a:not(.btn) {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

nav.main-nav a:not(.btn):hover { opacity: 1; }

nav.main-nav a.active { opacity: 1; font-weight: 700; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero */
.hero {
  padding-top: 72px;
  padding-bottom: 64px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.hero-art {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: linear-gradient(160deg, #cdc6f7 0%, #9a8ff0 45%, #7267e0 100%);
  position: relative;
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-art::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
}

.hero-art::after {
  width: 160px;
  height: 160px;
  bottom: -40px;
  left: -30px;
  background: rgba(43, 43, 43, 0.08);
}

.hero-photo {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--border);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo.top img {
  object-position: center top;
}

@media (max-width: 760px) {
  .hero-photo { aspect-ratio: 16 / 10; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0 0 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 28px;
}

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.phone-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.phone-hint a { color: var(--text); font-weight: 600; text-decoration: none; }

/* Section */
section.block {
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid var(--border);
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}

section.block h2 {
  font-size: 1.6rem;
  margin: 0 0 16px;
  font-weight: 800;
}

section.block p {
  color: var(--text-muted);
  max-width: 65ch;
  font-size: 1.02rem;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
}

.link-more:hover { color: var(--accent-hover); }

/* Page header (sub pages) */
.page-header {
  padding-top: 56px;
  padding-bottom: 8px;
}

.page-header h1 { margin-bottom: 8px; }

.page-header .lede { margin-bottom: 0; }

.prose {
  padding: 40px 0 8px;
  max-width: 68ch;
}

.prose p {
  font-size: 1.05rem;
  color: var(--text);
}

.prose p.muted { color: var(--text-muted); }

.prose a { color: var(--accent); font-weight: 600; }

.cta-block {
  padding-top: 48px;
  padding-bottom: 72px;
}

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  margin-top: 24px;
}

footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

footer.site-footer a { color: var(--text-muted); text-decoration: none; }
footer.site-footer a:hover { color: var(--accent); }

@media (max-width: 760px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; aspect-ratio: 16/9; }
  header.site-header .wrap { flex-wrap: wrap; }
  nav.main-nav { gap: 18px; flex-wrap: wrap; }
  .card { padding: 28px; }
}
