:root {
  --bg: #fefafa;
  --text: #111015;
  --muted: #5c555e;
  --soft: #8a8290;
  --line: rgba(17, 16, 21, 0.09);
  --accent: #e24d7b;
  --accent-dark: #c22d5c;
  --accent-soft: rgba(226, 77, 123, 0.08);
  --card: rgba(255, 255, 255, 0.82);
  --shadow-sm: 0 2px 8px rgba(44, 24, 34, 0.06);
  --shadow: 0 24px 64px rgba(44, 24, 34, 0.10);
  --shadow-lg: 0 40px 80px rgba(44, 24, 34, 0.14);
  --radius: 20px;
  --radius-lg: 28px;
  --max-w: 1120px;
  --gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Header ── */
.header {
  width: min(var(--max-w), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(18px, 2.5vw, 22px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav a, .footer a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.nav a:hover, .footer a:hover { color: var(--accent); }

/* ── Hero ── */
.hero {
  width: min(var(--max-w), calc(100% - var(--gutter)));
  margin: 40px auto 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text { max-width: 600px; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--accent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
}
h1 .accent { color: var(--accent); }
.subtitle {
  font-size: clamp(20px, 2.8vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}
.intro {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}
.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 18px;
}
.button, .convertkit-button {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 28px !important;
  border-radius: 14px !important;
  font: inherit !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 0 !important;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.button:hover, .convertkit-button:hover { transform: translateY(-2px); }
.primary, .convertkit-button {
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(226, 77, 123, 0.25) !important;
}
.primary:hover, .convertkit-button:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 16px 36px rgba(226, 77, 123, 0.32) !important;
}
.secondary {
  border: 1.5px solid var(--line) !important;
  color: var(--text) !important;
  background: #fff !important;
  box-shadow: var(--shadow-sm) !important;
}
.secondary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* Trust row */
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--soft);
}
.trust-item svg { color: var(--accent); flex-shrink: 0; }

/* Hero cover */
.hero-cover {
  margin: 0;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-cover::before {
  content: "";
  position: absolute;
  inset: 14% 10%;
  background: rgba(226, 77, 123, 0.15);
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
}
.hero-cover img {
  position: relative;
  z-index: 1;
  width: min(380px, 90%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Sections ── */
.section {
  width: min(var(--max-w), calc(100% - var(--gutter)));
  margin: 0 auto 100px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-top: 80px;
  border-top: 1px solid var(--line);
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  font-weight: 700;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.content p, .about-box p, .card p, .faq p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}
.align-text p, .card p, .faq p { text-align: justify; text-justify: inter-word; }

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Facts ── */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.facts article, .card, .about-box, details {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.facts article {
  border-radius: var(--radius);
  padding: 22px;
}
.facts span {
  display: block;
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
}
.facts strong { font-size: 16px; line-height: 1.35; font-weight: 700; }

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; }

/* ── About ── */
.about-box {
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 52px);
}
.about-box h2 { margin-bottom: 20px; }
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.instagram-link:hover {
  background: rgba(226, 77, 123, 0.14);
  transform: translateY(-1px);
  color: var(--accent-dark);
}

/* ── Quote ── */
.quote-block {
  padding: clamp(40px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--text);
  color: #fff;
  text-align: center;
}
.quote-block blockquote { margin: 0; }
.quote-block p {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 700;
  font-style: italic;
}
.quote-block cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq details {
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 10px;
}
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 600;
  color: var(--soft);
  flex-shrink: 0;
  transition: transform .2s ease;
}
details[open] summary::after {
  content: "-";
}
summary::-webkit-details-marker { display: none; }
.faq p { margin: 14px 0 0; font-size: 15px; }
.faq a { color: var(--accent-dark); font-weight: 700; }

/* ── CTA ── */
.cta {
  width: min(var(--max-w), calc(100% - var(--gutter)));
  margin: 0 auto 80px;
  padding: clamp(48px, 7vw, 80px) 30px;
  text-align: center;
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 77, 123, 0.3) 0, transparent 70%);
  pointer-events: none;
}
.cta h2 {
  max-width: 640px;
  margin: 0 auto 28px;
  color: #fff;
}
.cta-sub {
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  width: min(var(--max-w), calc(100% - var(--gutter)));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 32px;
}
.footer-brand {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.footer-tagline {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
}
.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--soft);
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: var(--muted);
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-social:hover { color: var(--accent); }
.footer-bottom {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-bottom p {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.6;
}
.footer-legal {
  margin-top: 10px;
  font-size: 12px !important;
  color: var(--soft);
  max-width: 700px;
}
.footer-legal a { color: var(--accent-dark); font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 920px) {
  .header { align-items: flex-start; flex-direction: column; }
  .nav { gap: 12px 18px; flex-wrap: wrap; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { margin-top: 24px; margin-bottom: 72px; }
  .hero-text { max-width: none; }
  .hero-cover { order: -1; }
  .hero-cover img { width: min(300px, 80%); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .cta-trust { flex-wrap: wrap; gap: 12px 20px; }
}
@media (max-width: 620px) {
  :root { --gutter: 28px; }
  .header { padding: 16px 0; }
  .nav { font-size: 13px; }
  h1 { font-size: clamp(38px, 12vw, 56px); }
  .intro, .align-text p, .card p, .faq p { text-align: left; }
  .actions { align-items: stretch; }
  .button, .convertkit-button { width: 100%; white-space: normal; text-align: center; }
  .facts { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/5; }
  .card { padding: 24px 20px; }
  .about-box { padding: 24px 20px; }
  .quote-block { border-radius: var(--radius); }
  .cta { border-radius: var(--radius); }
  .footer-bottom { padding-bottom: 32px; }
  .cta-trust { flex-direction: column; align-items: center; gap: 8px; }
  .trust-row { flex-direction: column; gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .convertkit-button, .instagram-link { transition: none; }
}
