:root {
    --pink: #EC008C;
    --pink-deep: #C00075;
    --pink-soft: #FFE5F2;
    --cream: #FFF8F2;
    --blue: #2BB6E6;
    --blue-deep: #1A8FBA;
    --yellow: #FFD93D;
    --yellow-soft: #FFF4B8;
    --ink: #1A1A1A;
    --ink-soft: #4A4A4A;
    --line: rgba(26,26,26,0.12);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

  /* ============ HEADER ============ */
  header.site {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  header.site .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo img { height: 56px; width: auto; display: block; }
  .logo.sr { position: absolute; left: -9999px; }
  nav.primary { display: flex; gap: 28px; font-weight: 600; font-size: 15px; }
  nav.primary a:hover { color: var(--pink); }
  .btn {
    display: inline-block;
    padding: 13px 24px;
    background: var(--pink);
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--pink);
    transition: all .18s ease;
    cursor: pointer;
  }
  .btn:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
  .btn.ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn.ghost:hover { background: var(--ink); color: white; }
  .btn.lg { padding: 18px 36px; font-size: 16px; }

  /* ============ HERO ============ */
  .hero {
    padding: 40px 0 72px;
    background:
      linear-gradient(rgba(255,248,242,0.78), rgba(255,248,242,0.92)),
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800"><rect width="1200" height="800" fill="%23FFE5F2"/></svg>');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .hero .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: stretch; }
  .hero h1 {
    font-size: 64px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--blue);
  }
  .hero h1 .accent { color: var(--pink); }
  .hero h1 .hl {
    background: var(--yellow);
    padding: 2px 10px;
    color: var(--blue);
    display: inline-block;
    line-height: 1.05;
  }
  .hero .sub {
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 540px;
  }
  .hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-photo {
    background: var(--pink-soft);
    border-radius: 8px;
    align-self: stretch;
    min-height: 480px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 32px;
    color: var(--pink-deep);
    font-weight: 700;
    font-size: 15px;
    border: 2px dashed var(--pink);
    position: relative;
    overflow: hidden;
  }
  .hero-photo-label { position: relative; z-index: 1; }

  /* Photo placeholder number badges */
  .photo-num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    border: 3px solid white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
  }
  .method-photo, .meet-photo, .story-photo { position: relative; }

  /* Real photos (replace dashed placeholders) */
  .filled { border: none !important; padding: 0 !important; }
  .real-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .method-photo .real-photo { object-position: 50% 18%; }

  /* ============ PROOF BAR ============ */
  .proof-bar {
    background: var(--blue);
    color: white;
    padding: 22px 0;
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
  }
  .proof-bar .wrap { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .proof-bar .dot { color: var(--yellow); }

  /* ============ SECTION BASE ============ */
  section.block { padding: 110px 0; }
  section.block.alt { background: var(--pink-soft); }
  section.block.sun { background: var(--yellow-soft); }
  section.block.dark { background: var(--blue); color: white; }
  section.block.dark .ink-soft { color: rgba(255,255,255,0.92); }
  section.block.dark h2.section-h { color: white; }
  section.block.dark .eyebrow { color: var(--yellow); }
  section.block.dark .hl { background: var(--yellow); color: var(--blue); }
  .eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 16px;
  }
  h2.section-h {
    font-size: 46px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 720px;
    color: var(--blue);
  }
  h2.section-h .accent { color: var(--pink); }
  h2.section-h .hl {
    background: var(--yellow);
    padding: 2px 10px;
    color: var(--blue);
  }
  .lede {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.55;
  }
  section.block.dark .lede { color: rgba(255,255,255,0.78); }

  /* ============ PROBLEM LIST ============ */
  .problem-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 32px;
    margin-bottom: 40px;
  }
  .problem-list li {
    padding-left: 36px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
  }
  .problem-list li::before {
    content: "✓";
    position: absolute;
    left: 0; top: 0;
    width: 24px; height: 24px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
  }
  /* ============ CALLOUT — SIDE-TAB (truth-bomb / pull-out insights) ============ */
  .callout-tab {
    background: white;
    border: 1px solid var(--line);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 140px 1fr;
    overflow: hidden;
    max-width: 880px;
    margin-top: 8px;
  }
  .callout-tab .tab-label {
    background: var(--blue);
    color: white;
    padding: 28px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
  }
  .callout-tab .tab-body {
    padding: 28px 32px;
    font-size: 18px;
    line-height: 1.55;
  }

  /* ============ RIBBON LABEL (section announcement) ============ */
  .ribbon-wrap { position: relative; padding-top: 14px; margin-bottom: 22px; }
  .ribbon-label {
    display: inline-block;
    background: var(--pink);
    color: white;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    position: relative;
    top: 0;
  }
  .ribbon-label::after {
    content: "";
    position: absolute;
    right: -10px; top: 0;
    width: 0; height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid var(--pink);
  }

  /* ============ METHOD ============ */
  .method-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .method-photo {
    background: white;
    border-radius: 8px;
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 32px;
    color: var(--pink-deep); font-weight: 700; font-size: 15px;
    border: 2px dashed var(--pink);
  }
  .method-body p { margin-bottom: 18px; font-size: 17px; }
  .method-pillars { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0 36px; }
  .pill {
    background: white;
    border: 2px solid var(--ink);
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
  }

  /* ============ MEET JESS ============ */
  .meet-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
  .meet-photo {
    background: var(--pink-soft);
    border-radius: 8px;
    aspect-ratio: 1/1;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 32px;
    color: var(--pink-deep); font-weight: 700; font-size: 15px;
    border: 2px dashed var(--pink);
  }
  .meet-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.6; }
  .meet-body p.lead-line { font-size: 22px; font-weight: 700; color: var(--ink); line-height: 1.35; }

  /* ============ PROGRAMS LADDER ============ */
  .ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .ladder .card {
    background: white;
    border-radius: 8px;
    padding: 36px 30px;
    border-top: 6px solid var(--pink);
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .ladder .card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
  .ladder .card.flagship { background: var(--blue); color: white; border-top-color: var(--yellow); border-top-width: 8px; }
  .ladder .card.flagship .card-label { color: var(--yellow); }
  .ladder .card.flagship .card-name { color: white; }
  .ladder .card.flagship .price, .ladder .card.flagship .card-desc { color: rgba(255,255,255,0.92); }
  .ladder .card.flagship .btn { background: var(--yellow); color: var(--blue); border-color: var(--yellow); }
  .ladder .card.flagship .btn:hover { background: white; border-color: white; }
  .card-label {
    font-size: 12px; font-weight: 800; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--pink);
    margin-bottom: 14px;
  }
  .card-name { font-size: 22px; font-weight: 900; line-height: 1.15; margin-bottom: 10px; letter-spacing: -0.01em; }
  .card-desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; flex: 1; line-height: 1.55; }
  .price { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 18px; }
  .ladder .card .btn { font-size: 13px; padding: 11px 18px; align-self: flex-start; }
  .ladder-note {
    margin-top: 48px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 140px 1fr auto;
    align-items: stretch;
    overflow: hidden;
  }
  .ladder-note .tab-label {
    background: var(--blue);
    color: white;
    padding: 28px 18px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.25;
  }
  .ladder-note .tab-body {
    padding: 28px 32px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
  }
  .ladder-note .tab-cta {
    padding: 28px 32px 28px 0;
    display: flex;
    align-items: center;
  }

  /* ============ AFTER YOU BOOK (timeline) ============ */
  .timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; }
  .step {
    background: white;
    padding: 28px 22px;
    border-radius: 8px;
    position: relative;
    color: var(--ink);
  }
  .step-num {
    font-size: 48px; font-weight: 900; color: var(--blue);
    line-height: 1; margin-bottom: 14px; letter-spacing: -0.04em;
  }
  .step-title { font-weight: 800; font-size: 15px; margin-bottom: 8px; letter-spacing: 0.02em; color: var(--pink); }
  .step-body { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

  /* ============ TESTIMONIALS ============ */
  .stories { display: grid; grid-template-columns: repeat(2, minmax(0, 440px)); justify-content: center; gap: 28px; margin-top: 48px; }
  .story {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .story-photo {
    background: var(--pink-soft);
    aspect-ratio: 16/10;
    display: flex; align-items: center; justify-content: center;
    color: var(--pink-deep); font-weight: 700; font-size: 14px;
    text-align: center; padding: 20px;
    border-bottom: 2px dashed var(--pink);
    position: relative;
  }
  .play-icon {
    width: 56px; height: 56px;
    background: var(--pink); color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    position: absolute;
    bottom: 14px; right: 14px;
  }
  /* Vertical (9:16) testimonial video tiles */
  .story-photo.video {
    aspect-ratio: auto;
    padding: 22px 0;
    border-bottom: none;
  }
  .video-frame {
    position: relative;
    display: block;
    width: 62%;
    max-width: 210px;
    aspect-ratio: 9/16;
  }
  .video-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }
  .video-frame .play-icon { width: 48px; height: 48px; font-size: 18px; bottom: 12px; right: 12px; }
  .video-frame.placeholder {
    border: 2px dashed var(--pink);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 18px;
    color: var(--pink-deep); font-weight: 700; font-size: 14px;
  }
  a.story-photo.video:hover .play-icon { background: var(--pink-deep); }
  .story-body { padding: 26px 28px 28px; }
  .story-quote { font-size: 16px; line-height: 1.55; color: var(--ink); margin-bottom: 14px; font-style: italic; }
  .story-attr { font-size: 13px; font-weight: 700; color: var(--pink); letter-spacing: 0.04em; text-transform: uppercase; }

  /* ============ FAQ ============ */
  .faq { max-width: 880px; margin-top: 48px; }
  .faq details {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--line);
    overflow: hidden;
  }
  .faq details[open] { border-color: var(--pink); }
  .faq summary {
    padding: 22px 28px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+";
    font-size: 28px;
    color: var(--pink);
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease;
  }
  .faq details[open] summary::after { content: "−"; }
  .faq-body { padding: 0 28px 24px; font-size: 16px; color: var(--ink-soft); line-height: 1.6; }

  /* ============ FINAL CTA ============ */
  .final-cta { background: var(--pink); color: white; padding: 110px 0; text-align: center; }
  .final-cta h2 {
    font-size: 56px; font-weight: 900;
    line-height: 1.05; letter-spacing: -0.025em;
    margin-bottom: 22px;
    max-width: 880px;
    margin-left: auto; margin-right: auto;
  }
  .final-cta .sub { font-size: 20px; opacity: 0.92; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
  .final-cta .btn {
    background: var(--yellow); color: var(--blue); border-color: var(--yellow);
  }
  .final-cta .btn:hover { background: white; color: var(--pink); border-color: white; }
  .final-cta h2 .hl { background: var(--yellow); color: var(--blue); padding: 2px 14px; }
  .final-cta .contact-row {
    margin-top: 32px;
    font-size: 16px;
    opacity: 0.9;
  }
  .final-cta .contact-row span { margin: 0 14px; }

  /* ============ FOOTER ============ */
  footer.site {
    background: var(--pink);
    color: rgba(255,255,255,0.92);
    padding: 72px 0 32px;
    font-size: 14px;
  }
  footer.site .cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  footer.site h4 {
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
  footer.site .footer-logo img { height: 88px; margin-bottom: 8px; }
  footer.site ul { list-style: none; }
  footer.site li { margin-bottom: 10px; }
  footer.site a:hover { color: var(--yellow); }
  footer.site .brand-blurb { line-height: 1.6; max-width: 320px; margin-top: 14px; }
  footer.site .copy {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    .hero { padding: 28px 0 56px; }
    .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 44px; }
    .hero .sub { font-size: 17px; }
    section.block { padding: 72px 0; }
    h2.section-h { font-size: 34px; }
    .lede { font-size: 17px; }
    .problem-list { grid-template-columns: 1fr; }
    .method-grid, .meet-grid { grid-template-columns: 1fr; gap: 40px; }
    .ladder { grid-template-columns: 1fr; }
    .ladder-note { grid-template-columns: 1fr; }
    .ladder-note .tab-label { padding: 16px; }
    .ladder-note .tab-cta { padding: 0 24px 24px; }
    .callout-tab { grid-template-columns: 1fr; }
    .callout-tab .tab-label { padding: 16px; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .stories { grid-template-columns: 1fr; }
    .final-cta h2 { font-size: 38px; }
    nav.primary { display: none; }
    footer.site .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
    .proof-bar .wrap { gap: 16px; font-size: 11px; }
  }

/* ============ SUBPAGE: PAGE HERO ============ */
.page-hero { padding: 80px 0 64px; background: var(--pink-soft); }
.page-hero h1 { font-size: 54px; line-height: 1.04; font-weight: 900; letter-spacing: -0.025em; color: var(--blue); max-width: 820px; }
.page-hero h1 .hl { background: var(--yellow); color: var(--blue); padding: 2px 12px; }
.page-hero h1 .accent { color: var(--pink); }
.page-hero .sub { font-size: 19px; color: var(--ink-soft); max-width: 660px; margin-top: 20px; line-height: 1.6; }
.page-hero.sun { background: var(--yellow-soft); }
.page-hero.blue { background: var(--blue); }
.page-hero.blue h1 { color: white; }
.page-hero.blue .sub { color: rgba(255,255,255,0.88); }
.page-hero.blue .eyebrow { color: var(--yellow); }

/* ============ SUBPAGE: FORM CARD ============ */
.form-card { background: white; border-radius: 8px; padding: 40px 36px; box-shadow: 0 14px 40px rgba(0,0,0,0.08); border-top: 6px solid var(--pink); }
.form-card h3 { font-size: 24px; font-weight: 900; margin-bottom: 6px; color: var(--blue); }
.form-card .form-note { font-size: 14px; color: var(--ink-soft); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border: 2px solid var(--line); border-radius: 6px; font-size: 15px; font-family: inherit; background: var(--cream); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--pink); }
.field textarea { min-height: 110px; resize: vertical; }
.form-card .btn { width: 100%; text-align: center; margin-top: 20px; }
.form-card .fine { font-size: 12.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
.check-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.check-row input { width: 18px; height: 18px; accent-color: var(--pink); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ============ SUBPAGE: RULE CARDS (Method) ============ */
.rules { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; }
.rule { background: white; border-radius: 8px; padding: 30px 22px; border-top: 6px solid var(--blue); }
.rule .rule-num { font-size: 44px; font-weight: 900; color: var(--pink); line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em; }
.rule .rule-name { font-weight: 900; font-size: 16px; margin-bottom: 8px; color: var(--blue); letter-spacing: 0.01em; text-transform: uppercase; }
.rule .rule-body { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ============ SUBPAGE: PROGRAM SPLIT ============ */
.program-block { background: white; border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 1fr 1.4fr; margin-bottom: 36px; border: 1px solid var(--line); }
.program-media { background: var(--pink-soft); min-height: 320px; position: relative; }
.program-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.program-media .media-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px; color: var(--pink-deep); font-weight: 700; font-size: 14px; }
.program-body { padding: 44px 44px 40px; }
.program-body h3 { font-size: 30px; font-weight: 900; color: var(--blue); margin-bottom: 14px; letter-spacing: -0.015em; }
.program-body p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.skills { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 24px; }
.skills .pill { font-size: 12px; padding: 7px 13px; }
.option-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.option { flex: 1; min-width: 220px; background: var(--cream); border-radius: 8px; padding: 20px 22px; border-left: 5px solid var(--pink); display: flex; flex-direction: column; }
.option .opt-name { font-weight: 800; font-size: 15px; margin-bottom: 5px; }
.option .opt-detail { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.45; }
.option .opt-price { font-weight: 900; font-size: 19px; color: var(--blue); margin-bottom: 16px; }
.option .opt-buy { margin-top: auto; align-self: flex-start; font-size: 13px; padding: 11px 20px; }

/* ============ SUBPAGE: STORE GRID ============ */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.product-card { background: white; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.product-thumb { aspect-ratio: 4/3; background: var(--pink-soft); display: flex; align-items: center; justify-content: center; padding: 24px; overflow: hidden; }
.product-thumb img { max-width: 55%; max-height: 80%; width: auto; height: auto; object-fit: contain; }
.product-thumb.photo { padding: 0; }
.product-thumb.photo img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-weight: 900; font-size: 17px; line-height: 1.3; margin-bottom: 10px; color: var(--ink); }
.product-price { font-weight: 900; font-size: 20px; color: var(--blue); margin-bottom: 18px; margin-top: auto; }
.product-info .btn { font-size: 13px; padding: 11px 18px; align-self: flex-start; }

/* ============ SUBPAGE: PRODUCT PAGE ============ */
.product-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.product-gallery { background: var(--pink-soft); border-radius: 8px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; padding: 48px; }
.product-gallery img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-detail h1 { font-size: 38px; font-weight: 900; color: var(--blue); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px; }
.product-detail .big-price { font-size: 30px; font-weight: 900; color: var(--pink); margin-bottom: 26px; }
.product-detail p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; }
.detail-list { list-style: none; margin: 0 0 26px; }
.detail-list li { padding-left: 32px; position: relative; font-size: 15.5px; margin-bottom: 10px; line-height: 1.45; }
.detail-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; background: var(--pink); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 11px; }

/* ============ SUBPAGE: BREADCRUMB STRIP ============ */
.crumb { padding: 18px 0; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.crumb a { color: var(--pink); }

/* ============ SUBPAGE RESPONSIVE ============ */
@media (max-width: 900px) {
  .page-hero h1 { font-size: 38px; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .rules { grid-template-columns: 1fr 1fr; }
  .program-block { grid-template-columns: 1fr; }
  .program-media { min-height: 240px; }
  .program-body { padding: 32px 26px; }
  .store-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
}
