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

:root {
  --bg: #FAF5F0;
  --bg-alt: #F2EAE3;
  --accent: #C4627A;
  --accent-light: #D4889A;
  --gold: #D4A853;
  --text: #2D2D2D;
  --text-muted: #7A6E68;
  --white: #FFFFFF;
  --border: rgba(45, 45, 45, 0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

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

/* =====================
   NAVBAR
   ===================== */
.navbar {
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  padding: 4rem 3rem 5rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.art-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.art-circle--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  top: -120px; right: -80px;
}

.art-circle--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: 40px; right: 15%;
  opacity: 0.2;
}

.art-circle--3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: 100px; right: 35%;
  opacity: 0.15;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-services-list .dot { color: var(--accent); }

/* =====================
   SECTION SHARED
   ===================== */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

/* =====================
   SERVICES
   ===================== */
.services { padding: 5rem 3rem; background: var(--white); }

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-card {
  padding: 2rem 1.75rem;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease;
}

.service-card:hover { transform: translateY(-4px); }

.service-icon { margin-bottom: 1.25rem; }

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text); }

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

/* =====================
   TRANSFORMATIONS
   ===================== */
.transformations {
  padding: 6rem 3rem;
  background: var(--bg);
}

.transformations-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.transformations-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.transformations-stats {
  display: flex;
  gap: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label { font-size: 0.8rem; color: var(--text-muted); }

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

.transform-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
  opacity: 0.12;
  position: absolute;
}

.transform-inner-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.transform-art-label {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  line-height: 1.4;
}

/* =====================
   PRICING
   ===================== */
.pricing { padding: 5rem 3rem; background: var(--white); }

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  padding: 2rem 1.75rem;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  position: relative;
}

.pricing-card--featured {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.pricing-card--featured h3,
.pricing-card--featured .pricing-desc,
.pricing-card--featured .pricing-range,
.pricing-card--featured .pricing-features li { color: var(--white); }

.pricing-card--featured .pricing-card-tag { background: var(--accent); color: var(--white); }

.pricing-card--ugc {
  border-color: var(--gold);
  border-style: dashed;
}

.pricing-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
  margin-bottom: 1rem;
}

.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }

.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.pricing-range {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.pricing-card--featured .pricing-range { color: var(--gold); }

.pricing-features { list-style: none; }

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-note {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* =====================
   CLOSING
   ===================== */
.closing {
  padding: 6rem 3rem;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 600px; margin: 0 auto; }

.closing-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.closing-signature { margin-top: 2rem; }

.signature-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--text);
}

.signature-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 3rem;
  background: var(--text);
  color: var(--white);
}

.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .navbar { padding: 1.25rem 1.5rem; }

  .hero { padding: 3rem 1.5rem 4rem; min-height: unset; }

  .hero-services-list { gap: 0.35rem; }

  .services,
  .transformations,
  .pricing,
  .closing { padding: 4rem 1.5rem; }

  .transformations-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .transformations-stats { gap: 1.5rem; }

  .transform-art { margin-top: 1rem; }

  .stat-number { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .transformations-stats { flex-wrap: wrap; gap: 1.5rem; }

  .stat { min-width: 80px; }
}