:root {
  color-scheme: light;
  --ink: #30212a;
  --muted: #7a6470;
  --line: #ecd1dd;
  --paper: #fff8fb;
  --white: #ffffff;
  --petal: #ffe7f0;
  --pink: #e9578e;
  --rose: #b92f6b;
  --berry: #7f234f;
  --mint: #d8f2e6;
  --shadow: 0 20px 50px rgba(127, 35, 79, 0.14);
  --studio-bg: linear-gradient(145deg, #fff8fb 0%, #ffe7f0 48%, #fff1f7 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(233, 87, 142, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8fb 0%, #ffe7f0 48%, #fff 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 44px;
}

.topbar,
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar {
  padding: 8px 0 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(185, 47, 107, 0.25);
  object-fit: contain;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-nav,
.footer-links,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav {
  justify-content: flex-end;
}

.site-nav a,
.footer-links a,
.button {
  border: 1px solid rgba(236, 209, 221, 0.9);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--berry);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(127, 35, 79, 0.08);
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: var(--pink);
  background: var(--petal);
  outline: none;
}

.button.primary {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--pink));
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(236, 209, 221, 0.9);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(255, 231, 240, 0.12), rgba(127, 35, 79, 0.18)),
    var(--hero-image) center / cover no-repeat,
    var(--studio-bg);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 620px;
  padding: 34px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  color: var(--berry);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  color: var(--berry);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
  color: var(--berry);
  font-size: 1.08rem;
}

.hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.section {
  padding: 34px 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.quote,
.price-card {
  border: 1px solid rgba(236, 209, 221, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(127, 35, 79, 0.08);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.story-copy {
  display: grid;
  gap: 14px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 16px;
}

.about-photo-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-photo-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(236, 209, 221, 0.9);
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.about-photo-grid img {
  width: 100%;
  height: auto;
  max-height: 540px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
  background: linear-gradient(145deg, #fff8fb, #ffe7f0);
}

.about-photo-grid figcaption {
  margin-top: 10px;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.45;
}

.milestone-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.milestone-list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.milestone-list strong {
  display: block;
  color: var(--berry);
  font-size: 1rem;
}

.milestone-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
}

.credential-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: center;
}

.credential-copy {
  border: 1px solid rgba(236, 209, 221, 0.9);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(127, 35, 79, 0.08);
}

.credential-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.cert-frame {
  display: grid;
  border: 1px solid rgba(236, 209, 221, 0.9);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(145deg, rgba(255, 248, 251, 0.95), rgba(255, 231, 240, 0.72));
  box-shadow: var(--shadow);
}

.cert-frame img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.card p,
.quote p,
.price-card p,
.list li {
  color: var(--muted);
  line-height: 1.65;
}

.photo-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.photo-band img,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(236, 209, 221, 0.9);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-card {
  display: grid;
  min-height: 360px;
}

.soft-panel {
  border-radius: 8px;
  padding: 34px;
  border: 1px solid rgba(236, 209, 221, 0.9);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.price {
  margin: 10px 0 4px;
  color: var(--berry);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.site-footer {
  padding: 32px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

@media (max-width: 840px) {
  .topbar,
  .section-head,
  .story-grid,
  .about-photo-grid,
  .credential-panel,
  .photo-band,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .topbar,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero::after {
    min-height: 250px;
    order: -1;
  }

  .hero-content {
    padding: 22px;
  }

  .about-photo-grid.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 22px, 1180px);
    padding-top: 10px;
  }

  .hero {
    min-height: 0;
  }

  .hero::after {
    min-height: 220px;
  }

  .hero-content,
  .soft-panel,
  .card,
  .quote,
  .price-card,
  .credential-copy {
    padding: 20px;
  }

  .button,
  .site-nav a,
  .footer-links a {
    width: 100%;
    text-align: center;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }
}
