@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root { --font-display: "Cormorant Garamond"; --font-sans: "Manrope"; }

:root {
  --cream: #f6f1e8;
  --cream-deep: #ece4d7;
  --paper: #fffdf9;
  --forest: #103f35;
  --forest-dark: #092e27;
  --eucalyptus: #678b78;
  --eucalyptus-light: #dfe9dd;
  --cedit-cyan: #17ece9;
  --cedit-cyan-deep: #0ea2b1;
  --cedit-cyan-soft: #e7fbfb;
  --cedit-navy: #07549a;
  --terracotta: #c95f3e;
  --terracotta-dark: #ab482d;
  --ink: #17362f;
  --body: #4e5e58;
  --line: rgba(16, 63, 53, 0.16);
  --shadow: 0 20px 55px rgba(30, 55, 45, 0.1);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
summary {
  font: inherit;
}

.container {
  margin-inline: auto;
  max-width: 1260px;
  padding-inline: 28px;
}

.emergency-bar {
  background: var(--forest-dark);
  color: #f7f2e9;
  font-size: 12px;
  font-weight: 600;
}

.emergency-inner {
  align-items: center;
  display: flex;
  gap: 32px;
  min-height: 41px;
}

.emergency-inner span,
.emergency-inner a {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.emergency-inner a {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: 32px;
}

.emergency-label {
  margin-left: auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-header {
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 94px;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  gap: 17px;
  min-width: 350px;
}

.brand {
  align-items: center;
  display: flex;
  justify-content: center;
}

.brand-logo {
  background: #fff;
  display: block;
  height: 58px;
  object-fit: contain;
}

.brand-logo-chapelco {
  width: 132px;
}

.brand-logo-cedit {
  width: 96px;
}

.brand-divider {
  background: var(--line);
  height: 52px;
  width: 1px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--terracotta);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  list-style: none;
}

.hero {
  background:
    radial-gradient(circle at 5% 10%, rgba(201, 95, 62, 0.08), transparent 24%),
    var(--cream);
  overflow: hidden;
  padding: 58px 0 48px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
}

.eyebrow {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero h1,
.interior-hero h1,
.section-heading h2,
.pharmacy-inner h2,
.editorial h2,
.service-detail h2 {
  font-family: var(--font-display), serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(56px, 5.2vw, 80px);
  line-height: 0.96;
  margin: 0;
  max-width: 620px;
}

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

.hero-lead {
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
  margin: 30px 0 34px;
  max-width: 580px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--terracotta);
  box-shadow: 0 12px 28px rgba(201, 95, 62, 0.24);
  color: #fff;
}

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

.button-secondary {
  border-color: rgba(16, 63, 53, 0.45);
  color: var(--forest);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.65);
}

.button-light {
  background: #fff;
  color: var(--forest);
}

.hero-trust {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
}

.hero-trust span {
  color: var(--body);
  font-size: 9px;
  line-height: 1.3;
  max-width: 100px;
  text-transform: uppercase;
}

.hero-trust strong {
  color: var(--forest);
  display: block;
  font-family: var(--font-display), serif;
  font-size: 22px;
  line-height: 1;
  text-transform: none;
}

.hero-visual {
  min-height: 530px;
  position: relative;
}

.hero-visual::before {
  border: 1px solid rgba(16, 63, 53, 0.18);
  border-radius: 46% 54% 48% 52%;
  content: "";
  height: 92%;
  left: -25px;
  position: absolute;
  top: 2%;
  transform: rotate(-4deg);
  width: 96%;
}

.hero-visual > img {
  border-radius: 38px 38px 110px 38px;
  height: 530px;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.hero-badge {
  align-items: center;
  background: rgba(255, 253, 249, 0.95);
  border-radius: 20px;
  bottom: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  left: -32px;
  padding: 16px 20px;
  position: absolute;
}

.badge-icon {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.hero-badge span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-badge small {
  color: var(--body);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-badge strong {
  font-family: var(--font-display), serif;
  font-size: 18px;
}

.quick-links {
  background: var(--cream);
  padding-bottom: 46px;
}

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

.quick-grid > a {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(16, 63, 53, 0.07);
  border-radius: 18px;
  display: flex;
  gap: 15px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-grid > a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.quick-grid > a > span {
  align-items: center;
  background: var(--eucalyptus-light);
  border-radius: 50%;
  color: var(--forest);
  display: flex;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.quick-grid > a > svg {
  color: var(--terracotta);
  margin-left: auto;
}

.quick-grid div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quick-grid strong {
  font-family: var(--font-display), serif;
  font-size: 18px;
}

.quick-grid small {
  color: var(--body);
  font-size: 10px;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 48px;
  max-width: 760px;
}

.section-heading h2,
.pharmacy-inner h2,
.editorial h2,
.service-detail h2 {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  margin: 0 0 20px;
}

.section-heading > p:last-child,
.split-heading > p,
.pharmacy-inner p,
.detail-note {
  color: var(--body);
  font-size: 15px;
  line-height: 1.75;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 100px;
  grid-template-columns: 1.25fr 0.75fr;
  max-width: none;
}

.split-heading h2 {
  margin-bottom: 0;
}

.two-clinics {
  background: var(--paper);
}

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

.clinic-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  min-height: 650px;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.clinic-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.clinic-card::after {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
  height: 240px;
  pointer-events: none;
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
}

.clinic-card-1 {
  background: var(--forest);
  color: #fff;
}

.clinic-card-2 {
  background: var(--cedit-cyan-soft);
  border-color: rgba(14, 162, 177, 0.32);
  color: var(--cedit-navy);
}

.clinic-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 38px;
  position: relative;
  z-index: 1;
}

.clinic-brand-space {
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  min-height: 92px;
  opacity: 0.95;
  padding-bottom: 24px;
}

.clinic-card-logo {
  background: #fff;
  display: block;
  height: 82px;
  object-fit: contain;
  object-position: left center;
}

.clinic-card-logo-clinica-chapelco {
  width: 235px;
}

.clinic-card-logo-cedit {
  width: 185px;
}

.clinic-card-copy > p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
}

.clinic-card-1 .clinic-card-copy > p,
.clinic-card-1 .clinic-meta {
  color: rgba(255, 255, 255, 0.74);
}

.clinic-meta {
  color: var(--body);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 8px;
  margin: auto 0 26px;
}

.clinic-meta span {
  align-items: center;
  display: flex;
  gap: 9px;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  width: fit-content;
}

.clinic-card-1 .text-link {
  color: #fff;
}

.clinic-card-cedit .clinic-meta,
.clinic-card-cedit .text-link {
  color: var(--cedit-navy);
}

.clinic-card-cedit .text-link {
  text-decoration-color: var(--cedit-cyan-deep);
}

.clinic-map {
  background: var(--cream-deep);
  display: block;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.clinic-map iframe {
  border: 0;
  filter: saturate(0.78) contrast(0.94);
  height: 100%;
  pointer-events: none;
  width: 100%;
}

.clinic-map::after {
  background: linear-gradient(180deg, transparent 35%, rgba(9, 46, 39, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.clinic-map-link {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.clinic-map-compact {
  border-top: 1px solid rgba(16, 63, 53, 0.16);
  flex: 0 0 245px;
  height: 245px;
}

.map-open-label {
  align-items: center;
  background: rgba(255, 253, 249, 0.96);
  border-radius: 15px;
  bottom: 16px;
  box-shadow: 0 12px 28px rgba(9, 46, 39, 0.2);
  color: var(--forest);
  display: grid;
  gap: 1px 10px;
  grid-template-columns: auto 1fr;
  left: 16px;
  padding: 11px 14px;
  position: absolute;
}

.map-open-label svg {
  grid-row: 1 / 3;
}

.map-open-label strong {
  font-size: 12px;
}

.map-open-label small {
  color: var(--body);
  font-size: 9px;
}

.clinic-map-cedit {
  background: var(--cedit-cyan-soft);
  border-color: rgba(14, 162, 177, 0.35);
}

.clinic-map-cedit .map-open-label {
  border: 2px solid var(--cedit-cyan);
  color: var(--cedit-navy);
}

.clinic-map-cedit::after {
  background: linear-gradient(180deg, transparent 35%, rgba(7, 84, 154, 0.32));
}

.location-card .clinic-map {
  border-radius: var(--radius-lg) var(--radius-lg) 18px 18px;
  height: 240px;
  margin: -38px -38px 30px;
}

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

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

.service-card {
  background: var(--paper);
  border: 1px solid rgba(16, 63, 53, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 26px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  align-items: center;
  background: var(--eucalyptus-light);
  border-radius: 50%;
  color: var(--forest);
  display: flex;
  height: 52px;
  justify-content: center;
  margin-bottom: 38px;
  width: 52px;
}

.service-number {
  color: var(--terracotta);
  font-family: var(--font-display), serif;
  font-size: 16px;
  position: absolute;
  right: 25px;
  top: 25px;
}

.service-card h3 {
  font-family: var(--font-display), serif;
  font-size: 25px;
  line-height: 1.05;
  margin: 0 0 12px;
}

.service-card p {
  color: var(--body);
  font-size: 12px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.service-card .text-link {
  color: var(--terracotta);
  margin-top: auto;
}

.pharmacy-callout {
  background: var(--forest);
  color: #fff;
  padding: 72px 0;
}

.pharmacy-inner {
  align-items: center;
  display: grid;
  gap: 35px;
  grid-template-columns: auto 1fr auto;
}

.pharmacy-icon {
  align-items: center;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  height: 78px;
  justify-content: center;
  width: 78px;
}

.pharmacy-inner .eyebrow {
  color: #e8b39e;
  margin-bottom: 12px;
}

.pharmacy-inner h2 {
  font-size: 42px;
  margin-bottom: 6px;
}

.pharmacy-inner p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.pharmacy-home {
  background: var(--forest);
  color: #fff;
}

.pharmacy-home-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 0.8fr 1.2fr;
}

.pharmacy-home-copy {
  max-width: 480px;
}

.pharmacy-home-copy .eyebrow {
  color: #e8b39e;
}

.pharmacy-home-copy h2 {
  font-family: var(--font-display), serif;
  font-size: clamp(44px, 4vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0 0 24px;
}

.pharmacy-home-copy > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 30px;
}

.pharmacy-home-copy .text-link {
  color: #fff;
}

.pharmacy-live-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  color: var(--ink);
  padding: 38px;
}

.pharmacy-live-status {
  align-items: center;
  color: var(--body);
  display: flex;
  font-size: 10px;
  gap: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.pharmacy-live-status span {
  background: #e1a653;
  border-radius: 50%;
  height: 9px;
  width: 9px;
}

.pharmacy-live-main {
  align-items: flex-start;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr;
}

.pharmacy-live-main .pharmacy-icon {
  height: 64px;
  width: 64px;
}

.pharmacy-live-main small {
  color: var(--terracotta);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.pharmacy-live-main strong {
  display: block;
  font-family: var(--font-display), serif;
  font-size: 31px;
  line-height: 1.05;
}

.pharmacy-live-main p {
  color: var(--body);
  font-size: 12px;
  line-height: 1.65;
  margin: 13px 0 0;
}

.pharmacy-live-card > .source-note {
  border-top: 1px solid var(--line);
  line-height: 1.6;
  margin: 30px 0 0;
  padding-top: 20px;
}

.interior-hero {
  background:
    radial-gradient(circle at 85% 30%, rgba(103, 139, 120, 0.22), transparent 28%),
    var(--cream);
  padding: 78px 0 84px;
}

.interior-hero-cedit {
  background:
    radial-gradient(circle at 85% 30%, rgba(23, 236, 233, 0.34), transparent 30%),
    var(--cedit-cyan-soft);
  border-bottom: 4px solid var(--cedit-cyan);
}

.interior-hero-cedit .eyebrow,
.interior-hero-cedit .back-link span {
  color: var(--cedit-cyan-deep);
}

.interior-hero-cedit h1 {
  color: var(--cedit-navy);
}

.back-link {
  color: var(--body);
  display: block;
  font-size: 11px;
  margin-bottom: 50px;
}

.back-link span {
  color: var(--terracotta);
  margin: 0 7px;
}

.interior-hero h1 {
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.98;
  margin: 0;
  max-width: 980px;
}

.interior-hero .lead {
  color: var(--body);
  font-size: 17px;
  line-height: 1.75;
  margin: 28px 0 0;
  max-width: 720px;
}

.detail-grid {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: 1.25fr 0.75fr;
}

.feature-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 35px 0;
  padding: 0;
}

.feature-list li {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 13px;
  padding: 0 0 14px;
}

.feature-list li > span {
  align-items: center;
  background: var(--eucalyptus-light);
  border-radius: 50%;
  color: var(--forest);
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px;
  position: sticky;
  top: 125px;
}

.location-card-cedit {
  background: var(--cedit-cyan-soft);
  border: 1px solid rgba(14, 162, 177, 0.24);
}

.location-card-cedit .contact-icon,
.clinic-detail-cedit .feature-list li > span {
  background: var(--cedit-cyan);
  color: var(--cedit-navy);
}

.clinic-detail-cedit .eyebrow,
.location-card-cedit .eyebrow {
  color: var(--cedit-cyan-deep);
}

.contact-icon {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 60px;
  justify-content: center;
  margin-bottom: 30px;
  width: 60px;
}

.contact-card .eyebrow {
  margin-bottom: 13px;
}

.contact-card h3 {
  font-family: var(--font-display), serif;
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.contact-card > p:not(.eyebrow) {
  color: var(--body);
  font-size: 13px;
  line-height: 1.65;
  margin: 17px 0 25px;
}

.contact-card .button {
  margin-top: 10px;
  width: 100%;
}

.detail-back {
  margin-top: 50px;
}

.detail-back .text-link svg {
  transform: rotate(180deg);
}

.clinic-grid-page {
  min-height: 500px;
}

.clinic-photo {
  border-radius: var(--radius-lg);
  height: 360px;
  margin-bottom: 45px;
  overflow: hidden;
}

.clinic-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-placeholder {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(103, 139, 120, 0.2), rgba(201, 95, 62, 0.12)),
    var(--cream);
  color: var(--forest);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  justify-content: center;
}

.photo-placeholder strong {
  font-family: var(--font-display), serif;
  font-size: 26px;
}

.photo-placeholder span {
  color: var(--body);
  font-size: 11px;
}

.editorial-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.45fr 1.55fr;
}

.editorial-mark {
  border-top: 1px solid var(--terracotta);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
}

.editorial-mark span {
  color: var(--terracotta);
  font-family: var(--font-display), serif;
  font-size: 56px;
}

.editorial-mark small {
  color: var(--body);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.editorial article {
  max-width: 760px;
}

.editorial article p {
  color: var(--body);
  font-family: var(--font-display), serif;
  font-size: 24px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.editorial article .button {
  margin-top: 20px;
}

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

.gallery-grid figure {
  border-radius: var(--radius-md);
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.gallery-wide {
  grid-column: 1 / -1;
  height: 520px;
}

.gallery-wide img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figcaption {
  background: rgba(9, 46, 39, 0.86);
  bottom: 18px;
  color: #fff;
  left: 18px;
  padding: 11px 15px;
  position: absolute;
}

.gallery-placeholder {
  align-items: center;
  background: var(--cream);
  color: var(--forest);
  display: flex;
  justify-content: center;
}

.gallery-tone-2,
.gallery-tone-3 {
  background: var(--eucalyptus-light);
}

.gallery-placeholder figcaption {
  display: flex;
  flex-direction: column;
}

.gallery-placeholder small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.pharmacy-page-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
}

.pharmacy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 45px;
}

.pharmacy-status {
  align-items: center;
  color: var(--body);
  display: flex;
  font-size: 10px;
  gap: 8px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.pharmacy-status span {
  background: #e1a653;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.pharmacy-card h2 {
  font-family: var(--font-display), serif;
  font-size: 46px;
  line-height: 1;
  margin: 0;
}

.pharmacy-card > p:not(.eyebrow, .source-note) {
  color: var(--body);
  line-height: 1.75;
}

.pharmacy-demo {
  align-items: center;
  background: var(--cream);
  border-radius: 18px;
  display: flex;
  gap: 18px;
  margin: 30px 0;
  padding: 22px;
}

.pharmacy-demo > span {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.pharmacy-demo div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pharmacy-demo small,
.source-note {
  color: var(--body);
  font-size: 9px;
  text-transform: uppercase;
}

.site-footer {
  background: var(--forest-dark);
  color: #fff;
  padding: 75px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 45px;
  grid-template-columns: 1.5fr 1fr 0.7fr 1fr;
}

.site-footer .brand-lockup {
  margin-bottom: 22px;
  min-width: 0;
}

.site-footer .brand-lockup-footer {
  gap: 22px;
}

.site-footer .brand-lockup-footer .brand-logo {
  height: 88px;
}

.site-footer .brand-lockup-footer .brand-logo-chapelco {
  width: 200px;
}

.site-footer .brand-lockup-footer .brand-logo-cedit {
  width: 143px;
}

.site-footer > p,
.footer-grid > div:first-child > p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid h3 {
  font-size: 11px;
  letter-spacing: 0.13em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.footer-grid a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-grid a strong {
  color: #fff;
}

.footer-grid .footer-clinic-link-cedit strong {
  color: var(--cedit-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.floating-contact {
  bottom: 22px;
  display: grid;
  gap: 9px;
  position: fixed;
  right: 22px;
  z-index: 40;
}

.floating-whatsapp {
  align-items: center;
  background: #256f54;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 9px;
  padding: 13px 17px;
}

.floating-whatsapp-2 {
  background: #397f8d;
}

.floating-whatsapp > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-whatsapp strong {
  font-size: 11px;
}

.floating-whatsapp small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-width: 230px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 38px;
  }

  .mobile-nav nav a {
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    padding: 12px;
  }

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

  .hero h1 {
    font-size: 58px;
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 480px;
  }

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

  .pharmacy-home-grid {
    gap: 45px;
  }
}

@media (max-width: 800px) {
  .container {
    padding-inline: 20px;
  }

  .emergency-inner {
    justify-content: space-between;
  }

  .emergency-inner > span:first-child {
    display: none;
  }

  .emergency-inner a {
    border-left: 0;
    padding-left: 0;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-lockup {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
  }

  .brand-logo-chapelco {
    width: 96px;
  }

  .brand-logo-cedit {
    width: 70px;
  }

  .brand-divider {
    height: 36px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .split-heading,
  .detail-grid,
  .editorial-grid,
  .pharmacy-page-grid,
  .pharmacy-home-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-visual,
  .hero-visual > img {
    height: 440px;
    min-height: 440px;
  }

  .hero-badge {
    bottom: 16px;
    left: 15px;
  }

  .hero-trust {
    align-items: flex-start;
  }

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

  .quick-grid {
    gap: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .split-heading {
    gap: 10px;
  }

  .clinic-card {
    min-height: 620px;
  }

  .clinic-card-copy {
    padding: 28px;
  }

  .clinic-map-compact {
    flex-basis: 230px;
    height: 230px;
  }

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

  .pharmacy-inner {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .pharmacy-inner .button {
    grid-column: 1 / -1;
  }

  .contact-card {
    position: static;
  }

  .gallery-wide {
    grid-column: auto;
    height: 360px;
  }

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

  .site-footer .brand-lockup-footer .brand-logo {
    height: 72px;
  }

  .site-footer .brand-lockup-footer .brand-logo-chapelco {
    width: 164px;
  }

  .site-footer .brand-lockup-footer .brand-logo-cedit {
    width: 117px;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 12px;
  }

  .hero-visual,
  .hero-visual > img {
    height: 380px;
    min-height: 380px;
  }

  .hero-badge {
    right: 12px;
  }

  .quick-grid div small {
    display: none;
  }

  .pharmacy-inner {
    grid-template-columns: 1fr;
  }

  .pharmacy-live-card {
    padding: 25px;
  }

  .pharmacy-live-main {
    grid-template-columns: 1fr;
  }

  .pharmacy-live-main strong {
    font-size: 27px;
  }

  .floating-contact {
    bottom: 10px;
    gap: 7px;
    grid-template-columns: 1fr 1fr;
    left: 10px;
    right: 10px;
  }

  .floating-whatsapp {
    border-radius: 15px;
    justify-content: center;
    padding: 10px;
  }

  .floating-whatsapp strong {
    font-size: 9px;
  }

  .floating-whatsapp small {
    font-size: 7px;
  }

  .site-footer {
    padding-bottom: 105px;
  }

  .site-footer .brand-lockup-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer .brand-lockup-footer .brand-divider {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
