:root {
  --ink: #15343d;
  --ink-2: #244c56;
  --teal: #1d5964;
  --teal-dark: #123841;
  --sage: #8caea8;
  --mint: #dbe9e5;
  --cream: #f7f2e9;
  --sand: #e8dac7;
  --rose: #d7a99b;
  --white: #ffffff;
  --muted: #63777b;
  --shadow: 0 24px 70px rgba(17, 52, 61, 0.13);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

.section-pad {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--teal-dark);
  color: var(--white);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(251, 250, 247, .94);
  box-shadow: 0 12px 35px rgba(21, 52, 61, .09);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-photo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--teal));
  box-shadow: 0 8px 24px rgba(29, 89, 100, .18);
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid #fff;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  max-width: 210px;
  font-size: .9rem;
  letter-spacing: .01em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--teal);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .94rem;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 12px 0;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

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

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(18, 56, 65, .18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: var(--teal-dark);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 148px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 14%, rgba(215, 169, 155, .25), transparent 22%),
    radial-gradient(circle at 5% 65%, rgba(140, 174, 168, .22), transparent 26%),
    linear-gradient(145deg, #fbfaf7 0%, #f6f0e7 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.55));
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
}

.orb-one {
  top: 15%;
  left: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(29, 89, 100, .2);
}

.orb-two {
  right: -80px;
  bottom: 18%;
  width: 170px;
  height: 170px;
  background: rgba(215, 169, 155, .18);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.interlude-copy h2,
.signals-intro h2,
.city-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 6.3vw, 6.8rem);
}

.hero h1 em {
  color: var(--teal);
  font-style: italic;
}

.hero-focus {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-focus strong {
  color: var(--ink);
}

.hero-quote {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 3px solid var(--rose);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.55);
}

.hero-quote p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.quote-mark {
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 2.7rem;
  line-height: .5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

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

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18, 56, 65, .22);
}

.button-secondary {
  border-color: rgba(21, 52, 61, .18);
  background: rgba(255,255,255,.7);
  color: var(--ink);
}

.button-white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: .82;
  padding: 16px;
  border-radius: 48% 48% 34% 34% / 36% 36% 30% 30%;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(232,218,199,.68));
  box-shadow: var(--shadow);
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: inherit;
}

.portrait-ring {
  position: absolute;
  inset: -24px 22px 28px -26px;
  z-index: -1;
  border: 1px solid rgba(29, 89, 100, .25);
  border-radius: 50%;
}

.portrait-badge {
  position: absolute;
  right: -34px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 45px rgba(21,52,61,.15);
  backdrop-filter: blur(14px);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.35;
}

.badge-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal);
  font-size: 1.1rem;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 86px;
  padding: 23px 28px;
  border: 1px solid rgba(21,52,61,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 18px 50px rgba(21,52,61,.08);
  backdrop-filter: blur(12px);
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  border-right: 1px solid rgba(21,52,61,.1);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  color: var(--rose);
  font-size: .76rem;
  font-weight: 900;
}

.trust-strip strong {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.approach {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.signals-intro h2,
.city-copy h2,
.contact-copy h2 {
  font-size: clamp(2.7rem, 5.5vw, 5.3rem);
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.approach-stage {
  position: relative;
  min-height: 520px;
  max-width: 940px;
  margin: 0 auto;
}

.approach-stage::before,
.approach-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(29,89,100,.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.approach-stage::before {
  width: 430px;
  height: 430px;
}

.approach-stage::after {
  width: 300px;
  height: 300px;
}

.approach-card {
  position: absolute;
  z-index: 2;
  width: 210px;
  min-height: 158px;
  padding: 24px;
  border: 1px solid rgba(21,52,61,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(21,52,61,.1);
}

.approach-card h3 {
  margin: 18px 0 4px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.approach-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.approach-number {
  color: var(--teal);
  font-size: .75rem;
  font-weight: 900;
}

.card-bio { top: 0; left: 50%; transform: translateX(-50%); }
.card-psico { top: 120px; right: 0; }
.card-social { right: 90px; bottom: 0; }
.card-cultural { bottom: 0; left: 90px; }
.card-spiritual { top: 120px; left: 0; }

.approach-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 24px 55px rgba(18,56,65,.25);
}

.approach-center span {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.approach-center strong {
  margin-top: 3px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.approach-closing {
  max-width: 720px;
  margin: 58px auto 0;
  padding: 25px 32px;
  border-radius: 18px;
  background: var(--cream);
  text-align: center;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.reasons {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(140,174,168,.14), transparent 30%),
    var(--teal-dark);
  color: var(--white);
}

.heading-light .eyebrow {
  color: #d8b7ab;
}

.heading-light h2 {
  color: var(--white);
}

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

.reason-card {
  position: relative;
  min-height: 340px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.reason-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}

.reason-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.23);
  background: rgba(255,255,255,.09);
}

.reason-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reason-top > span:first-child {
  color: #d8b7ab;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.reason-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #d8b7ab;
  font-size: 1.4rem;
}

.reason-card h3 {
  max-width: 500px;
  margin: 26px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.13;
}

.reason-card p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.75);
}

.reason-card .highlight-line {
  color: var(--white);
  font-weight: 700;
}

.interlude {
  background: var(--cream);
}

.interlude-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 70px;
}

.interlude-photo {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: .88;
  padding: 12px;
  border-radius: 48% 48% 24px 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.interlude-photo::before {
  content: "";
  position: absolute;
  inset: -26px -24px auto auto;
  z-index: -1;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(215,169,155,.28);
}

.interlude-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  border-radius: inherit;
}

.large-quote {
  display: block;
  height: 68px;
  color: var(--rose);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: .8;
}

.interlude-copy h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5.3vw, 5.5rem);
}

.interlude-copy p {
  margin: 24px 0 30px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 900;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.signals {
  background: var(--white);
}

.signals-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: 80px;
}

.signals-intro {
  position: sticky;
  top: 135px;
}

.signals-intro h2 em {
  color: var(--rose);
  font-style: italic;
}

.signal-count {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 23px;
  border-radius: 22px;
  background: var(--cream);
}

.signal-count strong {
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.signal-count span {
  font-weight: 800;
  line-height: 1.35;
}

.signals-list {
  display: grid;
  gap: 14px;
}

.signal-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 22px 26px;
  border: 1px solid rgba(21,52,61,.09);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(21,52,61,.06);
}

.signal-item span {
  color: var(--rose);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.signal-item p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.35;
}

.city {
  padding-top: 24px;
  background: linear-gradient(to bottom, var(--white), var(--cream));
}

.city-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 40px;
  padding: 68px;
  border-radius: var(--radius-lg);
  background: #efe5d7;
  overflow: hidden;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: -50% auto auto 60%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
}

.city-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.city-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #5d6768;
}

.city-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

.city-mark svg {
  width: 82px;
  fill: var(--teal);
}

.contact {
  background: var(--cream);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 58px;
  padding: 68px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0%, rgba(215,169,155,.32), transparent 30%),
    var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.eyebrow-light {
  color: #e0bbae;
}

.contact-copy h2 {
  max-width: 600px;
}

.contact-copy p {
  max-width: 620px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
}

.contact-details {
  align-self: center;
  border-top: 1px solid rgba(255,255,255,.16);
}

.contact-line {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.contact-line span {
  color: rgba(255,255,255,.52);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-line a,
.contact-line strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  background: #102e35;
  color: rgba(255,255,255,.68);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  object-position: 50% 22%;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
  line-height: 1.3;
}

.footer-brand strong {
  color: var(--white);
  font-size: .9rem;
}

.footer-brand span,
.footer-location,
.footer-whatsapp {
  font-size: .84rem;
}

.footer-whatsapp {
  color: var(--white);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 114, 60, .34);
  transition: transform .2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.03);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.back-to-top {
  position: fixed;
  right: 29px;
  bottom: 96px;
  z-index: 89;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(18,56,65,.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Content is visible by default so the page never appears blank if JavaScript is delayed or blocked. */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 36px;
  }

  .portrait-badge {
    right: -12px;
  }

  .approach-stage {
    min-height: 600px;
  }

  .card-bio { top: 0; }
  .card-psico { top: 140px; right: 15px; }
  .card-social { right: 60px; bottom: 0; }
  .card-cultural { left: 60px; bottom: 0; }
  .card-spiritual { top: 140px; left: 15px; }

  .signals-grid {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 88px 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 3;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 100px 30px 40px;
    background: rgba(247,242,233,.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .main-nav > a:not(.nav-cta) {
    font-family: Georgia, serif;
    font-size: 1.7rem;
    font-weight: 500;
  }

  .nav-cta {
    margin-top: 10px;
    padding: 14px 30px;
  }

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

  .hero-grid,
  .interlude-grid,
  .signals-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-focus,
  .hero-quote {
    margin-inline: auto;
  }

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

  .portrait-frame {
    width: min(84vw, 460px);
  }

  .trust-strip {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    overflow-x: auto;
  }

  .trust-strip div {
    min-width: 105px;
  }

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

  .approach-stage::before,
  .approach-stage::after {
    display: none;
  }

  .approach-card,
  .card-bio,
  .card-psico,
  .card-social,
  .card-cultural,
  .card-spiritual {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 150px;
    transform: none;
  }

  .approach-center {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: 150px;
    border-radius: 28px;
    transform: none;
  }

  .interlude-grid {
    gap: 50px;
  }

  .interlude-photo {
    margin-inline: auto;
  }

  .signals-intro {
    position: relative;
    top: auto;
  }

  .city-card {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .city-mark {
    display: none;
  }

  .contact-card {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 26px), var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-copy strong {
    max-width: 170px;
    font-size: .79rem;
  }

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

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

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .hero-quote {
    align-items: flex-start;
    text-align: left;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .portrait-frame {
    width: min(90vw, 420px);
    border-radius: 44% 44% 28px 28px;
  }

  .portrait-badge {
    right: 12px;
    bottom: 18px;
  }

  .trust-strip {
    margin-top: 58px;
    padding: 16px;
  }

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

  .section-heading h2,
  .signals-intro h2,
  .city-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .approach-stage {
    grid-template-columns: 1fr;
  }

  .approach-center {
    grid-column: auto;
  }

  .approach-closing {
    margin-top: 36px;
    padding: 22px;
  }

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

  .reason-card {
    min-height: 0;
    padding: 28px;
  }

  .interlude-grid {
    gap: 38px;
  }

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

  .large-quote {
    height: 50px;
    font-size: 6rem;
  }

  .interlude-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .signal-count {
    padding: 18px;
  }

  .signal-item {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .signal-item p {
    font-size: 1.08rem;
  }

  .city-card,
  .contact-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    right: 21px;
    bottom: 84px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
