/* LÁZARO: public landing styles adapted from the existing clinic website. */

:root {
  --ink: #17322b;
  --ink-soft: #486159;
  --forest: #1f5647;
  --forest-deep: #133d34;
  --sage: #aac9b9;
  --sage-pale: #e2eee7;
  --cream: #f7f4eb;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(23, 50, 43, 0.13);
  --accent: #d9b56b;
  --shadow: 0 30px 80px rgba(31, 86, 71, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 1000;
  border-radius: 999px;
  background: var(--forest-deep);
  color: var(--white);
  padding: 12px 20px;
  transition: top 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(23, 50, 43, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 48px;
  object-fit: contain;
}

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

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: 0.15em;
  line-height: 1.05;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 42px);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  padding: 0 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 30px rgba(31, 86, 71, 0.16);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button:hover,
.button:focus-visible {
  background: var(--forest-deep);
  box-shadow: 0 16px 34px rgba(31, 86, 71, 0.23);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 235, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 95px, rgba(31, 86, 71, 0.025) 96px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 74px;
  padding-top: 78px;
  padding-bottom: 90px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(170, 201, 185, 0.48), rgba(170, 201, 185, 0));
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  left: -180px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(217, 181, 107, 0.24), rgba(217, 181, 107, 0));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(54px, 6.2vw, 86px);
  line-height: 0.98;
}

.hero h1 em {
  position: relative;
  color: var(--forest);
  font-weight: 400;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 3px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  opacity: 0.65;
}

.hero-lead {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

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

.text-link {
  border-bottom: 1px solid rgba(31, 86, 71, 0.35);
  padding: 10px 0 7px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  transition: border-color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--forest);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 52px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-visual {
  position: relative;
  padding: 24px 8px 38px 22px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.46), transparent 28%),
    linear-gradient(145deg, #d8e8df, #8fb7a4);
  box-shadow: var(--shadow);
  padding: 30px 32px 34px;
}

.visual-card::after {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -80px;
  bottom: -70px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  content: "";
}

.visual-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--forest-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.visual-topline > span:first-child {
  min-width: 0;
  overflow: hidden;
  padding-left: 2px;
  text-overflow: ellipsis;
}

.status {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(19, 61, 52, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  padding: 7px 10px;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
}

.wellness-orbit {
  position: relative;
  width: min(360px, 90%);
  aspect-ratio: 1;
  margin: 48px auto 22px;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(19, 61, 52, 0.22);
  border-radius: 50%;
}

.orbit-two {
  inset: 38px;
  border-style: dashed;
  animation: spin 26s linear infinite;
}

.orbit-core {
  position: absolute;
  inset: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 50px rgba(19, 61, 52, 0.11);
  color: var(--forest-deep);
}

.orbit-core span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  letter-spacing: -0.06em;
}

.orbit-core small {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-label {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  color: var(--forest-deep);
  padding: 9px 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(19, 61, 52, 0.08);
}

.orbit-label-one { top: 8px; left: 50%; transform: translateX(-50%); }
.orbit-label-two { left: -7px; bottom: 85px; }
.orbit-label-three { right: -24px; bottom: 92px; }

.visual-bottom {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(19, 61, 52, 0.16);
  padding-top: 18px;
}

.visual-bottom div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.visual-bottom strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.visual-bottom div span {
  color: var(--forest-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest-deep);
  color: var(--cream);
}

.floating-note {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  border: 1px solid rgba(31, 86, 71, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 40px rgba(31, 86, 71, 0.13);
  padding: 14px 16px;
}

.blog {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 8%, rgba(170, 201, 185, 0.22), transparent 27%),
    var(--paper);
}

.blog-heading { align-items: start; }
.blog-intro { max-width: 430px; margin-left: auto; }
.blog-intro p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.blog-intro span { display: block; margin-top: 15px; color: var(--forest); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 18px 50px rgba(31, 86, 71, .07); transition: transform .22s ease, box-shadow .22s ease; }
.blog-card:hover { box-shadow: 0 26px 60px rgba(31, 86, 71, .12); transform: translateY(-5px); }
.blog-card-visual { position: relative; min-height: 185px; overflow: hidden; background: linear-gradient(145deg, #dcece4, #9bbdac); }
.blog-card.inbody .blog-card-visual { background: linear-gradient(145deg, #d9eef0, #86b7c0); }
.blog-card.habits .blog-card-visual { background: linear-gradient(145deg, #f1e7d1, #d4b978); }
.blog-card-visual::before,
.blog-card-visual::after { position: absolute; border: 1px solid rgba(255,255,255,.58); border-radius: 50%; content: ""; }
.blog-card-visual::before { width: 210px; height: 210px; right: -46px; top: -70px; }
.blog-card-visual::after { width: 95px; height: 95px; left: 30px; bottom: -35px; }
.blog-card-visual > span { position: absolute; left: 24px; top: 22px; color: rgba(19,61,52,.82); font-family: Georgia,"Times New Roman",serif; font-size: 45px; font-style: italic; }
.blog-card-visual > i { position: absolute; right: 26px; bottom: 23px; width: 62px; height: 62px; border-radius: 50%; background: rgba(255,253,248,.72); box-shadow: 0 10px 28px rgba(19,61,52,.12); }
.blog-card-visual > i::before,
.blog-card-visual > i::after { position: absolute; top: 50%; left: 50%; background: var(--forest); content: ""; transform: translate(-50%,-50%); }
.blog-card-visual > i::before { width: 24px; height: 2px; }
.blog-card-visual > i::after { width: 2px; height: 24px; }
.blog-card-content { padding: 25px; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--forest); font-size: 8px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.blog-card-meta small { color: var(--ink-soft); font-size: 8px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.blog-card h3 { margin: 24px 0 12px; font-family: Georgia,"Times New Roman",serif; font-size: 25px; font-weight: 400; line-height: 1.2; }
.blog-card p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.blog-card .coming-soon { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-top: 24px; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--forest); cursor: default; padding: 18px 0 0; font: inherit; font-size: 10px; font-weight: 850; }

.note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest);
  font-weight: 900;
}

.floating-note p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.floating-note strong { font-size: 12px; }
.floating-note small { color: var(--ink-soft); font-size: 10px; }

@keyframes spin { to { transform: rotate(360deg); } }

.section {
  padding: 118px 0;
}

.section h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
}

.services {
  background: var(--paper);
}

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

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 4px auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

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

.service-card {
  position: relative;
  min-height: 300px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.25);
  padding: 30px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 24px 50px rgba(31, 86, 71, 0.08);
  transform: translateY(-5px);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-number {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.service-tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  padding: 7px 10px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 270px;
  margin: 70px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.prevention {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 30%, rgba(170, 201, 185, 0.12), transparent 25%),
    var(--forest-deep);
  color: var(--white);
}

.prevention-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
  align-items: center;
}

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

.prevention-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--forest-deep);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--forest-deep);
}

.steps {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  padding: 30px 0;
}

.step > span {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.step h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.7;
}

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

.professional-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.professional-portrait {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(31, 86, 71, 0.13);
  border-radius: 160px 28px 130px 28px;
  background: var(--sage-pale);
  box-shadow: 0 24px 60px rgba(31, 86, 71, 0.12);
}

.professional-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 61, 52, 0.62), transparent 34%);
  content: "";
  pointer-events: none;
}

.professional-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.portrait-caption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 32px;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.professional-title {
  margin: 20px 0 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: uppercase;
}

.professional-lead {
  max-width: 650px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
}

.professional-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.professional-values div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid var(--line);
  padding: 0 20px;
}

.professional-values div:first-child { padding-left: 0; }
.professional-values div:last-child { border: 0; }
.professional-values strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.professional-values span { color: var(--ink-soft); font-size: 12px; line-height: 1.5; }

.allies {
  background:
    radial-gradient(circle at 82% 28%, rgba(170, 201, 185, .2), transparent 28%),
    var(--paper);
}
.allies-shell {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 90px;
}
.allies-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}
.allies-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 86, 71, .14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(222,238,229,.88));
  padding: 54px;
  box-shadow: 0 24px 60px rgba(31, 86, 71, .09);
}
.allies-preview::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: -70px;
  bottom: -90px;
  border: 1px solid rgba(31, 86, 71, .14);
  border-radius: 50%;
  content: "";
}
.allies-preview > span {
  color: var(--forest);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.allies-preview > strong {
  display: block;
  margin-top: 22px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.12;
}
.allies-preview > p {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

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

.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  padding: 76px;
  box-shadow: var(--shadow);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.contact-shell h2 {
  font-size: clamp(40px, 4.4vw, 58px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.contact-details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-details article {
  padding: 30px;
}

.contact-details article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-label {
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details h3 {
  margin: 12px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.contact-details p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.contact-details a {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
}

.phone-list {
  margin-top: 16px;
}

.phone-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}

.phone-row + .phone-row {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.contact-details .phone-number {
  border-bottom: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.phone-actions {
  display: flex;
  gap: 8px;
}

.contact-details .phone-actions a {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 9px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-details .phone-actions a:hover,
.contact-details .phone-actions a:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-top: 16px;
  font-size: 12px;
  line-height: 1.7;
}

.schedule-row + .schedule-row {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.schedule-row > span { color: rgba(255, 255, 255, 0.64); }
.schedule-row strong { text-align: right; font-weight: 700; }
.schedule-row small { color: var(--sage); font-size: 10px; }

footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer .brand-mark { width: 28px; height: 40px; }
.brand-footer .brand-copy strong { font-size: 16px; }
.footer-inner p,
.footer-inner > span { color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.footer-inner p { text-align: center; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .header-inner { min-height: 74px; }
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-top: 80px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(600px, 100%); margin: 0 auto; }
  .split-heading,
  .prevention-grid,
  .professional-grid,
  .allies-shell,
  .contact-shell { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-card:last-child { grid-column: 1 / -1; }
  .split-heading { gap: 26px; }
  .split-heading > p { margin-left: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .prevention-grid,
  .professional-grid,
  .allies-shell { gap: 60px; }
  .contact-shell { gap: 54px; padding: 58px; }
}

@media (max-width: 900px) {
  .button-small,
  .powered-lockup { display: none; }
  .header-inner { gap: 16px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .button-small { display: none; }
  .header-inner { justify-content: space-between; gap: 12px; }
  .hero-grid { min-height: auto; padding: 68px 0 72px; }
  .hero h1 { font-size: clamp(47px, 15vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-meta { gap: 12px 18px; margin-top: 36px; }
  .hero-visual { padding-left: 0; }
  .visual-card { min-height: 480px; border-radius: 28px; padding: 22px 20px 28px; }
  .visual-topline { align-items: flex-start; flex-direction: column; gap: 10px; white-space: normal; }
  .visual-topline > span:first-child { display: block; width: 100%; overflow: visible; text-overflow: clip; }
  .wellness-orbit { margin-top: 34px; }
  .orbit-core { inset: 76px; }
  .orbit-core span { font-size: 42px; }
  .orbit-label-three { right: -5px; }
  .floating-note { left: -5px; bottom: 8px; min-width: 220px; }
  .section { padding: 84px 0; }
  .section h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 260px; padding: 25px; }
  .service-card h3 { margin-top: 50px; }
  .prevention-grid { gap: 48px; }
  .step { grid-template-columns: 44px 1fr; gap: 14px; }
  .professional-grid { gap: 48px; }
  .professional-portrait { min-height: 400px; }
  .professional-values { grid-template-columns: 1fr; }
  .professional-values div,
  .professional-values div:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .professional-values div:last-child { border-bottom: 0; }
  .allies-shell { gap: 38px; }
  .allies-preview { border-radius: 24px; padding: 36px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child { grid-column: auto; }
  .blog-card-visual { min-height: 165px; }
  .contact-shell { gap: 46px; border-radius: 24px; padding: 38px 22px; }
  .contact-shell h2 { font-size: 40px; }
  .contact-details article { padding: 24px 20px; }
  .phone-row { grid-template-columns: 1fr; gap: 10px; }
  .phone-actions { flex-wrap: wrap; }
  .footer-inner { flex-direction: column; text-align: center; }
}

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


.powered-lockup {
  display: flex;
  min-width: 82px;
  flex-direction: column;
  gap: 2px;
  margin-left: 3px;
  border-left: 1px solid var(--line);
  padding-left: 11px;
}

.powered-lockup small {
  color: #6d817b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.powered-lockup img {
  width: 76px;
  height: 25px;
  object-fit: contain;
  object-position: left center;
}

.brand-footer .powered-lockup img { width: 64px; height: 21px; }


svg { display: block; }
section[id] { scroll-margin-top: 100px; }
.header-inner { max-width: 1440px; gap: 20px; }
.main-nav { gap: clamp(14px, 1.7vw, 28px); }
.mobile-menu, .mobile-booking { display: none; }
.schedule-note { margin-top: 20px !important; line-height: 1.7; }
.footer-inner a[href="/privacidad.html"] { text-decoration: underline; text-underline-offset: 3px; }
.privacy-page { max-width: 780px; padding: 72px 0; }
.privacy-page h1 { font: 400 clamp(36px,6vw,58px)/1.1 Georgia,serif; }
.privacy-page h2 { margin-top: 36px; font: 400 25px Georgia,serif; }
.privacy-page p, .privacy-page li { color: var(--ink-soft); line-height: 1.8; }
.privacy-page a:not(.button) { text-decoration: underline; }
@media (max-width: 1180px) {
  .main-nav { display: none; }
  .mobile-menu { position: relative; display: block; margin-left: auto; }
  .mobile-menu summary { cursor: pointer; min-height: 44px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 24px; font-weight: 700; font-size: 13px; }
  .mobile-nav { position: absolute; top: 56px; right: 0; width: min(290px,80vw); display: grid; gap: 4px; padding: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .mobile-nav a { padding: 12px; font-size: 14px; border-radius: 8px; }
  .mobile-nav a:hover { background: var(--sage-pale); }
}
@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .site-header .powered-lockup { display: none; }
  .brand-footer .powered-lockup { display: flex; }
  .mobile-booking { position: fixed; display: flex; z-index: 90; bottom: 14px; left: 16px; right: 16px; min-height: 52px; box-shadow: 0 4px 30px rgba(19,61,52,.3); }
  .brand-copy strong { font-size: 20px; }
  .brand-copy span { font-size: 9px; }
  .schedule-row { gap: 12px; }
  .contact-details .phone-number { font-size: 23px; }
  .phone-actions a { min-height: 40px; display: inline-flex; align-items: center; padding: 10px 15px !important; font-size: 12px !important; }
}
