:root {
  --wine: #6f4652;
  --wine-deep: #4c2d36;
  --rose: #a77880;
  --blush: #f8d7de;
  --blush-soft: #fff3f6;
  --paper: #fffafb;
  --white: #ffffff;
  --ink: #2f2427;
  --muted: #6f6064;
  --line: rgba(111, 70, 82, 0.16);
  --shadow: 0 24px 70px rgba(76, 45, 54, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--white);
  color: var(--wine-deep);
  padding: 12px 18px;
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-block { padding-block: 110px; }

.site-header {
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  min-height: 74px;
  padding: 10px 12px 10px 16px;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background: rgba(255, 250, 251, 0.9);
  box-shadow: 0 12px 42px rgba(76, 45, 54, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px 14px 14px 5px;
  display: grid;
  place-items: center;
  background: var(--wine);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.brand strong,
.brand small { display: block; }

.brand strong { font-size: 15px; letter-spacing: 0.01em; }
.brand small { color: var(--muted); font-size: 12px; line-height: 1.35; }

.site-nav { display: flex; align-items: center; gap: 8px; }

.site-nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible { color: var(--wine-deep); background: var(--blush-soft); }

.site-nav .nav-cta { background: var(--wine); color: var(--white); padding-inline: 18px; }
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible { background: var(--wine-deep); color: var(--white); }

.menu-button { display: none; }

.hero {
  min-height: calc(100svh - 102px);
  padding-block: 84px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

.hero-copy { max-width: 690px; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--blush); }

h1, h2 {
  margin: 0;
  color: var(--wine-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(48px, 6.5vw, 84px); }
h2 { font-size: clamp(38px, 4.6vw, 60px); }

h3 { margin: 0; color: var(--wine-deep); line-height: 1.25; }

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }

.button {
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 16px 16px 16px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--wine); color: var(--white); box-shadow: 0 14px 30px rgba(111, 70, 82, 0.22); }
.button-primary:hover { background: var(--wine-deep); }
.button-light { background: var(--white); color: var(--wine-deep); min-width: 224px; }

.text-link { color: var(--wine-deep); font-weight: 700; text-underline-offset: 5px; }

.trust-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 400px);
  height: 400px;
  justify-self: end;
  display: grid;
  place-items: center;
}

.portrait-backdrop {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(167, 120, 128, 0.14);
  border-radius: 50%;
  background: var(--blush);
}

.portrait {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 280px;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.section-intro { max-width: 760px; margin-bottom: 50px; }
.section-intro.narrow { max-width: 620px; }
.section-intro > p:last-child { color: var(--muted); font-size: 18px; margin: 22px 0 0; }

.concern-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.concern-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 8px; background: var(--white); }
.concern-card:nth-child(2), .concern-card:nth-child(3) { background: var(--blush-soft); }
.card-number { display: inline-block; margin-bottom: 48px; color: var(--rose); font-size: 13px; font-weight: 800; }
.concern-card h3 { font-size: 24px; }
.concern-card p { max-width: 440px; margin: 14px 0 0; color: var(--muted); }

.method-section { padding-block: 94px; background: var(--wine-deep); color: var(--white); }
.method-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 90px; align-items: start; }
.method-grid h2 { color: var(--white); }
.method-copy { padding-top: 8px; }
.method-copy p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.78); font-size: 18px; }

.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps-grid li { position: relative; min-height: 230px; padding: 24px; border-top: 1px solid var(--line); }
.steps-grid li > span { display: block; color: var(--rose); font-family: Georgia, serif; font-size: 30px; margin-bottom: 40px; }
.steps-grid h3 { font-size: 20px; }
.steps-grid p { color: var(--muted); font-size: 15px; }

.session-strip { margin-top: 46px; padding: 22px 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: var(--blush); border-radius: 22px 22px 22px 7px; }
.session-strip div { padding-right: 14px; border-right: 1px solid rgba(111, 70, 82, 0.2); }
.session-strip div:last-child { border: 0; }
.session-strip small, .session-strip strong { display: block; }
.session-strip small { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.09em; }
.session-strip strong { margin-top: 4px; color: var(--wine-deep); }

.companion-section { padding-block: 110px; background: var(--blush-soft); overflow: hidden; }
.companion-grid { display: grid; grid-template-columns: 0.9fr 1fr; gap: 100px; align-items: center; }
.companion-grid > div:last-child > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.companion-visual { position: relative; min-height: 430px; }
.companion-visual::before { content: ""; position: absolute; inset: 40px 30px; border-radius: 50%; background: var(--blush); filter: blur(1px); }
.mini-card { position: absolute; width: min(330px, 85%); padding: 22px; border: 1px solid rgba(111, 70, 82, 0.1); border-radius: 20px 20px 20px 7px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 22px 50px rgba(76, 45, 54, 0.12); }
.mini-card span, .mini-card strong, .mini-card i { display: block; }
.mini-card span { color: var(--rose); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.mini-card strong { margin: 12px 0; color: var(--wine-deep); }
.mini-card i { color: var(--muted); font-size: 13px; font-style: normal; }
.mini-card-a { top: 14px; left: 0; transform: rotate(-4deg); }
.mini-card-b { top: 142px; right: 0; transform: rotate(4deg); }
.mini-card-c { bottom: 8px; left: 30px; transform: rotate(-1deg); }

.about-grid { display: grid; grid-template-columns: 0.8fr 1.15fr; gap: 100px; }
.about-title { position: sticky; top: 120px; align-self: start; }
.credential { color: var(--muted); }
.about-copy > p { margin: 0 0 22px; color: var(--muted); font-size: 18px; }
.about-facts { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.about-facts div { padding: 18px; border-left: 2px solid var(--blush); }
.about-facts strong, .about-facts span { display: block; }
.about-facts strong { color: var(--wine-deep); font-family: Georgia, serif; font-size: 25px; }
.about-facts span { margin-top: 5px; color: var(--muted); font-size: 12px; }

.faq-section { padding-top: 40px; }
.faq-list { max-width: 860px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 4px; cursor: pointer; color: var(--wine-deep); font-size: 18px; font-weight: 750; }
.faq-list details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); }

.contact-section { padding: 80px 0 36px; }
.contact-card { padding: 56px; border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 10px; display: flex; align-items: center; justify-content: space-between; gap: 56px; background: var(--wine); color: var(--white); }
.contact-card h2 { max-width: 760px; color: var(--white); }
.contact-card p:not(.eyebrow) { max-width: 660px; color: rgba(255, 255, 255, 0.78); }

.site-footer { padding-block: 44px 64px; display: grid; grid-template-columns: 1fr auto; gap: 24px; color: var(--muted); font-size: 13px; }
.site-footer strong, .site-footer span { display: block; }
.site-footer strong { color: var(--wine-deep); font-size: 15px; }
.site-footer nav { display: flex; gap: 18px; }
.site-footer a, .footer-link { text-underline-offset: 4px; }
.footer-link, .privacy-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.site-footer > p { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); }

.cookie-banner[hidden] { display: none; }
.cookie-banner {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 20px;
  width: min(920px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transform: translateX(-50%);
  background: rgba(255, 250, 251, 0.98);
  box-shadow: 0 20px 70px rgba(76, 45, 54, 0.2);
  backdrop-filter: blur(16px);
}
.cookie-copy { max-width: 620px; }
.cookie-copy strong { color: var(--wine-deep); font-family: Georgia, "Times New Roman", serif; font-size: 21px; }
.cookie-copy p { margin: 5px 0 2px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.privacy-text-button { color: var(--wine); font-size: 14px; font-weight: 700; }
.cookie-actions, .privacy-actions { display: flex; gap: 10px; }
.cookie-button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--wine);
  border-radius: 13px 13px 13px 5px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}
.cookie-reject { background: var(--white); color: var(--wine); }
.cookie-accept { background: var(--wine); color: var(--white); }
.cookie-button:hover { background: var(--wine-deep); color: var(--white); }

.privacy-dialog {
  width: min(700px, calc(100% - 28px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 28px 28px 28px 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(47, 36, 39, 0.28);
}
.privacy-dialog::backdrop { background: rgba(47, 36, 39, 0.52); backdrop-filter: blur(3px); }
.privacy-dialog-inner { position: relative; padding: 38px; }
.privacy-dialog h2 { font-size: clamp(32px, 6vw, 48px); }
.privacy-dialog h3 { margin-top: 28px; font-size: 20px; }
.privacy-dialog p { color: var(--muted); }
.privacy-dialog a { color: var(--wine); }
.privacy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--wine-deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.privacy-actions { margin-top: 30px; flex-wrap: wrap; }

:focus-visible { outline: 3px solid rgba(167, 120, 128, 0.5); outline-offset: 3px; }

@media (max-width: 900px) {
  .menu-button { width: 44px; height: 44px; border: 0; border-radius: 12px; display: grid; place-content: center; gap: 4px; background: var(--blush-soft); }
  .menu-button span:not(.sr-only) { width: 20px; height: 2px; background: var(--wine-deep); }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; display: none; flex-direction: column; align-items: stretch; background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 74px; }
  .portrait-wrap { justify-self: center; }
  .method-grid, .companion-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .session-strip { grid-template-columns: repeat(2, 1fr); }
  .session-strip div:nth-child(2) { border: 0; }
  .about-title { position: static; }
}

@media (max-width: 600px) {
  .section-shell { width: min(100% - 28px, 1160px); }
  .section-block { padding-block: 76px; }
  .site-header { top: 8px; margin-top: 8px; }
  .brand small { display: none; }
  .hero { padding-block: 62px 66px; }
  h1 { font-size: clamp(42px, 14vw, 60px); }
  h2 { font-size: clamp(34px, 11vw, 48px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-list { gap: 7px; }
  .portrait-wrap { width: min(290px, 100%); height: 290px; }
  .portrait-backdrop { width: 265px; height: 265px; }
  .portrait { width: 220px; height: 220px; border-width: 7px; }
  .concern-grid, .steps-grid, .session-strip, .about-facts { grid-template-columns: 1fr; }
  .concern-card { min-height: 220px; }
  .concern-card:nth-child(3) { background: var(--white); }
  .card-number { margin-bottom: 32px; }
  .method-section, .companion-section { padding-block: 76px; }
  .companion-visual { min-height: 390px; }
  .session-strip div { padding: 6px 0 14px; border-right: 0; border-bottom: 1px solid rgba(111, 70, 82, 0.2); }
  .session-strip div:last-child { border: 0; }
  .contact-section { padding-top: 40px; }
  .contact-card { padding: 34px 24px; flex-direction: column; align-items: stretch; gap: 24px; }
  .button-light { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { flex-wrap: wrap; }
  .cookie-banner { bottom: 10px; padding: 18px; align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .privacy-dialog-inner { padding: 32px 22px 24px; }
  .privacy-actions { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
