/*
Theme Name: Alma Forte — Renata Barbosa
Theme URI: https://alma-forte-coaching.pra-anybox.chatgpt.site/
Author: Renata BARBOSA DE OLIVEIRA
Description: Thème vitrine élégant et responsive pour le coaching sportif féminin de Renata BARBOSA DE OLIVEIRA.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alma-forte
Tags: one-column, custom-menu, featured-images, full-width-template
*/

:root {
  --ivory: #f7f1e8;
  --paper: #fffdf8;
  --ink: #17251e;
  --muted: #5e675f;
  --coral: #e96f59;
  --coral-soft: #f1d7ce;
  --sand: #d8c2a5;
  --line: rgba(23, 37, 30, 0.14);
  --line-light: rgba(247, 241, 232, 0.2);
  --shadow: 0 24px 70px rgba(23, 37, 30, 0.12);
  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --font-body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-editorial: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
a,
button,
summary {
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.8rem, 7.1vw, 7.5rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
  font-weight: 730;
}

h3 {
  font-size: 2rem;
  font-weight: 680;
}

em {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-weight: 400;
}

::selection {
  background: var(--coral);
  color: var(--paper);
}

.shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  border-radius: 99px;
}

.skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 260px;
  height: auto;
  max-height: 48px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  width: min(100% - 48px, 1360px);
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(23, 37, 30, 0.09);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 12px 40px rgba(23, 37, 30, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--font-editorial);
  font-size: 15px;
  font-style: italic;
  letter-spacing: -0.05em;
}

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

.brand strong {
  font-size: 13px;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.primary-nav,
.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
}

.primary-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #263c31;
  box-shadow: 0 12px 28px rgba(23, 37, 30, 0.18);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 12px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -5px;
}

.menu-toggle-lines::after {
  top: 5px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--coral);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: calc(100svh - 95px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
  padding-block: 72px 94px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.trust-list li {
  position: relative;
  padding-left: 15px;
}

.trust-list li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 530px);
  justify-self: end;
}

.hero-photo-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(233, 111, 89, 0.5);
  border-radius: 50%;
}

.orbit-one {
  top: -25px;
  right: -35px;
  width: 72%;
  aspect-ratio: 1;
}

.orbit-two {
  top: 26px;
  right: -78px;
  width: 78%;
  aspect-ratio: 1;
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: 64px;
  left: -54px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(23, 37, 30, 0.16);
}

.hero-note strong,
.hero-note small {
  display: block;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 7px var(--coral-soft);
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: -22px;
  bottom: 76px;
  margin: 0;
  transform: rotate(90deg) translateX(100%);
  transform-origin: bottom right;
  color: rgba(247, 241, 232, 0.9);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.manifesto {
  background: var(--coral-soft);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  padding-block: 96px;
}

.manifesto-number {
  padding-top: 10px;
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 14px;
  font-style: italic;
}

.manifesto p {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 680;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section {
  padding-block: 130px;
}

section[id] {
  scroll-margin-top: 118px;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.split-heading h2,
.split-heading > p {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 430px;
  padding-bottom: 8px;
  color: var(--muted);
}

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

.program-card {
  display: grid;
  min-height: 560px;
  grid-template-rows: auto auto 1fr auto;
  gap: 26px;
  padding: clamp(28px, 3.5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-card.is-featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.program-topline {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.is-featured .program-topline,
.is-featured .program-description {
  color: rgba(247, 241, 232, 0.68);
}

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--coral);
  color: var(--paper);
  letter-spacing: 0.08em;
}

.program-kicker {
  margin-bottom: 9px;
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  font-style: italic;
}

.program-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.program-description {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.benefit-list {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.is-featured .benefit-list li {
  border-color: var(--line-light);
}

.benefit-list li::before {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--coral);
  content: "✓";
  font-weight: 800;
}

.program-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 8px;
}

.program-price {
  margin: 0;
  color: var(--coral);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.program-price small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.program-bottom a {
  max-width: 210px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
  text-align: right;
}

.program-bottom a span {
  color: var(--coral);
}

.price-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.approach-copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.approach-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.approach-copy .large-copy {
  color: var(--ink) !important;
  font-size: 1.22rem;
}

.approach-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--coral-soft);
}

.approach-panel::before {
  position: absolute;
  top: -130px;
  right: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(233, 111, 89, 0.55);
  border-radius: 50%;
  content: "";
}

.panel-label {
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adaptation-list > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid rgba(23, 37, 30, 0.14);
}

.adaptation-list span {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 13px;
  font-style: italic;
}

.adaptation-list p,
.adaptation-list strong {
  display: block;
  margin: 0;
}

.adaptation-list p {
  color: var(--muted);
  font-size: 13px;
}

.adaptation-list strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.panel-quote {
  margin: 26px 0 0;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-style: italic;
  line-height: 1.1;
}

.method-section {
  background: var(--ink);
  color: var(--ivory);
}

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

.method-heading {
  max-width: 970px;
  margin-bottom: 84px;
}

.method-heading h2 {
  margin-bottom: 0;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.method-grid article {
  min-height: 310px;
  padding: 32px clamp(22px, 3vw, 44px) 0 0;
  border-right: 1px solid var(--line-light);
}

.method-grid article + article {
  padding-left: clamp(22px, 3vw, 44px);
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--coral);
  font-family: var(--font-editorial);
  font-style: italic;
}

.method-grid h3 {
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.method-grid p {
  max-width: 330px;
  color: rgba(247, 241, 232, 0.66);
  font-size: 14px;
}

.results-section {
  padding-block: 130px;
  background: var(--coral-soft);
}

.centered-heading {
  text-align: center;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-grid article {
  min-height: 290px;
  padding: 35px 26px 28px;
  border-right: 1px solid var(--line);
}

.result-grid article:last-child {
  border-right: 0;
}

.result-grid span {
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.result-grid h3 {
  margin: 90px 0 14px;
  font-size: 1.8rem;
}

.result-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(440px, 1.3fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.faq-intro > p:last-child {
  max-width: 360px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding-block: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
  background: var(--coral-soft);
}

details > p {
  max-width: 640px;
  margin: -4px 62px 30px 0;
  color: var(--muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  color: var(--paper);
}

.cta-section::before,
.cta-section::after {
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 50%;
  content: "";
}

.cta-section::before {
  top: -260px;
  left: -160px;
  width: 620px;
  height: 620px;
}

.cta-section::after {
  right: -110px;
  bottom: -250px;
  width: 520px;
  height: 520px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  padding-block: 125px;
  text-align: center;
}

.cta-inner .eyebrow {
  color: rgba(255, 253, 248, 0.76);
}

.cta-inner h2 {
  max-width: 1080px;
  margin-inline: auto;
}

.cta-inner h2 em {
  color: var(--ink);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 32px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.08rem;
}

.cta-note {
  display: block;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer {
  padding-block: 42px;
  background: var(--ink);
  color: var(--ivory);
}

.content-shell {
  min-height: 65vh;
}

.content-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.content-heading h1,
.entry-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.entry-card {
  margin-bottom: 28px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.entry-card:last-child {
  margin-bottom: 0;
}

.entry-meta {
  color: var(--muted);
  font-size: 12px;
}

.entry-content a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.navigation.pagination {
  margin-top: 40px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.navigation.pagination a,
.navigation.pagination .current {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.navigation.pagination .current {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand-footer small,
.footer-inner > p,
.footer-inner > small {
  color: rgba(247, 241, 232, 0.56);
}

.footer-inner > p,
.footer-inner > a,
.footer-inner > small {
  margin: 0;
  font-size: 11px;
}

.footer-inner > a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: block;
    overflow: hidden;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
  }

  .js .site-header .primary-nav {
    display: none;
  }

  .js .site-header .primary-nav.is-open {
    display: block;
  }

  .site-header .primary-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-header .primary-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 14px;
  }

  .site-header .primary-nav a:hover,
  .site-header .primary-nav a:focus-visible {
    background: var(--coral-soft);
  }

  .site-header .primary-nav a::after {
    display: none;
  }

  .site-header > .button {
    justify-self: end;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 56px;
  }

  .hero-note {
    left: -24px;
  }

  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-grid article:nth-child(2) {
    border-right: 0;
  }

  .result-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 40px, 1280px);
  }

  .site-header {
    width: calc(100% - 24px);
    gap: 10px;
    margin-top: 10px;
    padding: 9px 10px 9px 13px;
  }

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

  .site-header .brand {
    gap: 7px;
  }

  .site-header .brand strong {
    font-size: 8.25px;
    letter-spacing: 0.04em;
  }

  .site-header .brand small {
    margin-top: 3px;
    font-size: 6px;
    letter-spacing: 0.08em;
  }

  .site-header .custom-logo {
    max-width: 150px;
    max-height: 34px;
  }

  .button-small {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 58px 80px;
  }

  h1 {
    font-size: clamp(3.1rem, 14.5vw, 5rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .trust-list {
    gap: 10px 20px;
  }

  .hero-visual {
    width: min(90%, 520px);
    justify-self: center;
  }

  .hero-note {
    bottom: 34px;
    left: -8%;
    min-width: 195px;
  }

  .hero-caption {
    display: none;
  }

  .manifesto-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 76px;
  }

  .manifesto p {
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
  }

  .section,
  .results-section {
    padding-block: 92px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .program-card,
  .program-card.is-featured {
    min-height: auto;
    transform: none;
  }

  .program-card h3 {
    font-size: 3rem;
  }

  .program-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-bottom a {
    max-width: none;
    text-align: left;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .method-heading {
    margin-bottom: 52px;
  }

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

  .method-grid article,
  .method-grid article + article {
    min-height: auto;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .method-grid span {
    margin-bottom: 32px;
  }

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

  .result-grid article,
  .result-grid article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-grid article:last-child {
    border-bottom: 0;
  }

  .result-grid h3 {
    margin-top: 52px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-intro {
    position: static;
  }

  summary {
    min-height: 78px;
    font-size: 15px;
  }

  .cta-inner {
    padding-block: 92px;
  }

  .cta-inner h2 br {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
