:root {
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --ink: #18332f;
  --muted: #5d6965;
  --terracotta: #d95d42;
  --terracotta-dark: #b8422c;
  --sage: #dce6d7;
  --line: rgba(24, 51, 47, 0.16);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  text-decoration: none;
}

.brand span {
  color: var(--terracotta);
  font-style: italic;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:not(.nav-cta):hover {
  color: var(--terracotta);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--ink);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 5vw, 70px);
  min-height: 680px;
  padding-block: 70px 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.5rem, 7.1vw, 6.3rem);
}

h1 em {
  color: var(--terracotta);
  font-weight: inherit;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: 700 0.92rem var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--terracotta);
  color: white;
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.text-link {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 5px;
  color: var(--terracotta);
}

.price-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px;
}

.price-line strong {
  font-family: var(--serif);
  font-size: 2rem;
}

.price-line span {
  max-width: 110px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.portrait-wrap {
  position: relative;
  max-width: 420px;
  margin-right: 24px;
  justify-self: end;
}

.portrait-card {
  overflow: hidden;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 220px 220px 28px 28px;
  box-shadow: 0 24px 60px rgba(24, 51, 47, 0.12);
  transform: rotate(2deg);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 210px 210px 20px 20px;
  object-fit: cover;
}

.portrait-note {
  position: absolute;
  right: -35px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(24, 51, 47, 0.13);
  transform: rotate(-3deg);
}

.portrait-note > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
}

.portrait-note p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
}

.trust-strip {
  background: var(--ink);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: flex;
  align-items: center;
  min-height: 110px;
  margin: 0;
  padding: 20px 30px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.trust-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-grid span {
  margin-right: 16px;
  color: #f2aa85;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.section {
  padding-block: 120px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-copy {
  padding-top: 34px;
}

.about-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.lessons-section {
  background: var(--paper);
}

.section-heading {
  max-width: 690px;
}

.section-heading > p:last-child {
  max-width: 600px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.lesson-grid article {
  min-height: 245px;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.lesson-grid article > span {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.lesson-grid h3 {
  margin: 54px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.lesson-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.lesson-price {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
  margin-top: 20px;
  padding: 36px 40px;
  background: var(--terracotta);
  border-radius: 16px;
  color: white;
}

.lesson-price .eyebrow {
  margin-bottom: 6px;
  color: #ffe2d2;
}

.lesson-price h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.lesson-price div > p:last-child {
  margin: 5px 0 0;
  color: #ffeae1;
  font-size: 0.88rem;
}

.price {
  display: flex;
  align-items: baseline;
  margin: 0;
  white-space: nowrap;
}

.price strong {
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 500;
}

.price span {
  margin-left: 5px;
  font-size: 0.84rem;
}

.button-light {
  background: white;
  color: var(--terracotta-dark);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-copy {
  padding-top: 28px;
}

.contact-copy > p:last-child {
  max-width: 440px;
  margin-top: 25px;
  color: var(--muted);
}

.form-card {
  min-height: 470px;
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 55px rgba(24, 51, 47, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}

input,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  background: white;
  border: 1px solid rgba(24, 51, 47, 0.24);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--terracotta);
  outline: 3px solid rgba(217, 93, 66, 0.14);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--terracotta-dark);
  font-size: 0.85rem;
}

.success-message {
  padding: 105px 20px 0;
  text-align: center;
}

.success-message span {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  background: var(--sage);
  border-radius: 50%;
  font-size: 1.4rem;
  place-items: center;
}

.success-message h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
}

.success-message p {
  color: var(--muted);
}

footer {
  background: var(--ink);
  color: white;
}

footer .shell {
  display: flex;
  justify-content: space-between;
  padding-block: 30px;
}

footer p {
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 820px) {
  nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 65px 80px;
  }

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

  .portrait-wrap {
    width: min(390px, 90%);
    margin-right: 25px;
    justify-self: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .trust-grid p {
    min-height: 78px;
    padding: 15px 8px;
  }

  .trust-grid p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .section {
    padding-block: 90px;
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy,
  .contact-copy {
    padding-top: 0;
  }

  .lesson-grid {
    grid-template-columns: 1fr;
  }

  .lesson-grid article {
    min-height: 210px;
  }

  .lesson-grid h3 {
    margin-top: 35px;
  }

  .lesson-price {
    grid-template-columns: 1fr auto;
  }

  .lesson-price .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell,
  .site-header {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 4.4rem);
  }

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

  .portrait-note {
    right: -12px;
    bottom: 28px;
  }

  .lesson-price {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px;
  }

  .lesson-price .button {
    grid-column: auto;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    min-height: 0;
    padding: 25px 20px;
  }

  footer .shell {
    gap: 10px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
