/*
Theme Name: Cinzia Scanarotti
Theme URI: https://example.com/
Author: Codex
Description: Tema WordPress su misura per Studio di Riflessologia Integrata Cinzia Scanarotti.
Version: 1.7.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: cinzia-scanarotti
*/

:root {
  --sage: #7a9e7e;
  --sage-dark: #496f51;
  --ivory: #f5ede0;
  --ivory-soft: #fbf8f2;
  --taupe: #8c7b6e;
  --ink: #252522;
  --muted: #625b52;
  --line: #ded2c1;
  --white: #fffdf8;
  --whatsapp: #25d366;
  --shadow: 0 18px 48px rgba(73, 111, 81, 0.14);
  --shadow-soft: 0 10px 28px rgba(73, 111, 81, 0.08);
  --radius: 8px;
  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(245, 237, 224, 0.52), rgba(251, 248, 242, 0.88) 360px),
    var(--ivory-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.9);
  border-bottom: 1px solid rgba(222, 210, 193, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.98);
  box-shadow: 0 10px 26px rgba(73, 111, 81, 0.08);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-method-logo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(122, 158, 126, 0.2);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
}

.brand strong {
  font-family: var(--font-title);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 700;
}

.brand-copy > span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.facebook-mark,
.social-mark {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(24, 119, 242, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.facebook-mark svg,
.social-mark svg {
  width: 23px;
  height: 23px;
}

.facebook-mark:hover,
.facebook-mark:focus,
.social-mark:hover,
.social-mark:focus {
  background: #1464cc;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.24);
}

.instagram-mark {
  background: #c13584;
  box-shadow: 0 10px 22px rgba(193, 53, 132, 0.18);
}

.instagram-mark:hover,
.instagram-mark:focus {
  background: #a82d73;
  box-shadow: 0 14px 28px rgba(193, 53, 132, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a.button {
  color: var(--white);
}

.site-nav a.button:hover,
.site-nav a.button:focus {
  color: var(--white);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: var(--white);
  font: 700 15px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus {
  background: #385b3f;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(73, 111, 81, 0.2);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: rgba(122, 158, 126, 0.12);
}

.button.small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(122, 158, 126, 0.15), transparent 32%),
    linear-gradient(180deg, var(--ivory), var(--ivory-soft));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  min-height: min(720px, calc(100vh - 72px));
  padding: clamp(42px, 6vw, 70px) 0 clamp(48px, 7vw, 82px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-title);
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.06;
}

h3 {
  font-size: clamp(24px, 2.8vw, 32px);
}

.lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.58;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  max-height: 640px;
}

.hero-media img,
.portrait-card img,
.split-media img,
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-position: center 32%;
  filter: saturate(0.96) contrast(1.02);
}

.hero-note {
  position: absolute;
  left: -28px;
  bottom: 36px;
  width: min(300px, 82%);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  color: var(--muted);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(52px, 7.2vw, 90px) 0;
}

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

.section.sage {
  background: var(--sage-dark);
  color: var(--white);
}

.section.sage h2,
.section.sage h3,
.section.sage .lead,
.section.sage p {
  color: var(--white);
}

.section-header {
  max-width: 790px;
  margin-bottom: 30px;
}

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

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(20px, 2.6vw, 28px);
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card:hover {
  border-color: rgba(122, 158, 126, 0.55);
  box-shadow: 0 16px 36px rgba(73, 111, 81, 0.12);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.quote-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quote-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--sage);
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(73, 111, 81, 0.05);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
}

.split-media {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 14px;
  height: 2px;
  background: var(--sage);
}

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

.condition-card {
  padding: 24px;
  border: 1px solid rgba(222, 210, 193, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 30px rgba(73, 111, 81, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.condition-card:hover {
  border-color: rgba(122, 158, 126, 0.55);
  box-shadow: 0 18px 42px rgba(73, 111, 81, 0.12);
  transform: translateY(-2px);
}

.condition-card h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.condition-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  padding: clamp(52px, 7vw, 86px) 0 clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 88% 10%, rgba(122, 158, 126, 0.13), transparent 34%),
    var(--ivory);
}

.page-hero .lead {
  max-width: 780px;
}

.portrait-card {
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 14px;
  counter-reset: steps;
}

.timeline-item {
  position: relative;
  padding: 22px 22px 22px 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(73, 111, 81, 0.05);
}

.timeline-item::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
}

.service {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.service:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-meta {
  margin-top: 18px;
  color: var(--sage-dark);
  font-weight: 800;
}

.statement-box {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px);
  border-left: 6px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.statement-box h2 {
  color: var(--sage-dark);
}

.statement-box p {
  max-width: 900px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.62;
}

.manifesto-quote {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(22px, 3.5vw, 34px) clamp(20px, 4vw, 44px);
  border-left: 7px solid var(--sage);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
}

.manifesto-quote p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(22px, 3vw, 33px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.24;
  text-align: center;
}

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

.treatment-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.treatment-card:hover {
  border-color: rgba(122, 158, 126, 0.55);
  box-shadow: 0 16px 36px rgba(73, 111, 81, 0.12);
  transform: translateY(-2px);
}

.treatment-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.14);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
}

.treatment-card h2 {
  font-size: clamp(24px, 2.7vw, 32px);
  line-height: 1.06;
}

.treatment-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.benefit-card {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.benefit-card:hover {
  border-color: rgba(122, 158, 126, 0.55);
  box-shadow: 0 16px 36px rgba(73, 111, 81, 0.12);
  transform: translateY(-2px);
}

.indications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.indications-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(122, 158, 126, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.price-table {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(73, 111, 81, 0.06);
}

.price-row strong {
  font-family: var(--font-title);
  font-size: 30px;
  line-height: 1.05;
}

.price {
  color: var(--sage-dark);
  font-size: 24px;
  font-weight: 900;
  text-align: right;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 5vw, 58px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.contact-list a {
  color: var(--sage-dark);
  font-weight: 800;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: 16px/1.4 var(--font-body);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.button:focus,
.menu-toggle:focus {
  outline: 3px solid rgba(122, 158, 126, 0.36);
  outline-offset: 2px;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(122, 158, 126, 0.12);
}

.privacy-note {
  color: var(--muted);
  font-size: 13px;
}

.image-band {
  height: min(54vw, 500px);
  overflow: hidden;
}

.portrait-band {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(420px, 54vw, 620px);
  margin: clamp(24px, 4.5vw, 48px) auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #efe4d4, var(--ivory), #efe4d4);
  box-shadow: var(--shadow);
}

.portrait-band img {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  padding: 48px 0 30px;
  background: #292622;
  color: rgba(255, 253, 248, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
}

.footer-method-logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  padding: 7px;
  border-radius: 50%;
  background: var(--white);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.footer-socials .social-mark {
  width: 42px;
  height: 42px;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.9);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.62);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #083b1a;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.34);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float span {
  position: absolute;
  right: 66px;
  width: max-content;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover span,
.whatsapp-float:focus span {
  opacity: 1;
  transform: translateX(0);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.js-enabled .treatment-card.reveal,
.js-enabled .card.reveal {
  transition-delay: 40ms;
}

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--ivory-soft);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(73, 111, 81, 0.1);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .condition-grid,
  .treatment-grid,
  .benefit-grid,
  .contact-grid,
  .footer-grid,
  .service {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-media,
  .split-media,
  .portrait-card {
    min-height: 390px;
  }

  .portrait-band {
    height: 520px;
  }

  .hero-note {
    left: 16px;
    bottom: 16px;
  }

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

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

  .price {
    text-align: left;
  }
}

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

  .header-inner,
  .container {
    width: min(100% - 24px, 1140px);
  }

  .header-inner {
    min-height: 66px;
    gap: 12px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand-copy > span {
    max-width: 190px;
    font-size: 10px;
    line-height: 1.25;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

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

  .brand-group {
    gap: 8px;
  }

  .facebook-mark,
  .social-mark {
    width: 34px;
    height: 34px;
  }

  .facebook-mark svg,
  .social-mark svg {
    width: 20px;
    height: 20px;
  }

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

  .site-nav {
    inset: 66px 0 auto;
  }

  .section {
    padding: 46px 0;
  }

  .hero-grid {
    padding: 34px 0 44px;
    gap: 26px;
  }

  .manifesto-quote p {
    text-align: left;
  }

  .hero-media,
  .split-media,
  .portrait-card {
    min-height: 330px;
  }

  .hero-media {
    max-height: 420px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(29px, 8.4vw, 36px);
  }

  h3 {
    font-size: clamp(23px, 7vw, 28px);
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.11em;
  }

  .lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .statement-box {
    padding: 22px 20px;
    border-left-width: 5px;
  }

  .manifesto-quote {
    padding: 22px 20px;
    border-left-width: 5px;
  }

  .manifesto-quote p {
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1.28;
  }

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

  .portrait-band {
    height: 460px;
  }

  .hero-note {
    position: static;
    width: auto;
    margin: 12px 0 0;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}

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

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}
