:root {
  --color-bg: #fffdfc;
  --color-cream: #f8e8db;
  --color-blush: #ebd7ca;
  --color-text: #2f2a26;
  --color-brown: #7f4d3a;
  --color-caramel: #9f6453;
  --color-olive: #5f684c;
  --color-olive-hover: #4f573f;
  --color-gold: #b59a6a;
  --color-border: #dfc6b6;
  --color-white: #ffffff;
  --color-cream-soft: #fff8f3;
  --color-olive-soft: #eef0e8;
  --font-heading: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: Manrope, Arial, Helvetica, sans-serif;
  --radius-small: 10px;
  --radius-medium: 16px;
  --radius-large: 20px;
  --radius-image: 28px;
  --container-width: 1160px;
  --page-padding: clamp(20px, 4vw, 40px);
  --section-space: clamp(76px, 9vw, 120px);
  --shadow-soft: 0 12px 36px rgba(79, 57, 47, 0.06);
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.025em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.015em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

p {
  margin-bottom: 18px;
}

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

.container {
  width: min(100% - (var(--page-padding) * 2), var(--container-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-small);
  background: var(--color-text);
  color: var(--color-white);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--color-brown);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button--primary:hover {
  background: var(--color-olive-hover);
}

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

.button--secondary:hover {
  border-color: var(--color-brown);
  background: var(--color-cream);
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--color-brown);
  color: var(--color-brown);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.text-link:hover {
  color: var(--color-caramel);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(223, 198, 182, 0.72);
  background: rgba(255, 253, 252, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-cream);
}

.brand-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 400;
}

.brand-copy small {
  color: var(--color-brown);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
}

.main-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--color-brown);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button--header {
  min-height: 46px;
  margin-left: 4px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.button-label-mobile {
  display: none;
}

.hero {
  background: var(--color-cream);
}

.hero-grid {
  display: grid;
  min-height: min(780px, calc(100vh - var(--header-height)));
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  padding-block: clamp(38px, 5vw, 64px);
}

.hero-content {
  max-width: 650px;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #514942;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

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

.hero-media,
.about-media {
  margin: 0;
  overflow: hidden;
  background: var(--color-blush);
  box-shadow: var(--shadow-soft);
}

.hero-media {
  max-width: 470px;
  margin-top: -12px;
  justify-self: end;
  border-radius: 190px 190px var(--radius-image) var(--radius-image);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.section {
  padding-block: var(--section-space);
}

.section--light {
  background: var(--color-bg);
}

.section--cream {
  background: var(--color-cream-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-heading--wide {
  max-width: 900px;
}

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

.section-heading--centered > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.section-heading > p:not(.eyebrow) {
  max-width: 760px;
  color: #514942;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.section-intro {
  margin-top: 30px;
  color: var(--color-text) !important;
}

.demand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.demand-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  grid-column: span 2;
}

.demand-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.demand-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.card-number {
  display: block;
  margin-bottom: 28px;
  color: var(--color-gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.demand-card p,
.therapy-card p,
.service-card p,
.steps-list p {
  margin-bottom: 0;
  color: #5a514b;
  font-size: 0.96rem;
  line-height: 1.7;
}

.section-closing {
  display: flex;
  max-width: 760px;
  margin: 44px auto 0;
  align-items: center;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}

.section-closing p {
  max-width: 720px;
  margin-bottom: 0;
  color: #514942;
}

.section-closing .button {
  flex-shrink: 0;
}

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

.therapy-card {
  position: relative;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-bg);
}

.therapy-card p + p {
  margin-top: 16px;
}

.card-accent {
  display: block;
  width: 52px;
  height: 3px;
  margin-bottom: 32px;
  background: var(--color-caramel);
}

.section--about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-areas:
    "photo title"
    "photo content";
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  column-gap: clamp(48px, 8vw, 100px);
}

.about-grid > h2 {
  grid-area: title;
}

.about-media {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  grid-area: photo;
  border-radius: var(--radius-image);
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.about-content {
  max-width: 680px;
  grid-area: content;
}

.about-content p {
  color: #514942;
}

.professional-signature {
  display: flex;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  color: var(--color-brown);
  line-height: 1.55;
}

.professional-signature strong {
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
}

.professional-signature span {
  font-size: 0.9rem;
  font-weight: 500;
}

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

.service-card {
  display: flex;
  min-height: 460px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-large);
  background: var(--color-white);
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.service-card--featured {
  border-top: 5px solid var(--color-olive);
  background: var(--color-olive-soft);
}

.service-label {
  align-self: flex-start;
  margin-bottom: 26px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--color-olive);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-label--secondary {
  border: 1px solid var(--color-border);
  background: var(--color-cream-soft);
  color: var(--color-brown);
}

.service-card p + p {
  margin-top: 16px;
}

.service-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.section--steps {
  background: var(--color-cream);
}

.steps-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: steps;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  list-style: none;
}

.steps-list li {
  display: flex;
  gap: 20px;
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--color-brown);
  border-radius: 50%;
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.steps-list h3 {
  margin-top: 7px;
  font-size: 1.5rem;
}

.centered-action {
  margin-top: 52px;
  text-align: center;
}

.quote-section {
  padding-block: clamp(76px, 9vw, 112px);
  background: var(--color-olive);
  color: var(--color-white);
}

.quote-inner {
  display: flex;
  max-width: 940px;
  align-items: flex-start;
  gap: clamp(20px, 4vw, 44px);
}

.quote-mark {
  flex: 0 0 auto;
  color: var(--color-blush);
  font-family: var(--font-heading);
  font-size: clamp(5rem, 11vw, 8rem);
  line-height: 0.75;
}

.quote-section blockquote {
  margin: 0;
}

.quote-section blockquote p {
  margin-bottom: 24px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.18;
  text-wrap: balance;
}

.quote-section blockquote footer {
  color: var(--color-cream);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section--faq {
  background: var(--color-bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  align-items: start;
  gap: clamp(44px, 8vw, 100px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin-bottom: 0;
}

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

.faq-list details {
  border-bottom: 1px solid var(--color-border);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--color-brown);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-answer {
  max-width: 720px;
  padding: 0 52px 24px 0;
  color: #514942;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-section {
  overflow: hidden;
  background: var(--color-blush);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(52px, 8vw, 96px);
  text-align: left;
}

.contact-copy {
  max-width: 650px;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.1rem);
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 620px;
  color: #514942;
  font-size: clamp(1.05rem, 1.5vw, 1.16rem);
  line-height: 1.75;
}

.contact-copy .button {
  margin-top: 16px;
}

.contact-note {
  margin: 24px 0 0;
  color: var(--color-brown);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-media {
  width: 100%;
  max-width: 390px;
  margin: 0;
  overflow: hidden;
  justify-self: end;
  border-radius: var(--radius-image);
  background: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.contact-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

.site-footer {
  padding-top: 62px;
  background: var(--color-text);
  color: #f6eee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
}

.footer-brand {
  display: flex;
  max-width: 560px;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
}

.footer-brand span {
  color: var(--color-blush);
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-brand p {
  margin: 16px 0 0;
  color: #d9cec7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.footer-links a {
  min-height: 44px;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.footer-links a:hover {
  color: var(--color-blush);
}

.footer-notices {
  display: grid;
  margin-top: 46px;
  padding-block: 30px;
  border-top: 1px solid rgba(235, 215, 202, 0.2);
  border-bottom: 1px solid rgba(235, 215, 202, 0.2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-notices p {
  margin: 0;
  color: #cfc3bc;
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer-notices strong {
  color: #f6eee9;
}

.footer-bottom {
  padding-block: 22px;
}

.footer-bottom p {
  margin: 0;
  color: #b8aaa2;
  font-size: 0.75rem;
}

.footer-bottom .footer-credit {
  max-width: 760px;
  margin-top: 8px;
  color: #cfc3bc;
  font-size: 0.7rem;
  line-height: 1.65;
  overflow-wrap: break-word;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: none;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: var(--color-olive);
  box-shadow: 0 10px 28px rgba(47, 42, 38, 0.2);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--color-olive-hover);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
    gap: 44px;
  }

}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .main-nav {
    display: none;
  }

  .button--header {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 34px;
  }

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

  .demand-card,
  .demand-card:nth-child(4),
  .demand-card:nth-child(5) {
    grid-column: auto;
  }

  .demand-card:last-child {
    grid-column: 1 / -1;
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-media {
    width: min(100%, 380px);
    justify-self: center;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
    --page-padding: 20px;
    --section-space: clamp(68px, 18vw, 88px);
    --radius-image: 20px;
  }

  body {
    line-height: 1.7;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.375rem, 11vw, 2.75rem);
  }

  h2 {
    margin-bottom: 20px;
    font-size: clamp(1.9rem, 9vw, 2.25rem);
  }

  h3 {
    font-size: 1.45rem;
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-logo img {
    width: 48px;
    height: 48px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .role-long,
  .button-label-desktop {
    display: none;
  }

  .button-label-mobile {
    display: inline;
  }

  .button--header {
    min-height: 42px;
    padding: 9px 13px;
    font-size: 0.76rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 46px 64px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 1.05rem;
  }

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

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

  .hero-actions .text-link {
    justify-content: center;
    border: 1px solid var(--color-brown);
    border-radius: var(--radius-small);
  }

  .hero-media {
    width: 100%;
    max-width: 520px;
    margin-top: 0;
    justify-self: center;
    border-radius: 140px 140px var(--radius-image) var(--radius-image);
  }

  .hero-media img {
    aspect-ratio: 4 / 5;
    object-position: center 22%;
  }

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

  .section-heading--centered {
    margin-left: 0;
    text-align: left;
  }

  .section-heading--centered > p:not(.eyebrow) {
    margin-left: 0;
  }

  .section-heading > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .demand-grid,
  .therapy-grid,
  .service-grid,
  .faq-layout,
  .footer-grid,
  .footer-notices {
    grid-template-columns: 1fr;
  }

  .demand-card,
  .demand-card:last-child {
    min-height: 0;
    grid-column: auto;
  }

  .card-number {
    margin-bottom: 20px;
  }

  .section-closing {
    align-items: stretch;
    flex-direction: column;
  }

  .section-closing .button,
  .service-card .button,
  .centered-action .button,
  .contact-copy .button {
    width: 100%;
  }

  .therapy-grid,
  .service-grid {
    gap: 20px;
  }

  .about-grid {
    grid-template-areas:
      "title"
      "photo"
      "content";
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid > h2 {
    margin-bottom: 4px;
  }

  .about-media,
  .faq-heading {
    position: static;
  }

  .about-media {
    width: 100%;
    max-width: 520px;
    justify-self: center;
  }

  .about-content {
    max-width: none;
  }

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

  .service-card .button {
    margin-top: 30px;
  }

  .steps-list li {
    gap: 16px;
  }

  .quote-inner {
    gap: 12px;
  }

  .quote-mark {
    font-size: 4.5rem;
  }

  .faq-layout {
    gap: 10px;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-list summary {
    padding-block: 20px;
    font-size: 1.2rem;
  }

  .faq-answer {
    padding-right: 24px;
  }

  .contact-inner {
    gap: 32px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    font-size: clamp(2.6rem, 13vw, 3.25rem);
  }

  .contact-copy > p:not(.eyebrow):not(.contact-note) {
    font-size: 1.02rem;
  }

  .contact-media {
    width: min(100%, 330px);
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-notices {
    gap: 18px;
  }

  .floating-whatsapp.is-visible {
    display: inline-flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 370px) {
  :root {
    --page-padding: 16px;
  }

  .brand-copy strong {
    max-width: 108px;
  }

  .brand-copy small {
    font-size: 0.61rem;
  }

  .button--header {
    padding-inline: 11px;
  }

  .quote-mark {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
