:root {
    --cream: #FBF6EF;
    --cream-alt: #F3EDE2;
    --teal: #1F6F6B;
    --teal-dark: #16504D;
    --teal-tint: #E8F2F1;
    --terracotta: #D97D54;
    --terracotta-dark: #B85C2E;
    --terracotta-tint: #F3E4D8;
    --ink: #2B2620;
    --muted: #756E64;
    --white: #FFFFFF;
    --line: rgba(43,38,32,0.11);
    --shadow: 0 24px 60px -40px rgba(43,38,32,0.5);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Work Sans', sans-serif;
    background:
      radial-gradient(circle at 8% 4%, rgba(217,125,84,0.08), transparent 24rem),
      var(--cream);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .wordmark { font-family: 'Fraunces', serif; font-weight: 600; }
  a { color: inherit; text-decoration: none; }
  button, input, textarea { font: inherit; }
  .wrap { width: min(1080px, calc(100% - 48px)); margin-inline: auto; }

  /* Navigation */
  nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; }
  .brand { display: inline-flex; align-items: center; gap: 10px; }
  .brand-mark {
    width: 32px; height: 32px; display: grid; place-items: center;
    border-radius: 50% 46% 48% 44%; background: var(--teal); color: var(--white);
    font-family: 'Fraunces', serif; font-weight: 600; transform: rotate(-4deg);
    letter-spacing: -4px; font-size: 16px;
  }
  .brand-mark::first-letter {
    margin-right: -2px;
  }
  .wordmark { font-size: 23px; color: var(--teal-dark); letter-spacing: -0.02em; }
  .nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
  .nav-links a:not(.btn) { color: var(--muted); }
  .nav-links a:not(.btn):hover { color: var(--teal-dark); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; cursor: pointer; padding: 12px 21px; border-radius: 9px;
    font-weight: 600; font-size: 14px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 10px 20px -15px var(--teal-dark); }
  .btn-primary:hover { background: var(--teal-dark); }
  .btn-ghost { border: 1.5px solid var(--teal); color: var(--teal); background: transparent; }

  /* Hero */
  .hero {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 66px; align-items: center;
    padding: 66px 0 92px;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px;
    border-radius: 999px; background: var(--terracotta-tint); color: var(--terracotta-dark);
    font-size: 12px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 20px;
  }
  .eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); }
  .hero h1 { font-size: clamp(40px, 5.3vw, 55px); line-height: 1.04; letter-spacing: -0.035em; max-width: 690px; }
  .hero h1 em { color: var(--teal); font-style: normal; position: relative; white-space: nowrap; }
  .hero h1 em::after {
    content: ''; position: absolute; left: 1%; right: 0; bottom: -5px; height: 7px;
    background: rgba(217,125,84,0.28); border-radius: 50%; transform: rotate(-1deg); z-index: -1;
  }
  .lead { max-width: 570px; margin: 24px 0 28px; font-size: 18px; color: var(--muted); }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13px; color: var(--muted); }
  .hero-proof strong { color: var(--teal-dark); }

  /* Conversation sample */
  .convo-wrap { position: relative; }
  .convo-wrap::before {
    content: 'practice, not pressure'; position: absolute; top: -34px; right: 18px;
    color: var(--terracotta-dark); font-family: 'Fraunces', serif; font-size: 15px;
    transform: rotate(3deg);
  }
  .convo-card {
    position: relative; background: var(--white); border: 1px solid rgba(43,38,32,0.07);
    border-radius: 24px 18px 22px 19px; padding: 28px; box-shadow: var(--shadow);
    transform: rotate(0.7deg);
  }
  .convo-card::after {
    content: ''; position: absolute; width: 56px; height: 18px; top: -8px; left: 34px;
    background: rgba(217,125,84,0.18); transform: rotate(-5deg); border-radius: 2px;
  }
  .convo-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
  .convo-tag { font-size: 12px; color: var(--teal-dark); background: var(--teal-tint); padding: 5px 11px; border-radius: 999px; font-weight: 600; }
  .lesson-level { font-size: 12px; color: var(--muted); }
  .bubble { max-width: 84%; padding: 12px 15px; border-radius: 15px; font-size: 15px; margin-bottom: 11px; }
  .bubble.tutor { background: var(--teal-tint); color: var(--teal-dark); border-bottom-left-radius: 4px; }
  .bubble.learner { background: var(--teal); color: var(--white); margin-left: auto; border-bottom-right-radius: 4px; }
  .correction {
    margin: 16px 0 4px; padding: 12px 13px; border-left: 3px solid var(--terracotta);
    background: #FFF9F5; border-radius: 0 9px 9px 0; font-size: 13px; color: var(--muted);
  }
  .correction strong { color: var(--ink); }
  .convo-foot { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--muted); }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); }

  /* Sections */
  section { padding: 72px 0; }
  .section-band { background: var(--cream-alt); border-block: 1px solid rgba(43,38,32,0.04); }
  .section-head { max-width: 620px; margin-bottom: 40px; }
  .eyebrow-label { display: block; margin-bottom: 10px; color: var(--teal-dark); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
  .section-head h2 { font-size: clamp(30px, 4vw, 38px); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 12px; }
  .section-head p { color: var(--muted); }

  /* Benefits */
  .benefit-list { border-top: 1px solid var(--line); }
  .benefit {
    display: grid; grid-template-columns: 54px 220px 1fr; gap: 26px; align-items: start;
    padding: 25px 0; border-bottom: 1px solid var(--line);
  }
  .benefit-num { font-family: 'Fraunces', serif; color: var(--terracotta); font-size: 25px; }
  .benefit h3 { color: var(--teal-dark); font-size: 20px; line-height: 1.2; }
  .benefit p { max-width: 610px; color: var(--ink); }

  /* Lesson path */
  .lesson-card { background: var(--white); border-radius: 22px; padding: 34px; box-shadow: var(--shadow); }
  .lesson-path { display: grid; grid-template-columns: repeat(7, 1fr); position: relative; }
  .lesson-path::before { content: ''; position: absolute; top: 18px; left: 6%; right: 6%; height: 1px; background: rgba(31,111,107,0.22); }
  .step { position: relative; text-align: center; padding: 0 7px; }
  .step-num {
    position: relative; z-index: 1; width: 37px; height: 37px; margin: 0 auto 12px;
    display: grid; place-items: center; border-radius: 50%; background: var(--cream);
    border: 1px solid rgba(31,111,107,0.2); color: var(--terracotta-dark); font-family: 'Fraunces', serif; font-weight: 600;
  }
  .step-label { font-size: 13px; font-weight: 600; }
  .lesson-note { margin-top: 26px; padding-top: 20px; border-top: 1px dashed var(--line); text-align: center; color: var(--muted); font-size: 14px; }

  /* Pricing */
  .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
  .price-card { position: relative; background: var(--white); border-radius: 20px; padding: 31px; border: 1px solid rgba(43,38,32,0.06); }
  .price-card.featured { background: var(--teal); color: var(--white); transform: translateY(-7px); box-shadow: var(--shadow); }
  .popular { position: absolute; top: 17px; right: 18px; background: rgba(255,255,255,0.16); color: var(--white); padding: 5px 9px; border-radius: 999px; font-size: 11px; font-weight: 600; }
  .price-card h3 { font-size: 19px; }
  .price { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 600; margin: 10px 0 6px; }
  .price span { font-family: 'Work Sans', sans-serif; font-size: 14px; font-weight: 400; opacity: 0.75; }
  .price-copy { color: var(--muted); font-size: 14px; min-height: 44px; }
  .featured .price-copy { color: rgba(255,255,255,0.78); }
  .price-card ul { list-style: none; margin: 20px 0; }
  .price-card li { padding: 6px 0; font-size: 14px; color: var(--muted); }
  .price-card li::before { content: '✓'; margin-right: 9px; color: var(--teal); font-weight: 600; }
  .featured li { color: rgba(255,255,255,0.86); }
  .featured li::before { color: var(--white); }
  .price-card .btn { width: 100%; }

  /* Contact */
  .contact-shell {
    display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 50px; align-items: start;
    padding: 42px; background: var(--white); border-radius: 24px 18px 22px 19px; box-shadow: var(--shadow);
  }
  .contact-copy h2 { font-size: 34px; line-height: 1.15; margin: 7px 0 13px; }
  .contact-copy p { color: var(--muted); }
  .contact-email { display: inline-block; margin-top: 18px; color: var(--teal-dark); font-weight: 600; }
  .contact-form { display: grid; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  label { display: block; margin-bottom: 6px; color: var(--teal-dark); font-size: 12px; font-weight: 600; }
  input, textarea {
    width: 100%; border: 1px solid rgba(43,38,32,0.15); border-radius: 9px;
    background: var(--cream); color: var(--ink); padding: 12px 13px; outline: none;
  }
  input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31,111,107,0.1); }
  textarea { min-height: 122px; resize: vertical; }
  .form-note { font-size: 12px; color: var(--muted); }
  .hidden-field { position: absolute; left: -9999px; }

  footer {
    min-height: 90px; display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; gap: 16px; flex-wrap: wrap;
  }
  footer a { color: var(--teal-dark); }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 45px; }
    .hero-copy { max-width: 700px; }
    .convo-wrap { max-width: 620px; }
    .benefit { grid-template-columns: 45px 190px 1fr; }
    .lesson-path { grid-template-columns: repeat(4, 1fr); gap: 22px 0; }
    .lesson-path::before { display: none; }
    .contact-shell { grid-template-columns: 1fr; }
  }
  @media (max-width: 680px) {
    .wrap { width: min(100% - 34px, 1080px); }
    .nav-links a:not(.btn) { display: none; }
    .hero { padding-bottom: 66px; }
    .hero h1 em { white-space: normal; }
    section { padding: 58px 0; }
    .benefit { grid-template-columns: 38px 1fr; gap: 12px; }
    .benefit p { grid-column: 2; }
    .lesson-card { padding: 27px 20px; }
    .lesson-path { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .price-card.featured { transform: none; }
    .contact-shell { padding: 30px 22px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn { transition: none; }
  }