:root {
  --ink: #17312d;
  --ink-soft: #536662;
  --forest: #153f38;
  --forest-deep: #0a2d29;
  --sage: #7c9c83;
  --sage-pale: #dfe8dd;
  --ivory: #f6f3eb;
  --cream: #eee8dc;
  --paper: #fffdf8;
  --white: #ffffff;
  --coral: #c76048;
  --gold: #c29b55;
  --line: rgba(23, 49, 45, 0.14);
  --shadow: 0 28px 80px rgba(11, 45, 41, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--sage-pale);
  color: var(--forest-deep);
}

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

img {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 999;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  padding: 10px 18px;
  box-shadow: var(--shadow);
}

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

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

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e7c58d;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 23px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

.button-primary:hover {
  background: #ad4d39;
}

.button-quiet {
  border-color: rgba(23, 49, 45, 0.25);
  color: var(--forest);
}

.button-quiet:hover {
  border-color: var(--forest);
  background: var(--paper);
}

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--forest);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

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

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(5, 35, 32, 0.07);
}

.utility-bar {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.86);
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.utility-inner p {
  margin: 0;
}

.header-social-links {
  display: flex;
  align-items: center;
}

.header-social-links {
  gap: 6px;
}

.header-social-links a {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 3px 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.header-social-links a:hover,
.header-social-links a:focus-visible {
  border-color: #e7c58d;
  background: #e7c58d;
  color: var(--forest-deep);
  text-decoration: none;
}

.header-main {
  background:
    linear-gradient(90deg, rgba(223, 232, 221, 0.18), transparent 34%),
    var(--paper);
}

.header-main-shell {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 220px;
  height: auto;
}

.header-contact-cards {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.header-contact-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid var(--line);
  padding: 5px clamp(14px, 1.8vw, 26px);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.header-contact-item:hover {
  background: rgba(223, 232, 221, 0.42);
  color: var(--coral);
}

.header-contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.header-contact-item small,
.header-contact-item strong {
  display: block;
  white-space: nowrap;
}

.header-contact-item small {
  margin-bottom: 1px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact-item strong {
  color: var(--forest-deep);
  font-size: 0.79rem;
  font-weight: 720;
}

.header-whatsapp-item .header-contact-icon {
  background: #25d366;
  color: var(--white);
}

.header-nav-bar {
  background:
    radial-gradient(circle at 85% -100%, rgba(124, 156, 131, 0.34), transparent 40%),
    var(--forest-deep);
  color: var(--white);
}

.header-nav-shell {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  max-width: 760px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.83rem;
  font-weight: 760;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: #e7c58d;
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.nav-actions,
.language-links {
  display: flex;
  align-items: center;
}

.nav-actions {
  margin-left: auto;
  gap: 15px;
}

.language-links {
  gap: 7px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.language-links a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.7rem;
  font-weight: 800;
}

.language-links a[aria-current="page"] {
  color: #e7c58d;
}

.header-cta {
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  padding: 10px 19px;
  font-size: 0.8rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #ad4d39;
}

.mobile-menu {
  display: none;
}

.top-contact-section {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 1px solid rgba(231, 197, 141, 0.25);
  background:
    radial-gradient(circle at 92% 10%, rgba(199, 96, 72, 0.22), transparent 28%),
    linear-gradient(110deg, #0a2d29 0%, #15463d 100%);
  color: var(--white);
  padding: 24px 0 26px;
  box-shadow: 0 18px 42px rgba(5, 35, 32, 0.15);
}

.top-contact-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.82fr;
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}

.top-contact-copy {
  border-left: 3px solid #e7c58d;
  padding-left: 17px;
}

.top-contact-copy > span {
  display: block;
  margin-bottom: 2px;
  color: #e7c58d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.top-contact-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
}

.top-contact-copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.45;
}

.top-contact-form {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1.2fr auto;
  align-items: end;
  gap: 10px;
}

.top-contact-form > label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-contact-form > label > span:first-child {
  display: block;
  margin-bottom: 4px;
}

.top-contact-form input:not([type="checkbox"]) {
  width: 100%;
  height: 46px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  padding: 8px 12px;
  text-transform: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.top-contact-form input:not([type="checkbox"]):focus {
  border-color: #e7c58d;
  background: rgba(255, 255, 255, 0.14);
  outline: 0;
}

.top-contact-form input[aria-invalid="true"] {
  border-color: #ffad99;
}

.field-error {
  display: block;
  margin: 5px 0 0;
  color: #ffb7a6;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.top-contact-button {
  min-height: 46px;
  white-space: nowrap;
  background: var(--coral);
  color: var(--white);
  padding-inline: 19px;
}

.top-contact-button:hover {
  background: #ad4d39;
}

.top-contact-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #e7c58d;
  font-size: 0.68rem;
}

.floating-contact-actions {
  position: fixed;
  z-index: 950;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
}

.floating-contact-button {
  position: relative;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 9px 28px rgba(5, 35, 32, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  transform: translateY(-3px) scale(1.04);
  color: var(--white);
  box-shadow: 0 13px 34px rgba(5, 35, 32, 0.32);
}

.floating-contact-button span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.floating-whatsapp {
  background: #25d366;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 1px;
  width: 12px;
  height: 12px;
  border-bottom: 4px solid var(--white);
  border-left: 4px solid var(--white);
  border-radius: 0 0 0 4px;
  transform: rotate(-15deg);
}

.floating-whatsapp span {
  transform: rotate(-22deg);
}

.floating-phone {
  background: #4935d4;
}

.floating-phone span {
  font-size: 1.6rem;
  transform: rotate(-18deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 28%, rgba(124, 156, 131, 0.16), transparent 33%),
    linear-gradient(135deg, #f7f2e8 0%, #eef1e8 58%, #e7eee6 100%);
  padding: 88px 0 0;
}

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

.hero-orbit-one {
  width: 470px;
  height: 470px;
  right: -210px;
  top: 45px;
}

.hero-orbit-two {
  width: 310px;
  height: 310px;
  right: -130px;
  top: 125px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(60px, 7vw, 106px);
}

.hero-copy {
  max-width: 630px;
  padding-bottom: 70px;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 27px;
  color: var(--forest-deep);
  font-size: clamp(3.6rem, 6.6vw, 6.6rem);
}

.hero h1 span {
  display: block;
  color: var(--coral);
  font-style: italic;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #435b57;
  font-size: clamp(1.03rem, 1.55vw, 1.22rem);
  line-height: 1.7;
}

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

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 560px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero-note span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(21, 63, 56, 0.28);
  border-radius: 50%;
  color: var(--forest);
  font-family: var(--serif);
  font-style: italic;
}

.hero-note p {
  margin: 0;
}

.hero-visual {
  position: relative;
  align-self: end;
  padding: 0 18px 18px 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 26px 0 0 26px;
  border: 1px solid rgba(21, 63, 56, 0.2);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.45);
}

.hero-image-frame {
  position: relative;
  z-index: 1;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(21, 63, 56, 0.1);
  border-radius: 28px;
  background: #d8e0dd;
  box-shadow: 0 30px 80px rgba(11, 45, 41, 0.16);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 42, 38, 0.19), transparent 48%);
}

.hero-image-frame img {
  object-fit: cover;
  object-position: center 18%;
}

.hero-image-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image-frame picture img {
  width: 100%;
  height: 100%;
}

.hero-mobile-cutout {
  display: none;
}

.hero-signature {
  position: absolute;
  z-index: 2;
  left: -26px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(21, 63, 56, 0.1);
  border-left: 4px solid var(--coral);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 253, 248, 0.95);
  padding: 19px 23px;
  box-shadow: 0 18px 50px rgba(11, 45, 41, 0.16);
  backdrop-filter: blur(10px);
}

.hero-signature strong {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.hero-signature span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 16px 16px 0 0;
  background: var(--forest-deep);
  color: var(--white);
}

.trust-row > div {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 116px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 23px 30px;
}

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

.trust-row > div > span {
  color: #dbbd87;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.trust-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
  line-height: 1.5;
}

.trust-row strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.88rem;
}

/* Doctor */
.doctor-section {
  background: var(--paper);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(62px, 8vw, 118px);
}

.doctor-gallery {
  position: relative;
  min-height: 650px;
}

.doctor-main-image,
.doctor-small-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.doctor-main-image {
  inset: 0 72px 46px 0;
  border-radius: 230px 230px 18px 18px;
  box-shadow: var(--shadow);
}

.doctor-main-image img {
  object-fit: cover;
}

.doctor-small-image {
  right: 0;
  bottom: 0;
  width: 210px;
  height: 250px;
  border: 9px solid var(--paper);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(11, 45, 41, 0.18);
}

.doctor-small-image img {
  object-fit: cover;
  object-position: center 18%;
}

.doctor-copy h2 {
  max-width: 620px;
  margin-bottom: 31px;
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
}

.doctor-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.doctor-copy .text-link {
  margin-top: 15px;
}

/* Science */
.science-story {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.science-story > img {
  object-fit: cover;
  object-position: center center;
}

.science-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(5, 35, 32, 0.96) 0%, rgba(5, 35, 32, 0.84) 38%, rgba(5, 35, 32, 0.18) 70%, rgba(5, 35, 32, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 35, 32, 0.2), rgba(5, 35, 32, 0.08));
}

.science-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
}

.science-copy {
  grid-column: 2;
  max-width: 610px;
}

.science-content h2 {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.science-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.98rem;
}

.science-video {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: #041816;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.science-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.science-video-lite {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  border: 0;
  background: #041816;
  color: #fff;
  padding: 0;
  cursor: pointer;
}

.science-video-lite img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.science-video-lite::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(4, 24, 22, 0.72));
}

.science-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(4, 24, 22, 0.72);
  font-size: 1rem;
  text-indent: 3px;
}

.science-video-label {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-video-lite:hover img,
.science-video-lite:focus-visible img {
  transform: scale(1.025);
  opacity: 0.9;
}

/* Shared headings */
.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  max-width: 520px;
  margin-bottom: 9px;
}

.heading-with-link {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.heading-with-link > div > p:last-child {
  margin-bottom: 0;
}

/* Areas */
.areas-section {
  background: var(--ivory);
}

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

.area-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.area-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(4, 40, 36, 0.14);
}

.area-card-image {
  position: relative;
  height: 196px;
  flex: 0 0 auto;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.area-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 45, 41, 0.12));
  pointer-events: none;
}

.area-card-image img {
  object-fit: cover;
  transition:
    transform 420ms ease,
    filter 180ms ease;
}

.area-card:hover .area-card-image img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.area-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 26px 24px;
}

.area-card-copy > span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.area-card h3 {
  max-width: 270px;
  margin: auto 0 13px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.22;
}

.area-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-card:hover p {
  color: rgba(255, 255, 255, 0.67);
}

.area-card i {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 45, 41, 0.16);
  border-radius: 50%;
  background: rgba(246, 243, 235, 0.9);
  color: var(--forest);
  font-style: normal;
  box-shadow: 0 5px 18px rgba(8, 45, 41, 0.08);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.area-card:hover i {
  transform: rotate(7deg);
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

/* Articles */
.articles-section {
  background: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
}

.article-feature-image {
  position: relative;
  min-height: 680px;
  align-self: start;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--cream);
}

.article-feature-image img {
  object-fit: cover;
  object-position: center top;
}

.article-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 42, 38, 0.77), transparent 42%);
}

.article-feature-image figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.77rem;
}

.article-list {
  border-top: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 42px 1fr 48px;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.article-row > span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
}

.article-row h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
}

.article-row h3 a:hover {
  color: var(--coral);
}

.article-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.55;
}

.round-link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.round-link:hover {
  background: var(--forest);
  color: var(--white);
}

/* Press */
.press-section {
  background: var(--forest-deep);
  color: var(--white);
}

.press-section .split-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.press-card {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 15% 15%, rgba(205, 160, 92, 0.27), transparent 29%),
    linear-gradient(145deg, #265d51, #0b302b);
  padding: 25px;
  color: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.press-card > img {
  object-fit: cover;
  transition: transform 320ms ease;
}

.press-card-5 > img,
.press-card-6 > img {
  object-position: 72% center;
}

.press-card:hover > img {
  transform: scale(1.035);
}

.press-card:focus-visible {
  outline: 3px solid #e7c58d;
  outline-offset: 4px;
}

.press-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 28, 25, 0.96), rgba(4, 28, 25, 0.03) 66%);
}

.press-card > div:last-child {
  position: relative;
  z-index: 1;
}

.press-card small {
  color: #e7c58d;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-card h3 {
  margin: 9px 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.22;
}

.press-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.77rem;
  font-weight: 700;
}

.video-modal-backdrop {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 28px;
  background: rgba(1, 17, 15, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-dialog {
  position: relative;
  width: min(100%, 980px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: var(--forest-deep);
  padding: 18px 18px 22px;
  color: var(--white);
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.44);
}

.video-modal-dialog h3 {
  margin: 18px 54px 0 4px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.video-modal-description {
  max-width: 760px;
  margin: 8px 54px 0 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.video-modal-close {
  position: absolute;
  z-index: 2;
  right: 28px;
  top: 28px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(4, 28, 25, 0.86);
  color: var(--white);
  font: 300 1.9rem/1 var(--sans);
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
  outline: 0;
}

.video-modal-player {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #020c0b;
}

.video-modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.play-mark {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.7rem;
}

/* Contact */
.contact-section {
  background:
    radial-gradient(circle at 93% 15%, rgba(124, 156, 131, 0.2), transparent 25%),
    var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(56px, 8vw, 110px);
}

.contact-copy h2 {
  max-width: 550px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.contact-details {
  display: grid;
  margin: 44px 0;
  border-top: 1px solid var(--line);
}

.contact-details a {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  font-size: 0.91rem;
}

.contact-details a:hover {
  color: var(--coral);
}

.contact-details span {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours {
  padding-left: 20px;
  border-left: 3px solid var(--coral);
}

.hours strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.hours p,
.hours small {
  color: var(--ink-soft);
}

.hours p {
  margin-bottom: 2px;
}

.contact-form {
  align-self: start;
  border-radius: 16px;
  background: var(--paper);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.form-heading span {
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-form > label {
  display: block;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(23, 49, 45, 0.23);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 11px 0;
  resize: vertical;
  text-transform: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--coral);
  outline: 0;
}

.contact-form input[aria-invalid="true"] {
  border-color: var(--coral);
}

.contact-form .field-error {
  color: var(--coral);
}

.form-button {
  width: 100%;
}

.form-status {
  margin: 16px 0 0;
  border-radius: 8px;
  background: var(--sage-pale);
  color: var(--forest-deep);
  padding: 12px 14px;
  font-size: 0.76rem;
}

/* Footer */
.site-footer {
  background: #092824;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 0.8fr 1.2fr;
  gap: 55px;
}

.footer-brand img {
  width: 210px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 7px;
  background: var(--paper);
  padding: 5px 8px;
}

.footer-brand p {
  max-width: 300px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer > .footer-grid > div:not(.footer-brand) > a {
  display: block;
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  font-size: 0.78rem;
}

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

.footer-warning {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  padding-left: 35px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 65px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding-top: 22px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
}

/* Inner pages */
.page-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 80%, rgba(124, 156, 131, 0.18), transparent 29%),
    #eef0e7;
  padding: 75px 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  align-items: center;
  gap: 80px;
}

.page-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.page-hero figure {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 190px 190px 14px 14px;
  box-shadow: var(--shadow);
}

.page-hero figure img {
  object-fit: cover;
  object-position: center top;
}

.content-section {
  background: var(--paper);
}

.content-shell {
  max-width: 940px;
}

.content-shell-wide {
  max-width: 1200px;
}

.content-body {
  max-width: 780px;
}

.fitoterapi-video-section {
  background: var(--forest-deep);
  color: var(--white);
}

.fitoterapi-video-gallery .press-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fitoterapi-video-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}

.fitoterapi-video-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.fitoterapi-video-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.content-body > h2 {
  margin: 52px 0 20px;
  color: var(--forest-deep);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.content-body > h3 {
  margin: 38px 0 14px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 500;
}

.content-body > p {
  color: #445a56;
  font-size: 1.03rem;
  line-height: 1.85;
}

.content-list-item {
  position: relative;
  margin: 10px 0;
  color: #445a56;
  padding-left: 25px;
}

.content-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.related-videos {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.related-videos h2 {
  font-size: 2rem;
}

.related-videos > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-videos a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

.related-videos a:hover {
  background: var(--forest);
  color: var(--white);
}

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

.archive-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--ivory);
  padding: 25px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.archive-card:hover {
  transform: translateY(-4px);
  background: var(--forest);
  color: var(--white);
}

.archive-card > span {
  color: var(--coral);
  font-family: var(--serif);
  font-style: italic;
}

.archive-card h2 {
  margin: 31px 0 14px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.archive-card p {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.archive-card:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.archive-card .text-link,
.archive-card b {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.76rem;
}

.press-archive .archive-card {
  min-height: 235px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  max-width: 1100px;
}

.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found .button {
  margin-top: 20px;
}

@media (max-width: 1080px) {
  .header-contact-item:nth-child(2) {
    display: none;
  }

  .desktop-nav {
    gap: 15px;
  }

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

  .header-cta {
    display: none;
  }

  .top-contact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-grid {
    gap: 55px;
  }

  .hero-image-frame {
    min-height: 570px;
  }

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

@media (max-width: 860px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .section {
    padding: 78px 0;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner p {
    display: none;
  }

  .header-social-links {
    justify-content: center;
  }

  .header-main-shell {
    min-height: 78px;
  }

  .brand img {
    width: 174px;
  }

  .header-contact-cards,
  .header-nav-bar {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .mobile-menu summary {
    width: 43px;
    height: 43px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 1px;
    background: var(--forest);
  }

  .mobile-menu nav {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 53px;
    width: min(310px, calc(100vw - 32px));
    display: grid;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    padding: 14px;
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 12px 8px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .top-contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .top-contact-button {
    width: 100%;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-grid,
  .doctor-grid,
  .article-layout,
  .contact-grid,
  .page-hero-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-image-frame {
    min-height: 580px;
  }

  .hero-signature {
    left: -2px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .trust-row > div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding: 19px 24px;
  }

  .trust-row > div:last-child {
    border-bottom: 0;
  }

  .doctor-gallery {
    min-height: 620px;
  }

  .doctor-grid {
    gap: 65px;
  }

  .science-story {
    min-height: 720px;
  }

  .science-story > img {
    object-position: 34% center;
  }

  .science-overlay {
    background: linear-gradient(0deg, rgba(5, 35, 32, 0.98) 0%, rgba(5, 35, 32, 0.83) 62%, rgba(5, 35, 32, 0.26) 100%);
  }

  .science-content {
    grid-template-columns: 1fr;
  }

  .science-copy {
    grid-column: 1;
    max-width: 620px;
    margin-left: auto;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .fitoterapi-video-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .article-layout {
    gap: 45px;
  }

  .article-feature-image {
    min-height: 520px;
  }

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

  .footer-warning {
    border-left: 0;
    padding-left: 0;
  }

  .page-hero-grid {
    gap: 45px;
  }

  .page-hero figure {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 28px);
  }

  .language-links {
    display: none;
  }

  .top-contact-section {
    padding: 22px 0 24px;
  }

  .top-contact-form {
    grid-template-columns: 1fr;
  }

  .floating-contact-actions {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .floating-contact-button {
    width: 50px;
    height: 50px;
  }

  .floating-contact-button span {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-image-frame {
    min-height: 520px;
    border-radius: 22px;
  }

  .hero-signature {
    left: -2px;
    right: 26px;
    bottom: 34px;
  }

  .doctor-gallery {
    min-height: 520px;
  }

  .doctor-main-image {
    right: 35px;
  }

  .doctor-small-image {
    width: 150px;
    height: 190px;
  }

  .science-story {
    min-height: 700px;
    align-items: end;
    padding: 82px 0 55px;
  }

  .science-story > img {
    object-position: 30% center;
  }

  .science-copy {
    max-width: none;
    margin-left: 0;
  }

  .science-content h2 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .science-copy > p:not(.eyebrow) {
    font-size: 0.92rem;
  }

  .science-video {
    width: 100%;
    border-radius: 8px;
  }

  .heading-with-link {
    align-items: start;
    flex-direction: column;
  }

  .area-grid,
  .press-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .fitoterapi-video-gallery .press-grid {
    grid-template-columns: 1fr;
  }

  .area-card {
    min-height: 380px;
  }

  .area-card-image {
    height: 210px;
  }

  .article-feature-image {
    min-height: 430px;
  }

  .article-row {
    grid-template-columns: 30px 1fr;
  }

  .article-row .round-link {
    display: none;
  }

  .press-card {
    min-height: 320px;
  }

  .video-modal-backdrop {
    padding: 10px;
  }

  .video-modal-dialog {
    border-radius: 12px;
    padding: 10px 10px 16px;
  }

  .video-modal-close {
    right: 18px;
    top: 18px;
    width: 40px;
    height: 40px;
  }

  .video-modal-dialog h3 {
    margin: 14px 46px 0 2px;
    font-size: 1.12rem;
  }

  .video-modal-description {
    margin: 7px 46px 0 2px;
    font-size: 0.8rem;
  }

  .video-modal-player {
    border-radius: 8px;
  }

  .contact-details a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

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

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

  .page-hero {
    padding: 56px 0;
  }

  .page-hero h1 {
    font-size: 3.15rem;
  }

  .page-hero figure {
    min-height: 390px;
  }
}

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

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

/* WordPress theme integration */
.brand .custom-logo,
.brand > img {
  width: auto;
  max-width: 224px;
  height: 70px;
  object-fit: contain;
}

.hero-image-frame > img,
.doctor-main-image > img,
.doctor-small-image > img,
.article-feature-image > img,
.area-card-image > img,
.press-card > img,
.page-hero figure > img,
.science-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.press-card-copy {
  position: relative;
  z-index: 1;
  display: block;
}

.press-card-copy > strong {
  display: block;
  margin: 9px 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.22;
}

.press-card-copy > span {
  display: block;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.77rem;
  font-weight: 700;
}

.area-card-copy > strong {
  display: block;
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.16;
}

.area-card-copy > span:last-child {
  display: block;
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field-error:empty {
  display: none;
}

.menu-item {
  list-style: none;
}

.desktop-nav .menu-item,
.mobile-menu .menu-item {
  display: contents;
}

.navigation.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
}

.page-numbers.current {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

@media (max-width: 760px) {
  .press-card-copy > strong {
    font-size: 1.3rem;
  }
}

/* 2026 visual refinement: brand, header, footer and editorial cards */
.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid rgba(11, 59, 53, 0.12);
  background: #fffdf8;
  box-shadow: 0 16px 50px rgba(8, 42, 37, 0.08);
}

.utility-bar {
  background:
    radial-gradient(circle at 76% -100%, rgba(184, 106, 69, 0.32), transparent 34%),
    linear-gradient(90deg, #082d29, #113f38);
}

.utility-inner {
  min-height: 38px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.utility-inner p span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d38a63;
  box-shadow: 0 0 0 4px rgba(211, 138, 99, 0.13);
}

.utility-actions,
.utility-actions > a,
.header-social-links {
  display: flex;
  align-items: center;
}

.utility-actions {
  gap: 18px;
}

.utility-actions > a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.header-social-links a {
  width: 27px;
  min-height: 27px;
  border-color: rgba(255, 255, 255, 0.16);
  padding: 0;
  font-size: 0.56rem;
}

.header-main {
  background:
    linear-gradient(90deg, rgba(124, 156, 131, 0.08), transparent 35%),
    rgba(255, 253, 248, 0.96);
}

.header-main-shell {
  min-height: 92px;
  gap: clamp(24px, 3vw, 46px);
}

.brand,
.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 68px;
  height: 68px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-emblem img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.brand-wordmark strong,
.brand-wordmark small {
  display: block;
}

.brand-wordmark strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}

.brand-wordmark strong em {
  color: var(--coral);
  font-style: normal;
}

.brand-wordmark small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-header .desktop-nav {
  max-width: none;
  justify-content: center;
  gap: clamp(16px, 1.55vw, 28px);
  margin-left: auto;
}

.site-header .desktop-nav a {
  color: var(--ink);
  font-size: 0.73rem;
  letter-spacing: 0.035em;
}

.site-header .desktop-nav a::after {
  bottom: -10px;
  height: 2px;
  background: var(--coral);
}

.site-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-phone > span:first-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--forest-deep);
  font-size: 0.8rem;
}

.header-phone small,
.header-phone strong {
  display: block;
  white-space: nowrap;
}

.header-phone small {
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--forest-deep);
  font-size: 0.72rem;
}

.site-header .header-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--forest-deep);
  color: #fff;
  padding: 0 18px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.site-header .header-cta:hover {
  background: var(--coral);
}

.header-nav-bar,
.header-contact-cards {
  display: none !important;
}

.doctor-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 15%, rgba(124, 156, 131, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf9f3, #f1ede3);
}

.doctor-section::before,
.doctor-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.doctor-section::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: 70px;
  border: 1px solid rgba(184, 106, 69, 0.2);
  border-radius: 50%;
}

.doctor-section::after {
  width: 1px;
  height: 170px;
  left: calc(50% - 590px);
  bottom: 0;
  background: linear-gradient(transparent, rgba(184, 106, 69, 0.42));
}

.doctor-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 7vw, 94px);
}

.doctor-gallery {
  min-height: 560px;
  padding: 22px 42px 52px 0;
}

.doctor-main-image {
  inset: 22px 42px 52px 0;
  border-radius: 28px 92px 28px 28px;
  box-shadow: 0 32px 80px rgba(17, 50, 45, 0.18);
}

.doctor-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.doctor-small-image {
  width: 190px;
  height: 214px;
  right: 0;
  bottom: 0;
  border: 8px solid #f7f3e9;
  border-radius: 22px;
  box-shadow: 0 24px 52px rgba(10, 45, 41, 0.22);
}

.doctor-gallery-line {
  position: absolute;
  width: 88px;
  height: 88px;
  left: -24px;
  top: 0;
  border-top: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
  border-radius: 20px 0 0;
  opacity: 0.7;
}

.doctor-gallery-caption {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 3;
  max-width: 250px;
  color: var(--forest-deep);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-panel {
  position: relative;
  border: 1px solid rgba(23, 49, 45, 0.1);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.84);
  padding: clamp(36px, 4.4vw, 60px);
  box-shadow: 0 30px 90px rgba(17, 50, 45, 0.1);
}

.editorial-panel::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  left: clamp(36px, 4.4vw, 60px);
  top: 0;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

.doctor-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.doctor-facts span {
  min-height: 94px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  line-height: 1.35;
}

.doctor-facts strong {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.area-grid {
  gap: 24px;
  border: 0;
}

.area-card {
  min-height: 420px;
  display: grid;
  overflow: hidden;
  grid-template-rows: 214px 1fr;
  border: 1px solid rgba(23, 49, 45, 0.1);
  border-radius: 22px;
  background: #fffdf8;
  color: var(--ink);
  box-shadow:
    0 18px 45px rgba(20, 57, 51, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(0);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.area-card:nth-child(3n + 2) {
  transform: none;
}

.area-card:hover {
  border-color: rgba(184, 106, 69, 0.42);
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(20, 57, 51, 0.17);
  transform: translateY(-7px);
}

.area-card:nth-child(3n + 2):hover {
  transform: translateY(-7px);
}

.area-card-image {
  position: relative;
  min-height: 0;
  border-bottom: 0;
}

.area-card-image::after {
  background: linear-gradient(180deg, transparent 45%, rgba(5, 36, 32, 0.34));
}

.area-card-copy {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 26px 25px;
}

.area-card-copy::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 2px;
  left: 26px;
  top: 0;
  background: var(--coral);
}

.area-card-copy > strong {
  max-width: calc(100% - 28px);
  margin-top: 10px;
  font-size: 1.38rem;
  line-height: 1.16;
}

.area-card-copy > span:last-child {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.area-card:hover .area-card-copy > span:last-child {
  color: var(--coral);
}

.area-card i {
  width: 38px;
  height: 38px;
  top: auto;
  right: 22px;
  bottom: 21px;
  border: 0;
  border-radius: 11px;
  background: #e5f1ee;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.area-card:hover i {
  transform: rotate(90deg);
  background: var(--forest);
}

.page-hero-about {
  padding: 48px 0;
  background:
    linear-gradient(120deg, rgba(124, 156, 131, 0.2), transparent 43%),
    #f1f0e8;
}

.page-hero-about .page-hero-grid {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 54px;
}

.page-hero-about h1 {
  font-size: clamp(3.2rem, 5.4vw, 5.2rem);
}

.page-hero-about figure {
  width: min(100%, 360px);
  min-height: 245px;
  justify-self: end;
  border-radius: 24px 64px 24px 24px;
  box-shadow: 0 25px 65px rgba(17, 50, 45, 0.15);
}

.about-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
}

.about-profile-copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  padding: clamp(34px, 4.6vw, 62px);
  box-shadow: var(--shadow);
}

.about-profile-copy h2 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.about-profile-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.about-credentials {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.about-credentials article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.about-credentials article > span {
  color: var(--coral);
  font-family: var(--serif);
  font-style: italic;
}

.about-credentials strong,
.about-credentials p {
  display: block;
}

.about-credentials p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.about-profile-media {
  position: relative;
  min-height: 630px;
}

.about-profile-primary,
.about-profile-secondary {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid var(--ivory);
  background: #dfe5e2;
  box-shadow: 0 30px 72px rgba(17, 50, 45, 0.18);
}

.about-profile-primary {
  width: 78%;
  height: 500px;
  right: 0;
  top: 0;
  border-radius: 28px 82px 28px 28px;
}

.about-profile-secondary {
  width: 62%;
  height: 205px;
  left: 0;
  bottom: 0;
  border-radius: 24px;
}

.about-profile-primary img,
.about-profile-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-primary img {
  object-position: center top;
}

.about-profile-note {
  position: absolute;
  right: -16px;
  bottom: 60px;
  max-width: 245px;
  border-left: 3px solid var(--coral);
  border-radius: 12px;
  background: var(--forest-deep);
  color: #fff;
  padding: 17px 20px;
  box-shadow: 0 20px 46px rgba(10, 45, 41, 0.2);
}

.about-profile-note span,
.about-profile-note strong {
  display: block;
}

.about-profile-note span {
  margin-bottom: 4px;
  color: #ddb797;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-profile-note strong {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.25;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(124, 156, 131, 0.24), transparent 29%),
    radial-gradient(circle at 93% 100%, rgba(184, 106, 69, 0.19), transparent 28%),
    #082b27;
  padding: 74px 0 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--sage));
}

.footer-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 68px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  padding: 30px 36px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.footer-cta-panel span {
  color: #d6ad88;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-cta-panel h2 {
  margin: 7px 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.footer-cta-button {
  flex: 0 0 auto;
  background: #f4efe4;
  color: var(--forest-deep);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.62fr 0.9fr 1.18fr;
  gap: clamp(34px, 5vw, 72px);
}

.footer-brand-lockup {
  margin-bottom: 22px;
}

.footer-brand-lockup .brand-emblem {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand-lockup .brand-emblem img {
  width: 66px;
  height: 66px;
}

.footer-brand-lockup .brand-wordmark strong {
  color: #fff;
}

.footer-brand-lockup .brand-wordmark small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-brand > p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer h2 {
  position: relative;
  margin-bottom: 24px;
}

.site-footer h2::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 1px;
  left: 0;
  bottom: -9px;
  background: var(--coral);
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact > a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-warning {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 28px 28px 28px 76px;
}

.footer-warning-mark {
  position: absolute;
  width: 34px;
  height: 34px;
  left: 24px;
  top: 27px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(221, 183, 151, 0.48);
  border-radius: 50%;
  color: #ddb797;
  font-family: var(--serif);
  font-style: italic;
}

.footer-bottom {
  align-items: center;
}

.footer-bottom div {
  display: flex;
  gap: 8px;
}

.footer-bottom div a {
  min-width: 32px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.58rem;
  font-weight: 800;
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }

  .site-header .desktop-nav {
    gap: 14px;
  }

  .site-header .desktop-nav a {
    font-size: 0.66rem;
  }

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

@media (max-width: 900px) {
  .site-header .desktop-nav,
  .site-header .nav-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .doctor-grid,
  .about-profile-layout {
    grid-template-columns: 1fr;
  }

  .doctor-gallery {
    width: min(100%, 600px);
    min-height: 520px;
    margin-inline: auto;
  }

  .about-profile-media {
    width: min(100%, 600px);
    margin-inline: auto;
  }

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

  .area-card:nth-child(3n + 2) {
    transform: none;
  }

  .area-card:hover,
  .area-card:nth-child(3n + 2):hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .utility-actions > a {
    display: none;
  }

  .header-main-shell {
    min-height: 78px;
  }

  .brand-emblem {
    width: 56px;
    height: 56px;
    border-radius: 0;
  }

  .brand-emblem img {
    width: 54px;
    height: 54px;
  }

  .brand-wordmark strong {
    font-size: 1.05rem;
  }

  .brand-wordmark small {
    font-size: 0.5rem;
  }

  .doctor-gallery {
    min-height: 430px;
    padding-right: 24px;
  }

  .doctor-main-image {
    right: 24px;
    border-radius: 22px 64px 22px 22px;
  }

  .doctor-small-image {
    width: 136px;
    height: 158px;
    border-width: 6px;
  }

  .doctor-gallery-caption {
    display: none;
  }

  .editorial-panel {
    padding: 32px 24px;
  }

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

  .doctor-facts span {
    min-height: 76px;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .area-card {
    min-height: 398px;
    grid-template-rows: 205px 1fr;
  }

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

  .page-hero-about figure {
    width: 100%;
    min-height: 230px;
    justify-self: stretch;
  }

  .about-profile-copy {
    padding: 32px 24px;
  }

  .about-profile-media {
    min-height: 500px;
  }

  .about-profile-primary {
    width: 84%;
    height: 390px;
  }

  .about-profile-secondary {
    width: 62%;
    height: 160px;
  }

  .about-profile-note {
    right: 0;
    bottom: 32px;
  }

  .footer-cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 24px;
  }

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

  .footer-warning {
    padding: 72px 24px 24px;
  }
}

@supports (content-visibility: auto) {
  .home .science-story,
  .home .areas-section,
  .home .articles-section,
  .home .press-section,
  .home .contact-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

/* Keep the quick callback form visible below the desktop navigation */
@media (min-width: 1025px) {
  .home .top-contact-section {
    position: sticky;
    top: 124px;
    z-index: 105;
    box-shadow: 0 14px 34px rgba(5, 35, 32, 0.2);
  }
}

/* Final live refinement: cache-safe dimensions and restrained About imagery */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.site-header .header-main-shell {
  width: min(calc(100% - 48px), 1180px);
  min-height: 86px;
}

.site-header .brand {
  min-width: 238px;
}

.site-header .brand-emblem,
.site-header .brand-emblem img {
  max-width: none;
}

.site-header .brand-emblem img {
  width: min(66px, 100%);
  height: auto;
  aspect-ratio: 1;
}

.page-hero-about {
  padding: 42px 0;
}

.page-hero-about figure {
  width: min(100%, 320px);
  min-height: 210px;
  max-height: 230px;
}

.page-hero-about figure img {
  height: 100%;
  max-height: 230px;
}

.about-profile-media {
  min-height: 545px;
}

.about-profile-primary {
  width: 74%;
  height: 430px;
}

.about-profile-secondary {
  width: 58%;
  height: 170px;
}

.about-profile-note {
  right: 4px;
  bottom: 46px;
}

@media (max-width: 1120px) {
  .site-header .brand {
    min-width: 220px;
  }
}

@media (max-width: 900px) {
  .site-header .header-main-shell {
    width: min(calc(100% - 34px), 1180px);
  }

  .page-hero-about figure {
    width: min(100%, 300px);
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    min-width: 0;
  }

  .site-header .header-main-shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .page-hero-about {
    padding: 30px 0 36px;
  }

  .page-hero-about figure {
    width: 100%;
    max-height: 210px;
  }

  .about-profile-media {
    min-height: 430px;
  }

  .about-profile-primary {
    width: 82%;
    height: 330px;
  }

  .about-profile-secondary {
    width: 58%;
    height: 132px;
  }
}

/* Compact rhythm and accessible footer action */
.section {
  padding: clamp(66px, 6.5vw, 84px) 0;
}

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

.areas-section .split-heading {
  display: block;
  margin-bottom: 38px;
}

.areas-section .section-heading h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 3.45vw, 2.8rem);
  line-height: 1.08;
  text-wrap: initial;
  white-space: nowrap;
}

.areas-section .split-heading > p {
  max-width: 720px;
  margin: 0;
}

.site-footer .footer-cta-button {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.site-footer .footer-cta-button:hover,
.site-footer .footer-cta-button:focus-visible {
  border-color: var(--coral);
  background: var(--coral);
  color: #fff;
}

@media (max-width: 900px) {
  .section {
    padding: 62px 0;
  }

  .areas-section .section-heading h2 {
    font-size: clamp(2.15rem, 6.6vw, 3.3rem);
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 50px 0;
  }

  .section-heading,
  .areas-section .split-heading {
    margin-bottom: 28px;
  }
}

/* Fast callback modal */
.callback-modal-backdrop[hidden],
.callback-toast[hidden] {
  display: none;
}

.callback-modal-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 31, 28, 0.7);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.callback-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 32px);
  overflow: hidden;
  overflow-y: auto;
  border: 1px solid rgba(23, 49, 45, 0.14);
  border-radius: 28px;
  background: #fffdf8;
  padding: clamp(34px, 5vw, 50px);
  box-shadow: 0 30px 80px rgba(3, 26, 23, 0.3);
}

.callback-modal-dialog::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 3px;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

.callback-modal-close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.callback-modal-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-right: 36px;
}

.callback-modal-eyebrow {
  display: block;
  color: var(--coral);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.callback-modal-dialog h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: clamp(1.55rem, 4vw, 2rem);
}

.callback-request-form label:not(.form-honeypot),
.callback-request-form label:not(.form-honeypot) > span {
  display: block;
}

.callback-request-form label:not(.form-honeypot) > span {
  margin-bottom: 2px;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callback-request-form label:not(.form-honeypot) {
  margin-bottom: 18px;
}

.callback-request-form input:not([type="hidden"]),
.callback-request-form textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(23, 49, 45, 0.24);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 10px 0 14px;
  font-size: 1rem;
}

.callback-request-form textarea {
  min-height: 110px;
  resize: vertical;
}

.callback-request-form input:not([type="hidden"]):focus,
.callback-request-form textarea:focus {
  border-color: var(--forest);
  outline: 0;
  box-shadow: 0 2px 0 rgba(21, 63, 56, 0.14);
}

.callback-request-form button[type="submit"] {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.callback-request-form button[type="submit"]:hover {
  background: var(--forest);
}

.callback-request-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.65;
}

.callback-form-status,
.callback-request-form .field-error {
  display: block;
  min-height: 18px;
  margin: 7px 0 0;
  color: #a33d2d;
  font-size: 0.72rem;
}

.callback-form-status {
  min-height: 24px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(124, 156, 131, 0.22);
  color: var(--forest);
  padding: 4px 10px;
}

.callback-form-status:empty {
  color: transparent;
}

.callback-toast {
  position: fixed;
  z-index: 1002;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100% - 48px));
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  background: var(--forest-deep);
  color: #fff;
  padding: 17px 21px;
  box-shadow: 0 22px 60px rgba(3, 26, 23, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .callback-modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .callback-modal-dialog {
    border-radius: 24px 24px 18px 18px;
    padding: 34px 22px 24px;
  }

  .callback-modal-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }
}

/* Compact editorial system: no oversized titles or empty split columns */
.section {
  padding: clamp(50px, 5vw, 66px) 0;
}

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

.hero {
  padding-top: clamp(54px, 6vw, 72px);
}

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

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.4vw, 4.9rem);
}

.hero-image-frame {
  min-height: 540px;
}

.doctor-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(28px, 4vw, 48px);
}

.doctor-gallery {
  min-height: 520px;
  padding: 0 34px 24px 0;
}

.doctor-main-image {
  inset: 0 34px 24px 0;
  border-radius: 24px 64px 24px 24px;
}

.doctor-small-image {
  width: 148px;
  height: 166px;
  border-width: 6px;
  border-radius: 18px;
}

.doctor-gallery-line {
  width: 54px;
  height: 54px;
  left: -13px;
  top: -13px;
  border-radius: 14px 0 0;
}

.doctor-gallery-caption {
  left: 16px;
  bottom: 5px;
  max-width: 220px;
  font-size: 0.56rem;
}

.editorial-panel {
  height: 100%;
  border-radius: 24px;
  padding: clamp(30px, 3.4vw, 42px);
  box-shadow: 0 20px 60px rgba(17, 50, 45, 0.09);
}

.editorial-panel::before {
  left: clamp(30px, 3.4vw, 42px);
}

.doctor-copy h2,
.about-profile-copy h2 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  line-height: 1.08;
  text-wrap: balance;
}

.doctor-copy > p:not(.eyebrow),
.about-profile-copy > p:not(.eyebrow) {
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.doctor-facts {
  margin: 22px 0;
}

.doctor-facts span {
  min-height: 72px;
  padding: 12px 14px;
}

.doctor-facts strong {
  font-size: 1.15rem;
}

.science-story {
  min-height: 620px;
}

.science-content h2,
.section-heading h2,
.fitoterapi-video-heading h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  line-height: 1.06;
}

.page-hero,
.page-hero-about {
  padding: clamp(38px, 4.5vw, 54px) 0;
}

.page-hero-grid,
.page-hero-about .page-hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 4vw, 52px);
}

.page-hero h1,
.page-hero-about h1 {
  font-size: clamp(2.55rem, 4.5vw, 4rem);
}

.page-hero figure,
.page-hero-about figure {
  width: min(100%, 320px);
  min-height: 210px;
  max-height: 250px;
  justify-self: end;
  border-radius: 22px 54px 22px 22px;
}

.page-hero figure img,
.page-hero-about figure img {
  height: 100%;
  max-height: 250px;
}

.content-section {
  padding-top: clamp(42px, 4vw, 58px);
  padding-bottom: clamp(48px, 5vw, 66px);
}

.content-shell:has(.about-profile-layout) {
  max-width: 1180px;
}

.about-profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.about-profile-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: stretch;
  gap: 22px;
}

.about-profile-copy {
  border-radius: 24px;
  padding: clamp(30px, 3.5vw, 44px);
  box-shadow: 0 18px 55px rgba(17, 50, 45, 0.08);
}

.about-profile-media {
  min-height: 450px;
}

.about-profile-primary {
  width: 100%;
  height: 100%;
  border-width: 6px;
  border-radius: 24px 62px 24px 24px;
}

.about-profile-secondary {
  width: 54%;
  height: 148px;
  left: -14px;
  bottom: 18px;
  border-width: 6px;
  border-radius: 18px;
}

.about-profile-note {
  right: 14px;
  bottom: 30px;
  max-width: 215px;
  padding: 14px 17px;
}

.about-credentials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.about-credentials article {
  min-height: 128px;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  padding: 20px;
  box-shadow: 0 12px 35px rgba(17, 50, 45, 0.06);
}

.about-credentials article > span {
  padding-top: 1px;
}

.about-credentials p {
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .hero-image-frame {
    min-height: 480px;
  }

  .doctor-grid,
  .about-profile-intro {
    grid-template-columns: 1fr;
  }

  .doctor-gallery {
    width: min(100%, 640px);
    min-height: 470px;
  }

  .about-profile-media {
    width: min(100%, 620px);
    min-height: 430px;
    margin-inline: auto;
  }

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

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

  .page-hero figure,
  .page-hero-about figure {
    width: min(100%, 420px);
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 42px 0;
  }

  .hero {
    padding-top: 42px;
  }

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

  .hero-image-frame {
    min-height: 410px;
  }

  .doctor-gallery {
    min-height: 390px;
    padding-right: 18px;
  }

  .doctor-main-image {
    right: 18px;
  }

  .doctor-small-image {
    width: 116px;
    height: 132px;
  }

  .editorial-panel,
  .about-profile-copy {
    padding: 26px 22px;
  }

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

  .doctor-facts span {
    min-height: 68px;
    padding: 9px;
  }

  .doctor-facts strong {
    font-size: 1rem;
  }

  .science-story {
    min-height: 560px;
  }

  .about-profile-media {
    min-height: 350px;
  }

  .about-profile-secondary {
    width: 52%;
    height: 112px;
  }

  .about-profile-note {
    right: 8px;
    bottom: 20px;
    max-width: 176px;
  }
}

/* Compact visual title bands for every inner page */
.page-hero,
.page-hero-about {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 49, 45, 0.12);
  background:
    radial-gradient(circle at 10% 30%, rgba(124, 156, 131, 0.2), transparent 31%),
    linear-gradient(105deg, #eef1e8 0%, #f5f3eb 66%, #e8eee8 100%);
  padding: 34px 0;
}

/* Full-width editorial title image, inspired by the supplied reference */
.page-hero,
.page-hero-about {
  min-height: 248px;
  padding: 0;
  border-bottom: 3px solid rgba(203, 153, 91, 0.82);
  background: #103f3a;
  isolation: isolate;
}

.page-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 43, 42, 0.94) 0%, rgba(9, 60, 57, 0.78) 50%, rgba(11, 71, 68, 0.72) 100%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
}

.page-hero-grid,
.page-hero-about .page-hero-grid {
  min-height: 248px;
  place-items: center;
}

.page-hero-grid > div {
  z-index: 3;
  width: min(100%, 780px);
  max-width: 780px;
  padding: 34px 20px;
  text-align: center;
}

.page-hero .eyebrow,
.page-hero-about .eyebrow {
  color: #f2c58e;
}

.page-hero h1,
.page-hero-about h1 {
  max-width: 780px;
  margin-inline: auto;
  color: #fffdf7;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.04;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.page-hero p:not(.eyebrow) {
  margin: 13px auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.page-hero figure,
.page-hero-about figure {
  z-index: 0;
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  width: 100vw;
  min-height: 100%;
  max-height: none;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
}

.page-hero figure::after,
.page-hero-about figure::after {
  background:
    linear-gradient(90deg, rgba(6, 38, 37, 0.64), rgba(8, 60, 57, 0.42)),
    linear-gradient(180deg, rgba(5, 42, 40, 0.16), rgba(4, 37, 35, 0.42));
}

.page-hero figure img,
.page-hero-about figure img {
  object-position: center 34%;
  filter: saturate(0.72) contrast(0.92);
}

@media (max-width: 640px) {
  .page-hero,
  .page-hero-about,
  .page-hero-grid,
  .page-hero-about .page-hero-grid {
    min-height: 210px;
  }

  .page-hero-grid > div {
    padding: 28px 18px;
  }

  .page-hero h1,
  .page-hero-about h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 68%, rgba(255, 255, 255, 0.34)),
    repeating-linear-gradient(90deg, transparent 0 86px, rgba(23, 49, 45, 0.025) 87px);
  pointer-events: none;
}

.page-hero-grid,
.page-hero-about .page-hero-grid {
  position: relative;
  min-height: 182px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}

.page-hero-grid > div {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 20px 0;
}

.page-hero .eyebrow {
  margin-bottom: 10px;
}

.page-hero h1,
.page-hero-about h1 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 14px 0 0;
}

.page-hero figure,
.page-hero-about figure {
  position: absolute;
  z-index: 1;
  width: 54%;
  min-height: 100%;
  max-height: none;
  inset: 0 0 0 auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  opacity: 0.38;
  box-shadow: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.38) 24%, #000 58%);
}

.page-hero figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(238, 241, 232, 0.8), transparent 44%);
}

.page-hero figure img,
.page-hero-about figure img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 760px) {
  .page-hero,
  .page-hero-about {
    min-height: 220px;
    padding: 26px 0;
  }

  .page-hero-grid,
  .page-hero-about .page-hero-grid {
    min-height: 168px;
  }

  .page-hero-grid > div {
    max-width: 76%;
  }

  .page-hero h1,
  .page-hero-about h1 {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  .page-hero figure,
  .page-hero-about figure {
    width: 68%;
    opacity: 0.3;
  }
}

/* Final inner-page title band treatment */
.page-hero,
.page-hero-about {
  min-height: 248px;
  padding: 0;
  border-bottom: 3px solid rgba(203, 153, 91, 0.82);
  background: #103f3a;
  isolation: isolate;
}

.page-hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 43, 42, 0.86), rgba(9, 60, 57, 0.7)),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 42%);
}

.page-hero-grid,
.page-hero-about .page-hero-grid {
  min-height: 248px;
  place-items: center;
}

.page-hero-grid > div {
  z-index: 3;
  width: min(100%, 780px);
  max-width: 780px;
  padding: 34px 20px;
  text-align: center;
}

.page-hero .eyebrow,
.page-hero-about .eyebrow {
  color: #f2c58e;
}

.page-hero h1,
.page-hero-about h1 {
  max-width: 780px;
  margin: 0 auto;
  color: #fffdf7;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 13px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero figure,
.page-hero-about figure {
  z-index: 0;
  inset: 0 auto 0 50%;
  width: 100vw;
  min-height: 100%;
  max-height: none;
  transform: translateX(-50%);
  border: 0;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.page-hero figure::after,
.page-hero-about figure::after {
  background:
    linear-gradient(90deg, rgba(6, 38, 37, 0.58), rgba(8, 60, 57, 0.38)),
    linear-gradient(180deg, rgba(5, 42, 40, 0.12), rgba(4, 37, 35, 0.38));
}

.page-hero figure img,
.page-hero-about figure img {
  object-position: center 34%;
  filter: saturate(0.72) contrast(0.92);
}

@media (max-width: 760px) {
  .page-hero,
  .page-hero-about,
  .page-hero-grid,
  .page-hero-about .page-hero-grid {
    min-height: 210px;
    padding: 0;
  }

  .page-hero-grid > div {
    width: min(100%, 680px);
    max-width: 100%;
    padding: 28px 18px;
  }

  .page-hero h1,
  .page-hero-about h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .page-hero figure,
  .page-hero-about figure {
    width: 100vw;
    opacity: 1;
  }
}

/* Polished contact page: controlled icons, balanced information and form */
.contact-page-polished {
  width: 100%;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: start;
  gap: clamp(26px, 4vw, 46px);
  margin-inline: auto;
}

.contact-page-information {
  overflow: hidden;
  border: 1px solid rgba(23, 49, 45, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 4%, rgba(124, 156, 131, 0.15), transparent 30%),
    var(--paper);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 68px rgba(18, 49, 44, 0.09);
}

.contact-page-information h2 {
  max-width: 590px;
  margin: 8px 0 15px;
  font-size: clamp(2.25rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.contact-page-lead {
  max-width: 610px;
  color: var(--ink-soft);
}

.contact-page-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-page-cards a {
  position: relative;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(23, 49, 45, 0.12);
  border-radius: 17px;
  background: rgba(250, 249, 243, 0.82);
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-page-cards a:last-child {
  grid-column: 1 / -1;
  min-height: 112px;
}

.contact-page-cards a:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 94, 66, 0.42);
  box-shadow: 0 14px 28px rgba(18, 49, 44, 0.08);
}

.contact-page-cards a > span {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 80, 70, 0.09);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 800;
}

.contact-page-cards small,
.contact-page-hours small {
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-page-cards strong {
  margin-top: 6px;
  font-size: 0.91rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-page-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  margin: 22px 0;
}

.contact-page-hours {
  border-left: 3px solid var(--coral);
  padding: 5px 0 5px 16px;
}

.contact-page-hours strong,
.contact-page-hours span {
  display: block;
}

.contact-page-hours strong {
  margin: 5px 0 2px;
  font-family: var(--serif);
  font-size: 1.03rem;
}

.contact-page-hours span {
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.contact-page-socials {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  gap: 7px;
}

.contact-page-socials a {
  border: 1px solid rgba(23, 49, 45, 0.14);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--forest);
  font-size: 0.69rem;
  font-weight: 750;
}

.contact-page-socials a:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.contact-map-frame {
  height: 190px;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 45, 0.12);
  border-radius: 18px;
  background: #e9ece5;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.68) contrast(0.94);
}

.contact-page-polished .contact-form {
  width: 100%;
  border: 1px solid rgba(23, 49, 45, 0.12);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 68px rgba(18, 49, 44, 0.09);
}

@media (max-width: 900px) {
  .contact-page-polished {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-page-information {
    padding: 24px 20px;
  }

  .contact-page-cards,
  .contact-page-bottom {
    grid-template-columns: 1fr;
  }

  .contact-page-cards a:last-child {
    grid-column: auto;
  }

  .contact-page-socials {
    justify-content: flex-start;
  }
}

/* Mobile hero cutout: text stays above the isolated doctor and desk. */
@media (max-width: 760px) {
  .home .hero {
    isolation: isolate;
  }

  .home .hero-grid,
  .home .trust-row {
    position: relative;
    z-index: 2;
  }

  .home .hero-visual {
    display: none;
  }

  .home .hero-mobile-cutout {
    position: absolute;
    z-index: 1;
    top: 98px;
    right: -28px;
    display: block;
    width: min(92vw, 410px);
    opacity: 0.52;
    pointer-events: none;
  }

  .home .hero-mobile-cutout img {
    width: 100%;
    height: auto;
    display: block;
  }

  .home .hero-copy {
    padding-bottom: 34px;
  }
}

@media (max-width: 420px) {
  .home .hero-mobile-cutout {
    top: 94px;
    right: -34px;
    width: 420px;
  }
}
/* Standalone CMS uyumluluk katmanı */
.page-hero-grid > img {
  width: 100%;
  height: 280px;
  border-radius: 34px 34px 34px 8px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(12, 52, 46, .13);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid rgba(12, 52, 46, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(12, 52, 46, .08);
}

.post-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card > div {
  padding: 24px;
}

.post-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.post-card p {
  color: var(--muted);
  line-height: 1.7;
}

.article-body {
  max-width: 820px;
  font-size: 1.06rem;
  line-height: 1.85;
}

.article-body h2,
.article-body h3 {
  margin: 1.65em 0 .6em;
  line-height: 1.18;
}

.article-body a {
  color: var(--coral);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .post-grid { grid-template-columns: 1fr; }
  .page-hero-grid > img { height: 190px; border-radius: 22px 22px 22px 8px; }
}


/* 2026-07-28 standalone inner-page layout repair */
.page-hero,
.page-hero-about,
.page-hero-grid,
.page-hero-about .page-hero-grid {
  min-height: 196px;
}

.page-hero-grid > div {
  padding: 24px 18px;
}

.page-hero h1,
.page-hero-about h1 {
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  line-height: 1.05;
}

.page-hero p:not(.eyebrow) {
  margin-top: 10px;
  font-size: .94rem;
  line-height: 1.55;
}

.press-section {
  padding-block: clamp(44px, 5vw, 66px);
}

.press-section .section-heading {
  margin-bottom: clamp(25px, 3vw, 38px);
}

.press-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  line-height: 1.07;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.video-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 270px;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: #123f39;
  padding: 0;
  color: #fff;
  box-shadow: 0 18px 44px rgba(3,24,22,.2);
  font: inherit;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.video-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.video-card-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg,rgba(4,31,28,.04) 25%,rgba(4,31,28,.92) 100%),linear-gradient(90deg,rgba(4,31,28,.25),transparent 62%);
}

.video-play {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(6,43,39,.35);
  color: #fff;
  font-size: .78rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.video-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 28px 24px 22px;
}

.video-card-copy small {
  color: #f1c488;
  font-size: .67rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.video-card-copy strong {
  display: block;
  max-width: 95%;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.18rem,1.7vw,1.52rem);
  font-weight: 500;
  line-height: 1.18;
}

.video-card-copy em {
  color: rgba(255,255,255,.76);
  font-size: .76rem;
  font-style: normal;
  font-weight: 700;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241,196,136,.62);
  box-shadow: 0 24px 58px rgba(3,24,22,.28);
}

.video-card:hover > img { transform: scale(1.035); }
.video-card:focus-visible { outline: 3px solid #f1c488; outline-offset: 4px; }

.article-layout {
  grid-template-columns: minmax(0,1.38fr) minmax(280px,.62fr);
  gap: clamp(34px,4vw,52px);
  align-items: start;
}

.articles-section .article-layout {
  grid-template-columns: .72fr 1.28fr;
  gap: 64px;
}

.article-layout > .article-body {
  max-width: none;
  font-size: 1rem;
  line-height: 1.72;
}

.article-layout > .article-feature-image {
  min-height: 410px;
  position: sticky;
  top: 132px;
}

.articles-section .article-feature-image {
  min-height: 680px;
  position: relative;
  top: auto;
}

.section > .shell.article-body {
  max-width: 900px;
  padding: clamp(28px,4vw,50px);
  border: 1px solid rgba(12,52,46,.1);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 18px 52px rgba(12,52,46,.07);
}

.section > .shell.article-body > h1:first-child { display: none; }

.section > .shell.article-body h1 {
  margin: 1.25em 0 .35em;
  font-size: clamp(1.65rem,2.5vw,2.15rem);
  line-height: 1.15;
}

.section > .shell.article-body p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
  line-height: 1.72;
}

@media (max-width: 940px) {
  .video-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-layout,
  .articles-section .article-layout { grid-template-columns: 1fr; gap: 28px; }
  .article-layout > .article-feature-image,
  .articles-section .article-feature-image { min-height: 330px; position: relative; top: auto; }
}

@media (max-width: 620px) {
  .page-hero,
  .page-hero-about,
  .page-hero-grid,
  .page-hero-about .page-hero-grid { min-height: 176px; }
  .page-hero-grid > div { padding: 22px 14px; }
  .page-hero h1,
  .page-hero-about h1 { font-size: clamp(1.85rem,8vw,2.3rem); }
  .page-hero p:not(.eyebrow) { font-size: .86rem; }
  .press-section { padding-block: 36px; }
  .press-section .section-heading h2 { font-size: clamp(1.8rem,7.5vw,2.3rem); }
  .video-grid { grid-template-columns: 1fr; gap: 16px; }
  .video-card { min-height: 230px; aspect-ratio: 16 / 10; border-radius: 17px; }
  .video-card-copy { padding: 24px 20px 19px; }
  .video-card-copy strong { font-size: clamp(1.16rem,5.8vw,1.4rem); }
  .section > .shell.article-body { padding: 26px 20px; border-radius: 18px; }
  .article-layout > .article-body { font-size: .96rem; line-height: 1.66; }
}


/* Standalone inner-page title image containment */
.page-hero-grid,
.page-hero-about .page-hero-grid {
  position: relative;
  overflow: hidden;
}

.page-hero-grid > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 34%;
  opacity: .34;
  box-shadow: none;
  filter: saturate(.72) contrast(.92);
}

.page-hero-grid > div {
  position: relative;
  z-index: 3;
}

@media (max-width: 620px) {
  .page-hero-grid > img {
    height: 100%;
    border-radius: 0;
    opacity: .28;
  }
}


/* Fitoterapi sayfasi: video baslik ve aciklamalarini ilgili kartla birlestirir */
.fitoterapi-video-section {
  padding-top: clamp(34px, 4vw, 52px);
}
.fitoterapi-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 30px);
}
.fitoterapi-video-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 52, 46, .13);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 18px 46px rgba(3, 24, 22, .16);
}
.fitoterapi-video-item .video-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.fitoterapi-video-copy {
  padding: 22px 24px 26px;
}
.fitoterapi-video-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.18;
}
.fitoterapi-video-copy p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.65;
}
@media (max-width: 760px) {
  .fitoterapi-video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fitoterapi-video-copy {
    padding: 19px 20px 22px;
  }
  .fitoterapi-video-copy h2 {
    font-size: 1.35rem;
  }
  .fitoterapi-video-copy p {
    font-size: .9rem;
    line-height: 1.58;
  }
}


/* Hakkinda sayfasi: masaustunde dengeli iki sutun, mobilde tek sutun */
@media (min-width: 941px) {
  .content-page-hakkinda .article-body {
    column-count: 2;
    column-gap: clamp(32px, 3.5vw, 48px);
    column-rule: 1px solid rgba(12, 52, 46, .12);
    text-wrap: pretty;
  }
  .content-page-hakkinda .article-body > h1:first-child {
    column-span: all;
    margin: 0 0 24px;
  }
  .content-page-hakkinda .article-body h3 {
    break-after: avoid;
    break-inside: avoid;
    margin-top: 0;
    padding-top: .35rem;
  }
  .content-page-hakkinda .article-body p,
  .content-page-hakkinda .article-body ul,
  .content-page-hakkinda .article-body ol {
    break-inside: avoid;
  }
  .content-page-hakkinda .article-feature-image {
    min-height: 520px;
  }
}
@media (max-width: 940px) {
  .content-page-hakkinda .article-body {
    column-count: 1;
  }
}
