:root {
  --bg: #f7f4ef;
  --bg-warm: #f2ede5;
  --fg: #1c1c1c;
  --fg-muted: #5a5a5a;
  --accent: #c8973a;
  --accent-light: #e8c47a;
  --accent-dim: rgba(200, 151, 58, 0.12);
  --sage: #5a7a5e;
  --sage-light: rgba(90, 122, 94, 0.1);
  --border: rgba(28, 28, 28, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 8px; }
.nav__logo { display: flex; align-items: center; }
.nav__name { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.nav__tag { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__cta {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav__cta:hover { background: #b8842e; }

/* ── HERO ── */
.hero {
  padding: 80px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
  align-items: start;
}
.hero__eyebrow {
  grid-column: 1;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero__headline {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  grid-column: 1;
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero__stats {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--fg); line-height: 1; }
.hero__stat-label { font-size: 11px; color: var(--fg-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero__stat-div { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hero__visual {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 60px;
}
.hero__visual-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero__transformation {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__img-slot {
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.hero__img-slot--before { border-top: 3px solid var(--fg-muted); }
.hero__img-slot--after { border-top: 3px solid var(--accent); }
.hero__slot-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__slot-text { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); font-weight: 500; }
.hero__arrow { flex-shrink: 0; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 80px;
}
.manifesto__rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 14px;
}
.manifesto__body { display: flex; flex-direction: column; gap: 16px; }
.manifesto__text { font-size: 17px; color: var(--fg-muted); line-height: 1.7; max-width: 640px; }
.manifesto__text--highlight { font-family: var(--font-display); font-size: 20px; color: var(--fg); font-weight: 400; }
.manifesto__rule--right { margin-left: auto; margin-right: 0; }

/* ── SERVICES ── */
.services {
  background: var(--bg-warm);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__header { max-width: 1200px; margin: 0 auto 56px; display: flex; flex-direction: column; gap: 16px; }
.services__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.services__title { font-family: var(--font-display); font-size: clamp(32px, 3vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services__item {
  background: var(--bg-warm);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.services__item:hover { background: var(--bg); }
.services__icon { margin-bottom: 4px; }
.services__item-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.services__item-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── PACKAGES ── */
.packages {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.packages__header { margin-bottom: 48px; display: flex; flex-direction: column; gap: 16px; }
.packages__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; }
.packages__title { font-family: var(--font-display); font-size: clamp(32px, 3vw, 48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); margin-bottom: 32px; }
.package { background: var(--bg); padding: 40px 36px; display: flex; flex-direction: column; }
.package--featured { background: var(--bg-warm); position: relative; }
.package__badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  width: fit-content;
}
.package__top { flex: 1; margin-bottom: 24px; }
.package__name { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.package__price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.package__price-note { font-size: 13px; color: var(--fg-muted); font-weight: 400; margin-left: 4px; font-family: var(--font-body); }
.package__tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.package__divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 24px; }
.package__features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.package__features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.package__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.package--featured .package__features li::before { opacity: 1; }
.packages__note { font-size: 13px; color: var(--fg-muted); text-align: center; }

/* ── CLOSING ── */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing__sub { font-size: 17px; color: rgba(247, 244, 239, 0.65); line-height: 1.7; max-width: 520px; margin: 0 auto 48px; }
.closing__visual { position: relative; display: flex; justify-content: center; align-items: center; height: 160px; }
.closing__glow { position: absolute; border-radius: 50%; filter: blur(60px); }
.closing__glow--1 { width: 200px; height: 200px; background: var(--accent); opacity: 0.15; top: -40px; }
.closing__glow--2 { width: 140px; height: 140px; background: var(--sage); opacity: 0.2; bottom: -40px; }
.closing__house { position: relative; z-index: 1; opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.footer__logo { display: flex; align-items: center; }
.footer__name { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.footer__tagline { font-size: 14px; color: var(--fg-muted); }
.footer__address { font-size: 12px; color: var(--fg-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; grid-template-columns: 1fr; gap: 0; }
  .hero__visual { grid-column: 1; grid-row: auto; padding-left: 0; align-items: flex-start; margin-top: 48px; }
  .hero__transformation { flex-direction: column; align-items: flex-start; }
  .hero__img-slot { width: 100%; height: 160px; }
  .manifesto { padding: 0 24px; margin-bottom: 60px; }
  .services { padding: 60px 24px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .packages { padding: 60px 24px; }
  .packages__grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__stat-div { display: none; }
  .nav__tag { display: none; }
}