@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
  src: url("../assets/fonts/instrument-sans-site.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../assets/fonts/newsreader-site.woff2") format("woff2");
}

:root {
  --ink: #17343b;
  --ink-deep: #10282e;
  --ink-soft: #315159;
  --ivory: #f6f1e9;
  --cream: #fffdf9;
  --paper: #fbf8f2;
  --sage: #dce5df;
  --sage-deep: #91a89e;
  --clay: #a97569;
  --clay-text: #7f574e;
  --graphite: #202725;
  --muted: #53625e;
  --line: rgba(23, 52, 59, 0.16);
  --white-line: rgba(255, 253, 249, 0.2);
  --shadow: 0 32px 80px rgba(23, 52, 59, 0.12);
  --shadow-soft: 0 18px 45px rgba(23, 52, 59, 0.08);
  --sans: "Instrument Sans", "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--graphite);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

::selection {
  background: var(--clay);
  color: var(--ink-deep);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: clamp(88px, 11vw, 148px);
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 1001;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 260ms var(--ease),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 12px 40px rgba(23, 52, 59, 0.05);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  letter-spacing: -0.03em;
}

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

.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 560;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease,
    color 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 260ms var(--ease);
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 13px;
}

.button--ink {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(23, 52, 59, 0.16);
}

.button--ink:hover {
  background: var(--ink-deep);
  box-shadow: 0 16px 36px rgba(23, 52, 59, 0.22);
}

.button--cream {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.button--ghost-light {
  border-color: rgba(255, 253, 249, 0.45);
  color: var(--cream);
}

.button--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.button--whatsapp {
  width: 100%;
  background: #276c56;
  color: #fff;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 6px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 220ms ease;
}

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

.text-link:hover svg {
  transform: translateX(4px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 72px);
  background:
    radial-gradient(circle at 80% 24%, rgba(145, 168, 158, 0.2), transparent 28%),
    linear-gradient(115deg, var(--cream) 0%, var(--cream) 58%, #edf1ec 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.45;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(23, 52, 59, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit--one {
  top: 150px;
  right: -110px;
  width: 560px;
  height: 560px;
}

.hero-orbit--two {
  top: 220px;
  right: -40px;
  width: 420px;
  height: 420px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, 0.82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 112px);
}

.hero-copy {
  padding-bottom: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: rgba(255, 253, 249, 0.7);
}

.display,
.section-title,
.manifesto-quote,
.closing h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.display {
  max-width: 750px;
  font-size: clamp(58px, 7.2vw, 100px);
}

.display em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 630px;
  margin-top: 50px;
  padding: 18px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.58);
  box-shadow: 0 14px 38px rgba(23, 52, 59, 0.055);
  backdrop-filter: blur(10px);
}

.hero-meta > div {
  padding-inline: 20px;
  border-left: 1px solid var(--line);
}

.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.meta-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.hero-visual {
  position: relative;
  align-self: end;
  margin-bottom: 52px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
  border-radius: 220px 220px 24px 24px;
  background: var(--sage);
  border: 1px solid rgba(23, 52, 59, 0.08);
  box-shadow: 0 34px 90px rgba(23, 52, 59, 0.16);
}

.portrait-frame::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 253, 249, 0.42);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame picture,
.portrait-frame img {
  width: 100%;
  height: 100%;
}

.portrait-frame img {
  object-fit: cover;
  object-position: 51% 30%;
  transform: scale(1.015);
}

.portrait-wash {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(16, 40, 46, 0.26));
  pointer-events: none;
}

.portrait-details {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
  margin-top: 14px;
}

.portrait-note {
  position: static;
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 12px 32px rgba(23, 52, 59, 0.06);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(12px);
}

.portrait-note svg {
  width: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--sage-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.portrait-note strong {
  display: block;
  font-size: 13px;
}

.portrait-note--credential {
  border-color: rgba(169, 117, 105, 0.25);
}

.portrait-note--place {
  color: var(--ink-soft);
}

.pulse {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5f8f7a;
}

.pulse::after {
  position: absolute;
  inset: -5px;
  border: 1px solid #5f8f7a;
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  80%, 100% { opacity: 0; transform: scale(1.35); }
}

.credential-line {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  text-align: center;
}

.credential-line i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
}

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

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: clamp(50px, 10vw, 150px);
}

.manifesto-quote {
  max-width: 940px;
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1.08;
}

.manifesto-text {
  max-width: 680px;
  margin: 36px 0 0 auto;
  padding-left: 28px;
  border-left: 1px solid var(--clay);
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(50px, 7vw, 82px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-title {
  font-size: clamp(45px, 6vw, 76px);
  line-height: 1.02;
}

.section-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading--center .section-intro {
  margin-inline: auto;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.care-card {
  position: relative;
  grid-column: span 3;
  min-height: 340px;
  padding: 30px;
  border: 1px solid rgba(23, 52, 59, 0.14);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.55);
  transition:
    transform 300ms var(--ease),
    background-color 300ms ease,
    box-shadow 300ms ease;
}

.care-card:hover {
  z-index: 2;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.care-card--dark {
  background: var(--ink);
  color: var(--cream);
}

.care-card--dark:hover {
  background: var(--ink-deep);
}

.card-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.care-card--dark .card-number {
  color: rgba(255, 253, 249, 0.55);
}

.card-icon {
  width: 46px;
  margin: 52px 0 30px;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.care-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.care-card--dark h3 {
  color: var(--cream);
}

.care-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.care-card--dark p {
  color: rgba(255, 253, 249, 0.7);
}

.care-note {
  max-width: 810px;
  margin: 36px 0 0 auto;
  padding: 24px 0 0 30px;
  border-top: 1px solid rgba(23, 52, 59, 0.2);
  color: var(--ink-soft);
  font-size: 14px;
}

.about {
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(23, 52, 59, 0.08) 50%, transparent 50.05%),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.1fr);
  gap: clamp(64px, 10vw, 150px);
}

.about-sticky {
  align-self: start;
  position: sticky;
  top: 130px;
}

.signature-line {
  margin-top: 50px;
}

.signature-line svg {
  width: 180px;
  fill: none;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-width: 1.2;
}

.about-content > p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.about-content .about-lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(29px, 3.3vw, 43px);
  line-height: 1.18;
}

.training-list {
  display: grid;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.training-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.training-list span,
.license-kicker {
  padding-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.training-list h3 {
  grid-column: 2;
  margin: 0 0 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.training-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.license-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 38px;
  padding: 28px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.license-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.license-card .license-kicker {
  color: rgba(255, 253, 249, 0.55);
}

.license-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.license-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--white-line);
}

.license-card dt {
  color: rgba(255, 253, 249, 0.6);
  font-size: 11px;
}

.license-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.steps-list li {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 40px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.steps-list li:last-child {
  border-right: 0;
}

.step-number {
  color: var(--clay-text);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}

.steps-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consultation-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.consultation-facts div {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.consultation-facts div:last-child {
  border-right: 0;
}

.consultation-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consultation-facts strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.consultation-facts small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.booking {
  position: relative;
  overflow: hidden;
}

.booking::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.booking-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 112px);
}

.booking .section-title {
  color: var(--cream);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 253, 249, 0.68);
  font-size: 17px;
}

.booking-assurances {
  display: grid;
  gap: 13px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.booking-assurances li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 253, 249, 0.84);
  font-size: 14px;
}

.booking-assurances svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: 50%;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.booking-panel {
  min-height: 490px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 40px 90px rgba(5, 18, 21, 0.28);
  color: var(--graphite);
}

.booking-fallback {
  display: grid;
  min-height: 490px;
  align-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.booking-panel-kicker {
  margin: 0 0 14px;
  color: var(--clay-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-fallback h3 {
  max-width: 430px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.booking-fallback > p:not(.booking-panel-kicker) {
  max-width: 470px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.booking-fallback-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.booking-fallback-meta span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  font-size: 12px;
}

.booking-fallback-meta strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

/* Valtyk Calendar v2 — activated by configuration only */
.vcal {
  min-height: 490px;
  color: var(--graphite);
}

.vcal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px 22px;
  border-bottom: 1px solid var(--line);
}

.vcal-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--clay-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vcal-header h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.vcal-price {
  min-width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
}

.vcal-price small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.vcal-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
}

.vcal-calendar,
.vcal-slots {
  min-width: 0;
  padding: 24px;
}

.vcal-calendar {
  border-right: 1px solid var(--line);
}

.vcal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vcal-month-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
}

.vcal-nav {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.vcal-nav:hover {
  background: var(--ivory);
}

.vcal-nav:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.vcal-nav svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.vcal-week,
.vcal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.vcal-week span {
  padding-block: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.vcal-day {
  display: grid;
  min-width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
}

button.vcal-day {
  cursor: pointer;
}

button.vcal-day:hover {
  border-color: var(--sage-deep);
  background: var(--sage);
}

.vcal-day[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
}

.vcal-day--outside,
.vcal-day:disabled {
  color: #aeb8b4;
  cursor: not-allowed;
  opacity: 0.55;
}

.vcal-slots {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.vcal-slots h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.vcal-slots > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.vcal-slot-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.vcal-slot {
  min-height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.vcal-slot:hover,
.vcal-slot[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

[data-vcal-submitting="true"] .vcal-slot:disabled,
[data-vcal-submitting="true"] .vcal-form input:disabled {
  cursor: wait;
  opacity: 0.6;
}

.vcal-empty,
.vcal-loading,
.vcal-error {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.vcal-error {
  color: #8a3e32;
}

.vcal-form {
  display: grid;
  gap: 14px;
  padding: 24px 30px 30px;
  border-top: 1px solid var(--line);
}

.vcal-choice {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.vcal-choice legend {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vcal-choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vcal-choice-options label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  cursor: pointer;
}

.vcal-choice-options label:has(input:checked) {
  border-color: var(--ink);
  background: var(--sage);
  color: var(--ink);
}

.vcal-choice-options input {
  width: 17px;
  height: 17px;
  accent-color: var(--ink);
}

.vcal-choice > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.vcal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vcal-field {
  display: grid;
  gap: 5px;
}

.vcal-field label {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.vcal-field input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--graphite);
  font-size: 14px;
}

.vcal-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vcal-honeypot[hidden] {
  display: none;
}

.vcal-captcha {
  min-width: 0;
  min-height: 1px;
}

.vcal-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.vcal-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.vcal-consent a {
  color: var(--ink);
}

.vcal-submit {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.vcal-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.vcal-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.vcal-success {
  display: grid;
  min-height: 490px;
  place-items: center;
  padding: 40px;
  text-align: center;
}

.vcal-success svg {
  width: 50px;
  margin: 0 auto 22px;
  fill: none;
  stroke: #5f8f7a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.vcal-success h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
}

.vcal-success p {
  max-width: 390px;
  margin: 12px auto 0;
  color: var(--muted);
}

.vcal-reference {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.vcal-success .vcal-success-note {
  max-width: 440px;
  font-size: 13px;
}

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

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.location-card {
  min-height: 520px;
  padding: 24px;
  border-radius: 24px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
}

.location-map {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 472px;
  border-radius: 16px;
  background:
    linear-gradient(48deg, transparent 47%, rgba(23, 52, 59, 0.09) 47.5%, rgba(23, 52, 59, 0.09) 49%, transparent 49.5%),
    linear-gradient(130deg, transparent 28%, rgba(196, 157, 145, 0.17) 28.5%, rgba(196, 157, 145, 0.17) 31%, transparent 31.5%),
    var(--sage);
}

.location-map::before,
.location-map::after {
  position: absolute;
  border: 1px solid rgba(23, 52, 59, 0.12);
  border-radius: 50%;
  content: "";
}

.location-map::before {
  inset: 16% 7% 12% 20%;
}

.location-map::after {
  inset: 27% 20% 23% 6%;
}

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(23, 52, 59, 0.18);
  transform-origin: left;
}

.map-line--one {
  top: 30%;
  left: 6%;
  width: 85%;
  transform: rotate(12deg);
}

.map-line--two {
  top: 72%;
  left: 3%;
  width: 90%;
  transform: rotate(-9deg);
}

.map-line--three {
  top: 5%;
  left: 63%;
  width: 75%;
  transform: rotate(83deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 45%;
  left: 51%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50% 50% 50% 10%;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(23, 52, 59, 0.25);
  transform: rotate(-45deg);
}

.map-pin svg {
  width: 29px;
  fill: none;
  stroke: var(--cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform: rotate(45deg);
}

.location-copy address {
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
  font-style: normal;
}

.location-hours {
  display: flex;
  max-width: 390px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
  padding-block: 16px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.location-hours strong {
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 380px;
  margin: 26px 0 0;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(23, 52, 59, 0.22);
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 52, 59, 0.22);
}

.faq-list summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(23, 52, 59, 0.28);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -2px 52px 28px 0;
  color: var(--muted);
  font-size: 15px;
}

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

.closing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) clamp(28px, 8vw, 100px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 100%, rgba(196, 157, 145, 0.25), transparent 35%),
    var(--ink);
  color: var(--cream);
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.closing-card::before {
  top: -180px;
  right: -80px;
  width: 460px;
  height: 460px;
}

.closing-card::after {
  top: -120px;
  right: -20px;
  width: 340px;
  height: 340px;
}

.closing-mark {
  position: absolute;
  bottom: -95px;
  left: -35px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 310px;
  line-height: 1;
}

.closing .eyebrow {
  position: relative;
  justify-content: center;
  color: rgba(255, 253, 249, 0.65);
}

.closing h2 {
  position: relative;
  max-width: 850px;
  margin-inline: auto;
  color: var(--cream);
  font-size: clamp(48px, 7vw, 88px);
}

.closing-card > p:not(.eyebrow) {
  position: relative;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.65);
}

.closing-actions {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
}

.site-footer {
  padding: 74px 0 28px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 60px;
}

.brand--footer {
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid > div:not(.footer-brand) a {
  min-height: 34px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #276c56;
  box-shadow: 0 12px 32px rgba(21, 69, 52, 0.25);
  color: #fff;
  transition: transform 260ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 27px;
  fill: currentColor;
}

.mobile-action-bar {
  display: none;
}

.og-mode .reading-progress,
.og-mode .whatsapp-float,
.og-mode .mobile-action-bar {
  display: none !important;
}

.og-mode .portrait-note--place {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease);
}

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

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

.js .care-grid .reveal:nth-child(2),
.js .steps-list .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.js .care-grid .reveal:nth-child(3),
.js .steps-list .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.js .care-grid .reveal:nth-child(4) {
  transition-delay: 240ms;
}

/* Privacy and utility pages */
.utility-page {
  min-height: 100vh;
  padding: 140px 0 90px;
  background: var(--ivory);
}

.utility-shell {
  width: min(780px, calc(100vw - 40px));
  margin-inline: auto;
}

.utility-page h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 76px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.utility-lead {
  margin: 0 0 52px;
  color: var(--muted);
  font-size: 17px;
}

.utility-content {
  padding: clamp(26px, 6vw, 56px);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.utility-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
}

.utility-content h2:first-child {
  margin-top: 0;
}

.utility-content p,
.utility-content li {
  color: var(--muted);
  font-size: 14px;
}

.utility-content a {
  color: var(--ink);
}

.utility-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-contact-note {
  max-width: 25ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.not-found strong {
  display: block;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: clamp(150px, 30vw, 360px);
  font-weight: 500;
  line-height: 0.65;
}

.not-found h1 {
  margin: -12px 0 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 500;
}

.not-found p {
  margin: 0 0 28px;
  color: rgba(255, 253, 249, 0.7);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
    gap: 50px;
  }

  .display {
    font-size: clamp(54px, 7.7vw, 78px);
  }

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

  .care-card {
    grid-column: auto;
  }

  .booking-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(400px, 1fr);
    gap: 50px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --shell: calc(100vw - 36px);
  }

  .section {
    padding-block: 88px;
  }

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

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.78);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 28px 18px max(28px, calc(28px + env(safe-area-inset-bottom)));
    background: rgba(255, 253, 249, 0.98);
    backdrop-filter: blur(18px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 16px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 62px);
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .display {
    max-width: 690px;
    font-size: clamp(56px, 12vw, 84px);
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-visual {
    width: min(560px, 82vw);
    margin: 10px auto 70px;
  }

  .credential-line {
    flex-wrap: wrap;
    gap: 12px 20px;
    padding-block: 20px;
  }

  .manifesto-grid,
  .about-grid,
  .booking-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 30px;
  }

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

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

  .signature-line {
    display: none;
  }

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

  .steps-list li {
    min-height: auto;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-list li:last-child {
    border-bottom: 0;
  }

  .consultation-facts {
    grid-template-columns: 1fr 1fr;
  }

  .consultation-facts div:nth-child(2) {
    border-right: 0;
  }

  .consultation-facts div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .booking-grid {
    gap: 48px;
  }

  .location-grid {
    gap: 50px;
  }

  .location-card {
    min-height: 430px;
  }

  .location-map {
    min-height: 382px;
  }

  .faq-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  html {
    scroll-padding-bottom: 80px;
  }

  body {
    padding-bottom: 64px;
  }

  .section {
    padding-block: 72px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
  }

  .hero {
    min-height: 0;
    padding-top: 116px;
  }

  .hero-orbit {
    display: none;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .display {
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.96;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
    border: 0;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 34px;
    padding: 8px 16px;
  }

  .hero-meta > div {
    padding: 12px 0;
    border: 0;
  }

  .hero-meta > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .hero-visual {
    width: 100%;
    margin: 18px auto 54px;
    padding-inline: 8px;
  }

  .portrait-details {
    grid-template-columns: 1fr;
    margin-inline: 8px;
  }

  .portrait-frame {
    aspect-ratio: 4 / 5;
    border-radius: 160px 160px 18px 18px;
  }

  .portrait-frame img {
    object-position: 51% 26%;
  }

  .portrait-note {
    min-height: 60px;
    font-size: 10px;
  }

  .portrait-note strong {
    font-size: 11px;
  }

  .credential-line {
    justify-content: flex-start;
    padding: 18px 0 24px;
    font-size: 13px;
    text-align: left;
  }

  .credential-line i {
    display: none;
  }

  .credential-line span {
    width: 100%;
  }

  .manifesto-quote {
    font-size: 36px;
  }

  .manifesto-text {
    margin-top: 28px;
    font-size: 16px;
  }

  .section-title {
    font-size: clamp(42px, 12vw, 56px);
  }

  .section-intro {
    font-size: 16px;
  }

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

  .care-card {
    min-height: 290px;
  }

  .card-icon {
    margin-top: 34px;
  }

  .about-grid {
    gap: 44px;
  }

  .about-content > p {
    font-size: 15px;
  }

  .about-content .about-lead {
    font-size: 29px;
  }

  .training-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .training-list h3,
  .training-list p {
    grid-column: 1;
  }

  .license-card {
    grid-template-columns: 1fr;
  }

  .consultation-facts {
    grid-template-columns: 1fr 1fr;
  }

  .consultation-facts div {
    padding: 20px;
  }

  .consultation-facts strong {
    font-size: 22px;
  }

  .booking-panel,
  .booking-fallback {
    min-height: 440px;
  }

  .booking-fallback {
    padding: 28px 22px;
  }

  .booking-fallback h3 {
    font-size: 38px;
  }

  .booking-fallback-meta,
  .vcal-grid,
  .vcal-form-row,
  .vcal-choice-options {
    grid-template-columns: 1fr;
  }

  .vcal-header {
    padding: 22px 18px 18px;
  }

  .vcal-grid {
    display: block;
  }

  .vcal-calendar {
    padding: 20px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .vcal-slots {
    min-height: 250px;
    padding: 20px 16px;
  }

  .vcal-form {
    padding: 20px 16px 24px;
  }

  .vcal-day {
    min-width: 32px;
  }

  .location-card {
    min-height: 330px;
    padding: 14px;
  }

  .location-map {
    min-height: 302px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 20px;
  }

  .closing-card {
    border-radius: 18px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: grid;
    height: 64px;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: 0 -10px 30px rgba(23, 52, 59, 0.08);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-action-bar a:last-child {
    background: var(--ink);
    color: var(--cream);
  }

  .whatsapp-float {
    display: none;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --muted: #3d4d49;
    --line: rgba(23, 52, 59, 0.35);
  }

  .care-card,
  .booking-panel,
  .license-card {
    border-width: 2px;
  }
}
