/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F9F6F0;
  --fg: #1C1A17;
  --accent: #D4630A;
  --accent-light: rgba(212, 99, 10, 0.08);
  --muted: #8A8276;
  --surface: #FFFFFF;
  --border: rgba(28, 26, 23, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav__tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 80vh;
}

.hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  font-weight: 400;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* === SECTION LABEL === */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 32px;
}

.manifesto__inner {
  max-width: 820px;
  margin: 0 auto;
}

.manifesto__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

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

.manifesto__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(249, 246, 240, 0.65);
  margin-bottom: 24px;
}

.manifesto__body:last-child { margin-bottom: 0; }

/* === SERVICES === */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.services__header {
  margin-bottom: 56px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 520px;
}

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

.service-card {
  padding: 36px 32px 40px;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card__number {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* === PROCESS === */
.process {
  background: var(--accent-light);
  padding: 96px 32px;
}

.process > .services__header,
.process .services__header {
  margin-bottom: 56px;
}

.process__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.process__header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.process__steps {
  max-width: 820px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  position: relative;
}

.step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step__line {
  flex: 1;
  width: 1.5px;
  background: var(--border);
  margin: 8px 0;
}

.step--last .step__line { display: none; }

.step__content {
  padding-bottom: 48px;
}

.step--last .step__content { padding-bottom: 0; }

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  padding-top: 8px;
}

.step__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* === PRICING === */
.pricing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 32px;
}

.pricing__header { margin-bottom: 48px; }

.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.price-card {
  padding: 40px;
  border: 1.5px solid var(--border);
  position: relative;
}

.price-card--featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.price-card__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.price-card--featured .price-card__label { color: rgba(249, 246, 240, 0.5); }

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.price-card__period {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  opacity: 0.5;
}

.price-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}

.price-card--featured .price-card__desc { color: rgba(249, 246, 240, 0.55); }

.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card__features li {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: var(--fg);
}

.price-card--featured .price-card__features li { color: rgba(249, 246, 240, 0.8); }

.price-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card--featured .price-card__features li::before { background: rgba(212, 99, 10, 0.7); }

.pricing__note {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

/* === CLOSING === */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 32px;
}

.closing__inner {
  max-width: 820px;
  margin: 0 auto;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.closing__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(249, 246, 240, 0.6);
  margin-bottom: 24px;
}

.closing__body:last-child { margin-bottom: 0; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer__tagline {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 56px;
  }
  .hero__visual { order: -1; }
  .hero__svg { max-width: 360px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .pricing__cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 20px 48px; }
  .services, .process, .pricing, .closing, .manifesto { padding: 64px 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .nav__inner { padding: 14px 20px; }
  .price-card { padding: 28px 24px; }
}