:root {
  --cream: #fbf7f1;
  --ivory: #fffdf8;
  --blush: #e8bbb9;
  --blush-soft: #f6e5e1;
  --sage: #858b68;
  --sage-soft: #dfe3d4;
  --sand: #d6bfa6;
  --taupe: #9f846b;
  --ink: #3f4036;
  --muted: #767061;
  --line: rgba(133, 139, 104, 0.2);
  --shadow: 0 18px 45px rgba(91, 71, 52, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Avenir, "Segoe UI", system-ui, sans-serif;
  line-height: 1.7;
}

button {
  font: inherit;
  cursor: pointer;
}

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

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

h1,
h2,
h3,
.brand span {
  margin: 0;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9vw, 6.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
}

/* En-tête */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.65rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  font-size: 1.1rem;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--blush);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.76rem 1.15rem;
  font-weight: 700;
  line-height: 1.15;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: var(--sage);
  box-shadow: 0 10px 25px rgba(133, 139, 104, 0.24);
}

.btn-secondary {
  color: var(--sage);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(91, 71, 52, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--ivory);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--sage);
  transition: transform 220ms ease, opacity 220ms ease;
}

/* Sections */
.section {
  position: relative;
  padding: clamp(2.8rem, 5.8vw, 4.8rem) clamp(1rem, 4vw, 4rem);
  overflow: hidden;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 3.8rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.hero::before,
.tariffs-section::before,
.contact-section::before {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 187, 185, 0.35), rgba(232, 187, 185, 0));
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 8%;
  right: -130px;
}

.tariffs-section::before {
  left: -120px;
  bottom: 12%;
}

.hero-content,
.section-copy,
.section-heading,
.soft-panel,
.contact-form,
.service-area,
.tariff-group {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 0.55rem;
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 760px;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.7vw, 1.75rem);
  line-height: 1.45;
}

.hero-content > p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 660px;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
}

.hero-visual img {
  width: min(380px, 88vw);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.visual-note {
  width: min(390px, 92vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  color: var(--sage);
  background: rgba(255, 253, 248, 0.86);
  text-align: center;
  font-weight: 700;
}

.two-columns,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(1.25rem, 3.8vw, 3rem);
  align-items: center;
}

.papouilles-section {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: left;
}

.papouilles-section .section-copy,
.papouilles-section .soft-panel {
  width: min(100%, 820px);
}

.section-copy p:not(.eyebrow),
.section-heading p {
  max-width: 770px;
  margin-top: 0.75rem;
  color: var(--muted);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 1.7rem;
  text-align: center;
}

.soft-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 3vw, 1.75rem);
  background: linear-gradient(145deg, var(--ivory), var(--blush-soft));
  box-shadow: var(--shadow);
}

.panel-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--blush);
  background: var(--ivory);
  font-size: 1.4rem;
}

.tinted {
  background: linear-gradient(180deg, rgba(223, 227, 212, 0.55), rgba(246, 229, 225, 0.42));
}

/* Cartes */
.benefits-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.benefit-card,
.step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.benefit-card,
.step {
  padding: 1.15rem;
}

.benefit-card p,
.step p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.benefit-toggle {
  display: none;
}

.care-note {
  max-width: 920px;
  margin: 1.4rem auto 0;
  border-left: 4px solid var(--blush);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.74);
}

.science-note {
  max-width: 920px;
  margin: 1.2rem auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 12px 30px rgba(91, 71, 52, 0.08);
}

.science-note p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.care-note.compact {
  margin: 1rem 0 0;
}

.tariff-group {
  max-width: 860px;
  margin: 0 auto 0.8rem;
}

.tariff-group + .tariff-table-wrap {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.tariff-intro {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 12px 30px rgba(91, 71, 52, 0.08);
  text-align: center;
}

.tariff-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 0.55rem auto 0;
  color: var(--muted);
}

.tariff-table-wrap {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow);
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tariff-table caption {
  padding: 0.8rem 1rem 0;
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  text-align: left;
}

.tariff-table th,
.tariff-table td {
  padding: 0.78rem 1rem;
  border-bottom: 1px solid var(--line);
}

.tariff-table th {
  color: var(--sage);
  background: var(--sage-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.tariff-table td {
  color: var(--muted);
}

.tariff-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.tariff-table td:last-child {
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.tariff-table tr:last-child td {
  border-bottom: 0;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

/* Contact */
.contact-section::before {
  right: -120px;
  top: 18%;
}

.contact-section {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.contact-section .section-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
}

.practitioner-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 560px;
  margin-bottom: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 12px 30px rgba(91, 71, 52, 0.08);
}

.practitioner-card img {
  flex: 0 0 auto;
  width: 118px;
  height: 118px;
  border: 7px solid var(--blush-soft);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 22px rgba(91, 71, 52, 0.12);
}

.practitioner-card .eyebrow {
  margin-bottom: 0.35rem;
}

.practitioner-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-actions {
  flex-direction: column;
  align-items: center;
}

.availability-card {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(0.85rem, 2.4vw, 1.15rem);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.availability-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0.65rem;
}

.availability-head .eyebrow {
  margin-bottom: 0.35rem;
}

.calendar-nav {
  display: inline-grid;
  grid-template-columns: 32px auto 32px;
  align-items: center;
  gap: 0.35rem;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.2rem;
  line-height: 1;
}

.calendar-nav-btn:hover {
  background: var(--sage-soft);
}

.calendar-month {
  color: var(--taupe);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  white-space: nowrap;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.calendar-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-free {
  background: var(--sage);
}

.legend-busy {
  background: var(--blush);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.25rem;
}

.calendar-weekdays {
  margin-bottom: 0.25rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.calendar-day {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.calendar-day:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: var(--sage);
}

.calendar-day.is-empty {
  visibility: hidden;
}

.calendar-day.is-loading {
  color: rgba(63, 64, 54, 0.42);
  background: rgba(255, 255, 255, 0.5);
  cursor: wait;
}

.calendar-day.is-busy,
.calendar-day.is-past {
  color: rgba(63, 64, 54, 0.38);
  background: var(--blush-soft);
  cursor: not-allowed;
}

.calendar-day.is-selected {
  color: #fff;
  background: var(--sage);
}

.calendar-day.has-choice {
  border-color: var(--sage);
  box-shadow: inset 0 -3px 0 var(--sage);
}

.calendar-status {
  margin-top: 0.7rem;
  color: var(--taupe);
  font-size: 0.92rem;
  font-weight: 700;
}

.calendar-status[hidden] {
  display: none;
}

.slot-panel {
  margin-top: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.slot-title {
  margin-bottom: 0.55rem;
  color: var(--sage);
  font-weight: 800;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.slot-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  color: var(--sage);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.slot-button:hover,
.slot-button.is-selected {
  color: #fff;
  background: var(--sage);
  transform: translateY(-1px);
}

.contact-form {
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: clamp(1.1rem, 3vw, 1.65rem);
  text-align: left;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.full,
.contact-form .full {
  grid-column: auto;
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.15rem;
}

.service-area {
  grid-column: 1 / -1;
  display: grid;
  width: min(100%, 720px);
  margin: 0 auto;
  text-align: left;
}

.service-area-copy {
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.service-area-copy .eyebrow {
  margin-bottom: -0.15rem;
}

.service-area-copy p:not(.eyebrow) {
  color: var(--muted);
}

.service-area-note {
  border-left: 4px solid var(--blush);
  padding-left: 0.85rem;
}

label {
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sage) 50%), linear-gradient(135deg, var(--sage) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(133, 139, 104, 0.14);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  color: var(--sage);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  align-items: center;
  justify-items: center;
  padding: 1.6rem clamp(1rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.86);
  background: var(--sage);
  text-align: center;
}

/* Avis Google */
.reviews-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.reviews-widget {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 4vw, 2.6rem);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
}

.reviews-intro {
  margin-top: 0.8rem;
  color: var(--muted);
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.8rem;
  min-height: 2rem;
  margin: 1.4rem 0 1.1rem;
}

.reviews-stars {
  color: #d69f31;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reviews-loading,
.reviews-rating {
  color: var(--ink);
  font-weight: 700;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 1.5rem;
  text-align: left;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--ivory);
}

.review-card strong {
  color: var(--sage);
}

.review-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.review-card .reviews-stars {
  font-size: 1rem;
}

.reviews-link {
  width: fit-content;
}

.legal-section {
  background: rgba(255, 253, 248, 0.72);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 30px rgba(91, 71, 52, 0.08);
}

.legal-content > p {
  color: var(--muted);
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.legal-content h2 {
  margin-top: 1.35rem;
  font-size: 1.6rem;
  color: var(--sage);
}

.legal-content a {
  color: var(--sage);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.site-footer nav {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

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

.sticky-contact {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 30;
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  background: var(--sage);
  box-shadow: 0 16px 38px rgba(63, 64, 54, 0.22);
  line-height: 1.2;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sticky-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(63, 64, 54, 0.28);
}

.sticky-contact span {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Apparition douce au scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .legal-nav {
    display: flex;
    justify-content: flex-end;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.6rem;
  }

  .site-header.menu-open .header-cta {
    width: fit-content;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .two-columns,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.2rem;
  }

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .reviews-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand span {
    max-width: 210px;
    white-space: normal;
    font-size: 1rem;
    line-height: 1.15;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

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

  .contact-actions {
    align-items: center;
    flex-direction: column;
  }

  .availability-head {
    flex-direction: column;
  }

  .practitioner-card {
    align-items: flex-start;
  }

  .practitioner-card img {
    width: 92px;
    height: 92px;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .benefits-grid,
  .steps,
  .contact-form,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-card p,
  .science-note-content {
    display: none;
  }

  .benefit-card.is-open p,
  .science-note.is-open .science-note-content {
    display: block;
  }

  .benefit-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.7rem;
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 0.08rem;
    color: var(--taupe);
    background: transparent;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .benefit-toggle::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
  }

  .benefit-card.is-open .benefit-toggle::after,
  .science-note.is-open .benefit-toggle::after {
    content: "-";
  }

  .tariff-table-wrap {
    overflow: hidden;
  }

  .tariff-table {
    display: block;
    min-width: 0;
  }

  .tariff-table caption {
    display: block;
    padding: 0.75rem 0.85rem 0;
    font-size: 1rem;
  }

  .tariff-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .tariff-table tbody {
    display: grid;
    gap: 0.55rem;
    padding: 0.8rem;
  }

  .tariff-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.2rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.78rem;
    background: rgba(255, 253, 248, 0.72);
  }

  .tariff-table th,
  .tariff-table td {
    padding: 0;
    border-bottom: 0;
  }

  .tariff-table td:first-child {
    grid-column: 1;
    line-height: 1.25;
  }

  .tariff-table td:nth-child(2) {
    grid-column: 1;
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .tariff-table td:last-child {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    border-left: 1px solid var(--line);
    padding-left: 0.75rem;
    font-size: 1.2rem;
  }

  .section {
    padding: 2.35rem 1rem;
  }

  .hero-visual img {
    width: min(280px, 84vw);
  }

  .sticky-contact {
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 0.72rem 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
