:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f0;
  --surface: #ffffff;
  --ink: #151922;
  --muted: #5f6670;
  --accent: #5f7b55;
  --accent-dark: #48633f;
  --accent-soft: #edf1e8;
  --line: #dfddd5;
  --shadow: 0 18px 55px rgba(28, 31, 28, 0.08);
  --radius: 8px;
  --container: 1364px;
  --header-height: 84px;
  font-family: "Inter", "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: inherit;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  font-size: 23px;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  color: #171b24;
  font-size: 17px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(95, 123, 85, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: var(--accent);
}

.hero-section {
  border-bottom: 1px solid #ece9e1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(470px, 1fr);
  gap: 84px;
  align-items: center;
  padding: 76px 0 72px;
}

.hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: 68px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 860;
}

.hero-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #373d47;
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f1eee7;
}

.hero-media img {
  width: 100%;
  height: min(64vw, 646px);
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 850;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.section-intro {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.method-grid,
.experience-grid,
.coach-grid,
.keyword-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: 76px;
  align-items: center;
}

.keyword-section {
  padding: 72px 0;
  border-bottom: 1px solid #ece9e1;
  background: #fff;
}

.keyword-grid {
  align-items: start;
}

.keyword-content {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
}

.method-section {
  padding-top: 78px;
}

.method-steps {
  position: relative;
  display: grid;
  gap: 30px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.method-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: #c9d1c1;
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  align-items: start;
}

.step-index {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(95, 123, 85, 0.18);
}

.method-steps h3 {
  color: var(--accent-dark);
}

.method-steps p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--muted);
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #efece5;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.experience-section,
.testimonials-section,
.faq-section {
  background: var(--bg-soft);
}

.experience-grid {
  grid-template-columns: minmax(430px, 1fr) minmax(0, 0.92fr);
}

.experience-image img {
  height: 500px;
  object-position: center;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.feature-item,
.coach-facts article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
}

.feature-icon,
.fact-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eff1eb;
  color: var(--accent-dark);
}

.feature-icon svg,
.fact-icon svg {
  width: 28px;
  height: 28px;
}

.feature-item h3,
.coach-facts h3 {
  color: var(--accent-dark);
  font-size: 19px;
}

.feature-item p,
.coach-facts p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.inline-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 32px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
}

.inline-link::after {
  content: "→";
  margin-left: 10px;
}

.coach-grid {
  grid-template-columns: minmax(440px, 0.94fr) minmax(0, 1fr);
}

.coach-image img {
  height: 680px;
  object-position: center;
}

.coach-copy > p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.coach-facts {
  display: grid;
  gap: 26px;
  margin-top: 38px;
}

blockquote {
  margin: 38px 0 0;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: #20242c;
}

blockquote p {
  position: relative;
  padding-left: 46px;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
}

blockquote p::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -18px;
  color: var(--accent);
  font-size: 78px;
  line-height: 1;
  font-style: normal;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  padding-left: 46px;
  color: var(--accent-dark);
  font-style: normal;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 610px;
  padding: 44px 40px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}

.offer-card-featured {
  border-color: #c9d6c1;
  box-shadow: 0 22px 58px rgba(95, 123, 85, 0.1);
}

.offer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  color: var(--accent-dark);
}

.offer-icon svg {
  width: 58px;
  height: 58px;
}

.offer-card h3 {
  font-size: 24px;
}

.price {
  margin-top: 20px;
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
  font-weight: 850;
}

.offer-subtitle {
  min-height: 34px;
  margin-top: 8px;
  color: #3f444c;
  font-size: 16px;
}

.offer-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  color: #3d444d;
  text-align: left;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-note {
  margin-top: 30px;
  color: #4f565f;
  text-align: center;
  font-size: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px;
}

.testimonial {
  text-align: center;
}

.avatar {
  width: 136px;
  height: 136px;
  margin: 0 auto 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 16px 36px rgba(28, 31, 28, 0.12);
}

.avatar-claire {
  object-position: 16.6% center;
}

.avatar-mehdi {
  object-position: 50% center;
}

.avatar-antoine {
  object-position: 83.3% center;
}

.testimonial p {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  color: #313741;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial p::before,
.testimonial p::after {
  color: var(--accent);
  font-size: 38px;
  line-height: 0;
  font-weight: 900;
}

.testimonial p::before {
  content: "“";
  margin-right: 7px;
}

.testimonial p::after {
  content: "”";
  margin-left: 7px;
}

.testimonial footer {
  width: fit-content;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 2px solid #b8c5ae;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 15px;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-list article {
  padding: 26px 0;
  border-bottom: 1px solid #ddd9cf;
}

.faq-list article:first-child {
  border-top: 1px solid #ddd9cf;
}

.faq-list h3 {
  color: var(--accent-dark);
  font-size: 21px;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

.contact-grid {
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.contact-card {
  position: relative;
  min-height: 610px;
  background: var(--bg-soft);
  overflow: hidden;
}

.contact-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.9) 72%);
}

.contact-card-copy {
  position: relative;
  z-index: 1;
  max-width: 360px;
  padding: 420px 44px 42px;
}

.small-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--accent);
}

.small-icon svg {
  width: 38px;
  height: 38px;
}

.contact-card h2 {
  font-size: 36px;
}

.contact-card p {
  margin-top: 16px;
  color: #343a44;
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 24px;
  align-content: center;
  padding: 74px 0 74px 58px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label span {
  color: #303741;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 18px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(95, 123, 85, 0.14);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 27px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 700;
}

.form-status.is-error {
  color: #a44235;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  min-height: 148px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.footer-brand p {
  margin: 14px 0 0 54px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

address {
  font-style: normal;
  color: #323942;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-dark);
}

.legal-page {
  background: var(--bg-soft);
}

.legal-main {
  padding: 88px 0;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.legal-card h1 {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.15;
}

.legal-card h2 {
  margin-top: 36px;
  font-size: 25px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 48px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-copy p {
    font-size: 20px;
  }

  .method-grid,
  .experience-grid,
  .coach-grid,
  .keyword-grid,
  .faq-grid,
  .contact-grid {
    gap: 46px;
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 76px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 36px rgba(20, 23, 28, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeece6;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-nav a {
    min-height: auto;
    border-bottom: 0;
    font-size: 14px;
  }

  .hero-grid,
  .method-grid,
  .experience-grid,
  .coach-grid,
  .keyword-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 42px 0 32px;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .hero-copy p {
    font-size: 19px;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-media img {
    height: 320px;
    min-height: 0;
  }

  .section {
    padding: 74px 0;
  }

  h2 {
    font-size: 38px;
  }

  .experience-image {
    order: 2;
  }

  .experience-copy {
    order: 1;
  }

  .coach-image img,
  .image-frame img,
  .experience-image img {
    height: 440px;
  }

  .offers-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .contact-grid {
    width: 100%;
  }

  .contact-card {
    min-height: 520px;
  }

  .contact-form {
    padding: 42px 16px 66px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 38px 0;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .brand {
    max-width: 220px;
    font-size: 18px;
  }

  .hero-grid {
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 20px;
    font-size: 16px;
  }

  .hero-media img {
    height: 220px;
    object-position: 58% center;
  }

  .section {
    padding: 52px 0;
  }

  .method-section {
    padding-top: 28px;
  }

  .section-label {
    font-size: 12px;
  }

  h2,
  .legal-card h1 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .method-steps li,
  .feature-item,
  .coach-facts article {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .method-steps::before {
    left: 21px;
  }

  .step-index {
    width: 44px;
    height: 44px;
  }

  .feature-icon,
  .fact-icon {
    width: 44px;
    height: 44px;
  }

  .feature-icon svg,
  .fact-icon svg {
    width: 23px;
    height: 23px;
  }

  .image-frame img,
  .experience-image img,
  .coach-image img {
    height: 360px;
  }

  .coach-image img {
    object-position: 56% center;
  }

  blockquote {
    padding: 26px 22px;
  }

  blockquote p {
    padding-left: 0;
    font-size: 19px;
  }

  blockquote p::before {
    position: static;
    display: block;
    margin-bottom: -8px;
  }

  blockquote cite {
    padding-left: 0;
  }

  .offer-card {
    padding: 34px 24px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 430px;
  }

  .contact-card-copy {
    max-width: none;
    padding: 250px 24px 28px;
  }

  .contact-card h2 {
    font-size: 30px;
  }

  .legal-main {
    padding: 48px 0;
  }

  .legal-card {
    padding: 34px 22px;
  }
}

@media (max-height: 760px) and (min-width: 941px) {
  .hero-grid {
    padding: 40px 0 28px;
  }

  .hero-copy h1 {
    font-size: 58px;
    line-height: 1.1;
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button {
    min-height: 54px;
  }

  .hero-media img {
    height: 500px;
    min-height: 0;
  }

  .method-section {
    padding-top: 16px;
  }
}

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