:root {
  --cream-50: #fdfbf7;
  --cream-100: #f7f2e9;
  --cream-200: #eee4d6;
  --cream-300: #ddcdbb;
  --brown-900: #35231f;
  --brown-800: #46312a;
  --brown-700: #624a40;
  --brown-500: #80695f;
  --terracotta-700: #9f401e;
  --terracotta-600: #b85327;
  --terracotta-500: #ca693d;
  --gold-500: #b58b4f;
  --white: #fffdfa;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --shadow-soft: 0 24px 70px rgba(53, 35, 31, 0.12);
  --shadow-cover: 0 30px 80px rgba(53, 35, 31, 0.28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 84px;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--brown-900);
  font-family: var(--font-body);
  background-color: var(--cream-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cpath d='M19 15v8M15 19h8' stroke='%239f401e' stroke-opacity='.055' stroke-width='1'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

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

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

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

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 em,
h2 em {
  font-weight: 400;
  font-variation-settings: "SOFT" 70, "WONK" 1;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4.2rem, 5.8vw, 5.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.3rem);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brown-900);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 14px max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(70, 49, 42, 0.08);
  background: rgba(247, 242, 233, 0.78);
  backdrop-filter: blur(18px);
  transition: background-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 242, 233, 0.94);
  box-shadow: 0 14px 40px rgba(53, 35, 31, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 46px;
}

.brand__monogram {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--terracotta-700);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
}

.brand__name {
  display: grid;
  line-height: 1.02;
}

.brand__name strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.brand__name small {
  margin-top: 4px;
  color: var(--brown-500);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta-600);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button--compact {
  min-height: 48px;
  padding-inline: 22px;
}

.button--dark {
  color: var(--white);
  background: var(--brown-900);
}

.button--dark:hover {
  background: var(--terracotta-700);
}

.button--primary {
  color: var(--white);
  background: var(--terracotta-600);
  box-shadow: 0 14px 30px rgba(159, 64, 30, 0.2);
}

.button--primary:hover {
  background: var(--terracotta-700);
  box-shadow: 0 18px 36px rgba(159, 64, 30, 0.26);
}

.button--ghost {
  border-color: rgba(70, 49, 42, 0.22);
  background: rgba(255, 253, 250, 0.46);
}

.button--ghost:hover {
  border-color: var(--brown-900);
  background: var(--white);
}

.button--light {
  color: var(--brown-900);
  background: var(--cream-50);
}

.button--light:hover {
  background: var(--cream-200);
}

.button__status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48a26f;
  box-shadow: 0 0 0 5px rgba(72, 162, 111, 0.16);
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  min-height: calc(100svh - var(--header-height));
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  overflow: hidden;
}

.hero__content {
  align-self: center;
  padding: 76px clamp(40px, 6vw, 90px) 76px 0;
}

.pill,
.eyebrow {
  color: var(--terracotta-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 36px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--brown-900);
}

.eyebrow {
  margin-bottom: 20px;
}

.hero__lead {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--brown-700);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

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

.hero__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 48px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(70, 49, 42, 0.14);
  color: var(--brown-500);
  font-size: 0.78rem;
  font-weight: 600;
  list-style: none;
}

.hero__topics li:not(:last-child)::after {
  margin-left: 30px;
  color: var(--terracotta-500);
  content: "+";
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 700px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(159, 64, 30, 0.15), transparent 40%),
    linear-gradient(160deg, #c66a3e, #7e311b 72%);
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  inset: 8% -10% auto auto;
  z-index: -1;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 230, 188, 0.24);
  filter: blur(2px);
}

.hero__cover-wrap {
  width: min(53%, 330px);
  aspect-ratio: 2 / 3;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 12px;
  background: rgba(255, 253, 250, 0.12);
  box-shadow: var(--shadow-cover);
  transform: rotate(2.5deg) translateY(-20px);
}

.hero__cover {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}

.hero__note {
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 58px);
  display: grid;
  gap: 7px;
  width: min(280px, 60%);
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(53, 35, 31, 0.48);
  backdrop-filter: blur(14px);
}

.hero__note span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__note strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.3;
}

.quick-links,
.about,
.expertise,
.ebook,
.clinic,
.site-footer {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.quick-links {
  padding-block: clamp(80px, 10vw, 130px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(70, 49, 42, 0.16);
}

.section-heading > * {
  margin-bottom: 0;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
}

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

.quick-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(70, 49, 42, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.68);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quick-card:hover {
  border-color: var(--terracotta-500);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.quick-card--featured {
  color: var(--white);
  border-color: var(--brown-900);
  background: var(--brown-900);
}

.quick-card--featured:hover {
  color: var(--white);
  border-color: var(--terracotta-700);
  background: var(--terracotta-700);
}

.quick-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.82;
}

.quick-card__icon svg,
.clinic__pin svg,
.mobile-whatsapp svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.quick-card small,
.quick-card strong {
  display: block;
}

.quick-card small {
  margin-bottom: 5px;
  color: var(--brown-500);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-card--featured small {
  color: var(--cream-300);
}

.quick-card strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.22;
}

.quick-card__arrow {
  font-size: 1.2rem;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brown-900);
  box-shadow: var(--shadow-soft);
}

.about__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(36px, 6vw, 74px);
  color: var(--white);
  background: var(--terracotta-700);
  isolation: isolate;
}

.about__portrait,
.about__portrait-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about__portrait {
  z-index: -2;
  object-fit: cover;
  object-position: 52% 34%;
}

.about__portrait-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(53, 35, 31, 0.08) 30%, rgba(53, 35, 31, 0.82) 100%),
    linear-gradient(90deg, rgba(159, 64, 30, 0.12), transparent 60%);
}

.about__monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.about__aside p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-shadow: 0 3px 24px rgba(26, 14, 11, 0.34);
}

.about__content {
  padding: clamp(46px, 7vw, 90px);
  color: var(--cream-200);
}

.about__content .eyebrow {
  color: var(--cream-300);
}

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

.about__content > p {
  max-width: 650px;
  color: rgba(247, 242, 233, 0.78);
  line-height: 1.75;
}

.about__lead {
  color: var(--cream-50) !important;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.45 !important;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 42px 0 0;
}

.credentials div {
  padding-top: 18px;
  border-top: 1px solid rgba(247, 242, 233, 0.2);
}

.credentials dt {
  margin-bottom: 8px;
  color: var(--cream-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.credentials dd {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.expertise {
  padding-block: clamp(90px, 12vw, 150px);
}

.expertise__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
  margin-bottom: 52px;
}

.expertise__heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.expertise__heading > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: var(--brown-700);
  font-size: 1.04rem;
  line-height: 1.75;
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(70, 49, 42, 0.18);
  border-left: 1px solid rgba(70, 49, 42, 0.18);
  list-style: none;
}

.expertise__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  min-height: 205px;
  padding: 26px;
  border-right: 1px solid rgba(70, 49, 42, 0.18);
  border-bottom: 1px solid rgba(70, 49, 42, 0.18);
  background: rgba(255, 253, 250, 0.42);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.expertise__item:hover {
  color: var(--white);
  background: var(--terracotta-700);
  transform: translateY(-3px);
}

.expertise__item span {
  color: var(--terracotta-600);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.expertise__item:hover span {
  color: var(--cream-300);
}

.expertise__item strong {
  max-width: 220px;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.16;
}

.expertise__audience {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--brown-900);
}

.expertise__audience > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--cream-300);
}

.expertise__audience p {
  margin: 0;
  color: rgba(247, 242, 233, 0.78);
  line-height: 1.5;
}

.expertise__audience strong {
  color: var(--white);
}

.ebook,
.clinic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  padding-block: clamp(90px, 12vw, 150px);
}

.ebook__art {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.54), transparent 28%),
    linear-gradient(145deg, var(--cream-200), var(--cream-300));
  overflow: hidden;
}

.ebook__art::before {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(159, 64, 30, 0.17);
  border-radius: 50%;
  content: "";
}

.ebook__book {
  position: relative;
  z-index: 1;
  width: min(46%, 300px);
  aspect-ratio: 2 / 3;
  padding: 7px 7px 7px 12px;
  border: 1px solid rgba(89, 63, 49, 0.16);
  border-radius: 6px 10px 10px 6px;
  background: linear-gradient(90deg, #d7c8b6 0 5px, var(--cream-50) 5px 100%);
  box-shadow:
    0 34px 68px rgba(53, 35, 31, 0.25),
    12px 15px 0 rgba(89, 63, 49, 0.08);
  transform: rotate(-1.15deg);
  transform-origin: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ebook__book::after {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 7px;
  width: 1px;
  content: "";
  background: rgba(89, 63, 49, 0.2);
  box-shadow: 3px 0 7px rgba(53, 35, 31, 0.13);
}

.ebook__book:hover {
  box-shadow:
    0 40px 78px rgba(53, 35, 31, 0.28),
    10px 13px 0 rgba(89, 63, 49, 0.07);
  transform: rotate(-0.35deg) translateY(-5px);
}

.ebook__book img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px 7px 7px 3px;
  object-fit: contain;
  object-position: center;
}

.ebook__stamp {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  background: var(--terracotta-600);
  transform: rotate(7deg);
}

.ebook__content > p,
.clinic__content > p {
  max-width: 560px;
  color: var(--brown-700);
  font-size: 1.04rem;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 15px 10px 15px 32px;
  border-top: 1px solid rgba(70, 49, 42, 0.14);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--terracotta-600);
  content: "✦";
}

.clinic {
  padding-top: 0;
}

.clinic__content address {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 540px;
  margin: 34px 0 28px;
  padding: 22px 0;
  border-block: 1px solid rgba(70, 49, 42, 0.14);
  font-style: normal;
}

.clinic__pin {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--terracotta-600);
}

.clinic__content address small,
.clinic__content address strong {
  display: block;
}

.clinic__content address small {
  margin-bottom: 7px;
  color: var(--brown-500);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic__content address strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.clinic__map {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(70, 49, 42, 0.12);
  border-radius: var(--radius-lg);
  background: var(--cream-200);
  box-shadow: var(--shadow-soft);
}

.clinic__map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(53, 35, 31, 0.16));
}

.clinic__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) sepia(0.08) contrast(0.95);
  transition: filter 220ms ease, transform 300ms ease;
}

.clinic__map:hover iframe,
.clinic__map:focus-within iframe {
  filter: none;
  transform: scale(1.01);
}

.map-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(70, 49, 42, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.78);
  backdrop-filter: blur(14px);
}

.map-label span,
.map-label strong,
.map-label small {
  display: block;
}

.map-label span {
  margin-bottom: 5px;
  color: var(--terracotta-700);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-label strong {
  font-family: var(--font-display);
  font-size: 1.24rem;
}

.map-label small {
  margin-top: 4px;
  color: var(--brown-500);
  font-size: 0.76rem;
}

.map-label a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--terracotta-600);
  transition: background-color 180ms ease, transform 180ms ease;
}

.map-label a:hover {
  background: var(--terracotta-700);
  transform: translateY(-2px);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(calc(100% - 48px), var(--container));
  min-height: 430px;
  margin: 0 auto clamp(80px, 10vw, 130px);
  padding: clamp(44px, 7vw, 82px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 22%, rgba(202, 105, 61, 0.46), transparent 22%),
    var(--brown-900);
  overflow: hidden;
}

.contact__content {
  max-width: 720px;
}

.contact .eyebrow {
  color: var(--cream-300);
}

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

.contact p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(247, 242, 233, 0.74);
  line-height: 1.7;
}

.contact__phone {
  display: grid;
  gap: 5px;
  margin-top: 26px;
}

.contact__phone span {
  color: var(--cream-300);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__phone a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact > .button {
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding: 0 0 52px;
  color: var(--brown-500);
  font-size: 0.78rem;
}

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

.site-footer p {
  margin-bottom: 0;
}

.footer__links {
  display: flex;
  gap: 26px;
  color: var(--brown-900);
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--terracotta-700);
}

.footer__legal {
  max-width: 340px;
  justify-self: end;
  line-height: 1.55;
  text-align: right;
}

.mobile-whatsapp {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

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

  .hero__content {
    width: min(calc(100% - 48px), 760px);
    margin-inline: auto;
    padding: 70px 0 64px;
  }

  .hero__visual {
    min-height: 660px;
    clip-path: none;
  }

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

  .quick-card {
    min-height: 108px;
  }

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

  .about__aside {
    min-height: 430px;
  }

  .expertise__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .ebook,
  .clinic {
    grid-template-columns: 1fr;
  }

  .ebook__content {
    grid-row: 1;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer__legal {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
    --radius-lg: 24px;
  }

  body {
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(3.65rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand__monogram {
    width: 40px;
    height: 40px;
  }

  .brand__name strong {
    font-size: 0.92rem;
  }

  .site-header > .button {
    min-width: 48px;
    min-height: 48px;
    padding: 0 15px;
    font-size: 0;
  }

  .site-header > .button span {
    font-size: 1.1rem;
  }

  .hero__content,
  .quick-links,
  .about,
  .expertise,
  .ebook,
  .clinic,
  .contact,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero__content {
    padding: 54px 0 52px;
  }

  .pill {
    margin-bottom: 28px;
    font-size: 0.62rem;
  }

  .hero__actions,
  .hero__actions .button,
  .ebook__content .button,
  .clinic__content .button {
    width: 100%;
  }

  .hero__topics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__topics li::after {
    display: none;
  }

  .hero__visual {
    min-height: 590px;
  }

  .hero__cover-wrap {
    width: min(58%, 290px);
  }

  .hero__note {
    right: 18px;
    bottom: 18px;
    width: min(270px, 74%);
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .quick-card {
    grid-template-columns: auto 1fr auto;
    padding: 18px;
  }

  .about__aside {
    min-height: 470px;
    padding: 30px;
  }

  .about__portrait {
    object-position: 50% 30%;
  }

  .about__content {
    padding: 42px 26px;
  }

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

  .expertise__heading {
    margin-bottom: 34px;
  }

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

  .expertise__item {
    min-height: 132px;
    gap: 28px;
    padding: 22px;
  }

  .expertise__audience {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .expertise__audience .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ebook__art,
  .clinic__map {
    min-height: 490px;
  }

  .map-label {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .map-label a {
    width: 100%;
  }

  .ebook__book {
    width: min(58%, 245px);
    padding: 5px 5px 5px 10px;
    box-shadow:
      0 24px 48px rgba(53, 35, 31, 0.23),
      8px 10px 0 rgba(89, 63, 49, 0.07);
  }

  .ebook__stamp {
    top: 20px;
    right: 20px;
    width: 78px;
    height: 78px;
    font-size: 0.58rem;
  }

  .contact {
    min-height: 460px;
    margin-bottom: 70px;
    padding: 34px 26px;
  }

  .contact > .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer__links {
    flex-wrap: wrap;
  }

  .footer__links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .mobile-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 700;
    background: rgba(53, 35, 31, 0.95);
    box-shadow: 0 18px 40px rgba(53, 35, 31, 0.28);
    backdrop-filter: blur(12px);
  }

  .mobile-whatsapp svg {
    width: 21px;
  }
}

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

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