:root {
  --ink: #242122;
  --cream: #fbf6f0;
  --paper: #fffdf9;
  --coral: #bd5957;
  --coral-dark: #91403f;
  --blush: #f1d8ce;
  --gold: #bb8328;
  --sage: #70855e;
  --line: rgba(64, 44, 38, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px));
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 230px; height: auto; }
.site-header .brand img { width: 520px; }
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 12px 20px; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.88fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.85), transparent 35%),
    linear-gradient(120deg, #fbf7f0 0%, #f8ece5 100%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px max(48px, calc((100vw - 1180px) / 2)) 70px;
  max-width: 760px;
}
.eyebrow, .kicker {
  margin: 0 0 18px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 12px;
  font-weight: 750;
}
.hero h1 {
  margin: 0;
  font: 500 clamp(68px, 7.5vw, 112px)/.88 var(--serif);
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--coral); font-weight: 400; }
.hero-lede {
  max-width: 560px;
  margin: 30px 0 34px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: #4c4544;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--coral); box-shadow: 0 12px 26px rgba(145,64,63,.2); }
.button-primary:hover { background: var(--coral-dark); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.trust-row { display: flex; gap: 26px; margin-top: 48px; color: #6d6260; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.trust-row span::before { content: "♥"; color: var(--gold); margin-right: 8px; }

.hero-visual { position: relative; min-height: 760px; }
.portrait {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to top, rgba(39,31,31,.1), transparent 35%), url("hero-mikayla.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border-bottom-left-radius: 160px;
  box-shadow: inset 1px 0 rgba(255,255,255,.65);
}
.hello-card, .location-card {
  position: absolute;
  background: rgba(255,253,249,.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 18px 55px rgba(48,31,26,.16);
}
.hello-card { left: -62px; bottom: 76px; border-radius: 22px; padding: 22px 32px 23px 55px; }
.hello-card .heart {
  position: absolute; left: -26px; top: 28px; width: 52px; height: 52px;
  border-radius: 50%; display: grid; place-items: center; color: white; background: var(--coral);
}
.hello-card p { margin: 0 0 5px; font: 600 23px/1.1 var(--serif); }
.hello-card small { color: #766b68; }
.location-card { left: 32px; top: 122px; max-width: 170px; border-radius: 18px; padding: 18px 20px; }
.location-card strong { display: block; margin-bottom: 6px; color: var(--coral); font: 600 18px/1.1 var(--serif); }
.location-card span { font-size: 12px; line-height: 1.45; }

.section-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.intro { padding: 120px 0; text-align: center; }
.intro h2, .section-heading h2, .pricing-heading h2, .about h2, .contact h2 {
  margin: 0;
  font: 500 clamp(40px, 5vw, 66px)/1.02 var(--serif);
  letter-spacing: -.045em;
}
.intro > p:last-child { max-width: 680px; margin: 30px auto 0; color: #605754; font-size: 18px; line-height: 1.7; }

.services { padding-bottom: 130px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 45px; }
.section-heading > p { max-width: 310px; color: #746965; line-height: 1.55; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 245px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.32); }
.service-card.featured { background: var(--blush); }
.service-icon { display: block; width: 48px; height: 48px; object-fit: contain; }
.service-card h3 { margin: 32px 0 12px; font: 600 25px/1.1 var(--serif); }
.service-card p { margin: 0; color: #6e6461; line-height: 1.55; }
.service-cta { display: flex; flex-direction: column; justify-content: center; background: var(--coral); color: white; }
.service-cta .service-icon { margin-bottom: 22px; }
.service-cta p { color: rgba(255,255,255,.76); }
.service-cta a {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
  font: 600 clamp(19px, 2vw, 22px)/1.25 var(--serif);
}
.service-cta a span { min-width: 0; }
.service-cta a b { flex: 0 0 auto; font: inherit; }

.pricing { padding: 120px 0 130px; background: #272222; color: white; }
.pricing-heading { text-align: center; max-width: 720px; margin: 0 auto 55px; }
.pricing-heading > p:last-child { color: rgba(255,255,255,.58); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; align-items: stretch; }
.price-card { position: relative; min-height: 500px; display: flex; flex-direction: column; padding: 34px 26px 28px; border-radius: 18px; background: #fffaf4; color: var(--ink); }
.price-card.popular { background: #f2d8cf; transform: translateY(-14px); }
.plan-icon { width: 42px; height: 42px; margin-bottom: 18px; object-fit: contain; }
.plan-name { margin: 0 0 16px; color: var(--coral); font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.plan-name.sage { color: var(--sage); }
.plan-name.gold { color: var(--gold); }
.price { font: 500 48px/1 var(--serif); letter-spacing: -.04em; }
.price > span { font-size: 24px; vertical-align: top; }
.price small { margin-left: 4px; font: 600 14px/1 var(--sans); letter-spacing: 0; color: #6e6461; }
.minimum { min-height: 42px; color: #746965; font-size: 12px; line-height: 1.5; }
.price-card ul { margin: 22px 0 30px; padding: 0; list-style: none; font-size: 14px; line-height: 1.5; }
.price-card li { position: relative; padding: 7px 0 7px 22px; border-bottom: 1px solid var(--line); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); font-weight: 900; }
.text-link { margin-top: auto; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-top: 130px; padding-bottom: 130px; }
.reasons { display: grid; gap: 0; }
.reasons div { display: grid; grid-template-columns: 34px 1fr; align-items: center; border-bottom: 1px solid var(--line); padding: 19px 0; }
.reasons span { color: var(--coral); }
.reasons p { margin: 0; font-weight: 650; }

.contact { width: min(1240px, calc(100% - 48px)); display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; padding: 76px; border-radius: 30px; color: white; background: var(--coral); }
.kicker.light { color: rgba(255,255,255,.72); }
.contact > div > p:last-child { max-width: 480px; color: rgba(255,255,255,.74); line-height: 1.6; }
.contact-links { display: grid; align-content: center; }
.contact-links a, .contact-item { display: grid; grid-template-columns: 92px 1fr; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.2); font: 500 21px/1.2 var(--serif); }
.contact-item b { font: inherit; }
.contact-links span { color: rgba(255,255,255,.6); font: 700 10px/1.8 var(--sans); letter-spacing: .12em; text-transform: uppercase; }

footer { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 54px 0; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; }
.footer-brand img { width: 230px; }
footer > p { margin: 0; color: #756a66; font-size: 13px; }
footer > p:nth-child(2) { text-align: center; }
footer > p:last-child { text-align: right; }

@media (max-width: 1000px) {
  .site-header .brand img { width: 320px; }
  .site-header .brand img { filter: saturate(1.28) contrast(1.08); }
  .hero { grid-template-columns: 1.05fr .95fr; }
  .hero h1 { font-size: 76px; }
  .hero-copy { padding-left: 40px; padding-right: 40px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.popular { transform: none; }
}

@media (max-width: 720px) {
  .site-header { width: calc(100% - 32px); height: 76px; }
  .site-header .brand img { width: 220px; }
  nav { gap: 8px; }
  nav > a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 10px 15px; font-size: 12px; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { max-width: none; padding: 118px 24px 52px; }
  .hero h1 { font-size: clamp(58px, 18vw, 76px); }
  .hero-lede { margin: 25px 0 28px; font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { text-align: center; }
  .trust-row { flex-wrap: wrap; gap: 12px 18px; margin-top: 32px; }
  .hero-visual { min-height: 570px; }
  .portrait { border-bottom-left-radius: 0; }
  .hello-card { left: 22px; bottom: 24px; padding: 18px 24px 18px 48px; }
  .hello-card .heart { left: -17px; top: 21px; width: 42px; height: 42px; }
  .location-card { top: 20px; left: 16px; }
  .section-shell { width: calc(100% - 32px); }
  .intro { padding: 86px 0; text-align: left; }
  .intro h2, .section-heading h2, .pricing-heading h2, .about h2, .contact h2 { font-size: 43px; }
  .intro > p:last-child { font-size: 16px; }
  .services { padding-bottom: 88px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .section-heading > p { margin: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 205px; padding: 28px; }
  .service-card h3 { margin-top: 28px; }
  .pricing { padding: 86px 0; }
  .pricing-heading { text-align: left; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { min-height: 430px; }
  .about { grid-template-columns: 1fr; gap: 40px; padding-top: 88px; padding-bottom: 88px; }
  .contact { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 40px; padding: 45px 26px; border-radius: 22px; }
  .contact-links a, .contact-item { grid-template-columns: 1fr; gap: 6px; font-size: 18px; word-break: break-word; }
  footer { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 18px; }
  footer > p:nth-child(2), footer > p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
