
:root {
  --red: #b31622;
  --red-dark: #86101a;
  --red-deep: #5f0d14;
  --ink: #21191a;
  --muted: #514143;
  --line: #eadcde;
  --paper: #fffdfd;
  --soft: #fbf4f5;
  --soft-strong: #f7e9eb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 48px rgba(71, 15, 22, .10);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

/* Minimal white clinic header */
.utility {
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.utility .container {
  min-height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.utility a { color: var(--red-dark); text-decoration: none; font-weight: 800; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(72,15,22,.04);
  backdrop-filter: blur(16px);
}
.nav-row { min-height: 84px; display: flex; align-items: center; gap: 26px; }
.logo-link { margin-right: auto; flex: 0 0 auto; }
.logo-link img { width: 220px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 23px; font-size: 13.5px; font-weight: 720; }
.desktop-nav a { text-decoration: none; padding: 30px 0 27px; border-bottom: 3px solid transparent; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--red); border-color: var(--red); }
.menu-btn { display: none; border: 0; background: transparent; color: var(--ink); font-size: 28px; padding: 8px; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--line); padding: 8px 20px 22px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; text-decoration: none; font-weight: 750; border-bottom: 1px solid var(--line); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 13px 20px; font-weight: 780; text-decoration: none; border: 1px solid transparent; transition: .18s ease; }
.btn-primary { color: #fff; background: var(--red); box-shadow: 0 9px 22px rgba(179,22,34,.20); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-secondary { color: var(--red-dark); background: #fff; border-color: #d9b9bd; }
.btn-secondary:hover { background: var(--soft); border-color: var(--red); }
.btn-light { color: var(--red-dark); background: #fff; }
.header-cta { padding: 11px 17px; }

/* Hero */
.hero { padding: 78px 0 64px; background: #fff; }
.hero-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 850; }
h1 { margin: .28em 0 .32em; font-size: clamp(50px, 6.1vw, 82px); letter-spacing: -.052em; line-height: .96; font-weight: 790; color: var(--ink); }
.hero p { font-size: 18px; color: var(--muted); max-width: 610px; line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-photo {
  position: relative;
  min-height: 510px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e4cdd0;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 76% 20%, rgba(179,22,34,.10), transparent 28%),
    linear-gradient(145deg, #fff 0%, #fbf1f2 54%, #f4e1e4 100%);
}
.hero-photo::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: -95px;
  border: 1px solid rgba(179,22,34,.20);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(179,22,34,.035), 0 0 0 110px rgba(179,22,34,.022);
}
.hero-photo::after {
  content: "CLINIC PHOTO";
  position: absolute;
  right: 22px;
  bottom: 20px;
  background: #fff;
  color: var(--red-dark);
  border: 1px solid #e4c4c8;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
}
.hero-card {
  position: absolute;
  left: 28px;
  top: 28px;
  max-width: 320px;
  background: rgba(255,255,255,.94);
  border: 1px solid #e9d6d9;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 17px 18px;
  box-shadow: 0 12px 28px rgba(71,15,22,.08);
}
.hero-card-kicker { display: block; color: var(--red); text-transform: uppercase; letter-spacing: .12em; font-weight: 850; font-size: 10px; margin-bottom: 4px; }
.hero-card strong { display: block; font-size: 17px; }
.hero-card span:last-child { color: var(--muted); font-size: 13px; }

/* Trust strip */
.trust-strip { background: var(--red); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { padding: 23px 30px; border-right: 1px solid rgba(255,255,255,.28); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 16px; }
.trust-item span { display: block; color: rgba(255,255,255,.86); font-size: 13px; margin-top: 3px; }

/* Core sections */
.section { padding: 88px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--red-deep); color: #fff; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(36px,4.3vw,58px); letter-spacing: -.04em; line-height: 1; margin: 8px 0 0; }
.section-head p { max-width: 550px; color: var(--muted); margin: 0; }
.dark .eyebrow { color: #f5cbd0; }
.dark .section-head p { color: rgba(255,255,255,.86); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-decoration: none; transition: .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d9b9bd; }
.card .icon { width: 43px; height: 43px; border-radius: 11px; display: grid; place-items: center; background: var(--soft-strong); color: var(--red); font-weight: 900; margin-bottom: 20px; }
.card h3 { margin: 0 0 7px; font-size: 20px; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .arrow { display: inline-block; margin-top: 20px; color: var(--red); font-weight: 800; }
/* Specialty layout: two broad lead cards followed by three equal cards. */
.specialty-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 18px; margin-top: 8px; }
.specialty-card { grid-column: span 2; min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; gap: 34px; padding: 28px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: var(--radius); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.specialty-card.specialty-wide { grid-column: span 3; min-height: 270px; }
.specialty-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8b8bb; border-top-color: var(--red-dark); }
.specialty-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--soft-strong); color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.specialty-card h3 { margin: 0 0 9px; color: var(--ink); font-size: 22px; letter-spacing: -.025em; }
.specialty-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.specialty-card .arrow { display: inline-block; margin-top: 22px; color: var(--red); font-weight: 800; }


/* Physician feature */
.physician-feature { background: #fff; }
.doctor-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: 68px; align-items: center; }
.doctor-visual { position: relative; max-width: 500px; }
.doctor-photo { min-height: 560px; margin: 0; border-radius: 18px; overflow: hidden; background: #fff8f8; border: 1px solid #ead7d9; box-shadow: 0 20px 55px rgba(80,18,24,.11); }
.doctor-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; object-position: center 22%; }
.doctor-photo-meta { width: calc(100% - 44px); margin: -38px auto 0; position: relative; z-index: 2; background: #fff; border: 1px solid #ead7d9; border-radius: 12px; padding: 16px 18px; box-shadow: 0 13px 34px rgba(80,18,24,.10); }
.doctor-photo-meta span { display: block; color: var(--ink); font-size: 16px; font-weight: 850; letter-spacing: -.01em; }
.doctor-photo-meta strong { display: block; margin-top: 2px; color: var(--red); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.doctor-copy { padding: 8px 0; }
.doctor-copy h2 { font-size: clamp(42px,4.7vw,66px); letter-spacing: -.05em; line-height: .98; margin: 10px 0 12px; }
.doctor-copy .role { color: var(--red); font-size: 14px; font-weight: 850; letter-spacing: .04em; }
.doctor-lead { max-width: 650px; margin: 20px 0 28px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.credential-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0 0 30px; }
.credential { padding: 20px 20px 20px 0; min-height: 128px; }
.credential + .credential { border-left: 1px solid var(--line); padding-left: 20px; }
.credential-label { display: block; margin-bottom: 8px; color: var(--red); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.credential strong { display: block; color: var(--ink); font-size: 16px; line-height: 1.25; }
.credential small { display: block; margin-top: 6px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.doctor-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.doctor-text-link { color: var(--red-dark); font-weight: 800; text-decoration: none; }
.doctor-text-link:hover { color: var(--red); }
.doctor-text-link span { display: inline-block; margin-left: 5px; transition: transform .18s ease; }
.doctor-text-link:hover span { transform: translateX(3px); }

/* Resources */
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.resource { padding: 24px; border: 1px solid rgba(255,255,255,.25); border-radius: 14px; text-decoration: none; background: rgba(255,255,255,.07); }
.resource:hover { background: rgba(255,255,255,.12); }
.resource strong { display: block; margin-bottom: 7px; }
.resource span { color: rgba(255,255,255,.82); font-size: 14px; }

/* Location */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.location-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; border-top: 4px solid var(--red); }
.location-card h3 { font-size: 30px; margin: 0 0 14px; letter-spacing: -.03em; }
.location-card p { color: var(--muted); }
.contact-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px 24px; margin: 18px 0 4px; }
.contact-list p { margin: 8px 0; }
.contact-list strong { color: var(--ink); }
.map-embed { min-height: 360px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* Interior pages */
.page-hero { padding: 64px 0 50px; background: linear-gradient(115deg, var(--red-deep), var(--red)); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(48px,6vw,76px); max-width: 880px; }
.page-hero .eyebrow { color: #f5cbd0; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.90); font-size: 18px; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 56px; }
.prose h2 { font-size: 34px; letter-spacing: -.03em; margin: 44px 0 15px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.side-card { position: sticky; top: 130px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: 14px; padding: 24px; height: max-content; }
.side-card h3 { margin-top: 0; }
.side-card a { display: block; padding: 10px 0; text-decoration: none; border-bottom: 1px solid var(--line); font-weight: 700; }
.side-card a:last-child { border-bottom: 0; }
.side-card a:hover { color: var(--red); }
.notice { border-left: 4px solid var(--red); background: var(--soft); padding: 18px 20px; border-radius: 0 10px 10px 0; color: var(--muted); }

/* Patient education */
.education-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.education-card { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; border-top: 4px solid var(--red); }
.education-card .bodypart { font-size: 12px; text-transform: uppercase; color: var(--red); font-weight: 850; letter-spacing: .11em; }

/* Useful links */
.link-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.link-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; text-decoration: none; transition: .18s ease; }
.link-card:hover { transform: translateY(-2px); border-color: #d7b4b9; box-shadow: 0 12px 30px rgba(71,15,22,.07); }
.link-card strong { display: block; }
.link-card span { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Footer */
.site-footer { background: #2b0b10; color: #fff; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.2fr; gap: 35px; }
.footer-logo { width: 235px; }
.site-footer p { color: rgba(255,255,255,.78) !important; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: #f0c8cd; margin: 0 0 13px; }
.footer-col a, .footer-col span { color: #fff; display: block; text-decoration: none; padding: 5px 0; font-size: 14px; opacity: .88; line-height: 1.45; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.17); margin-top: 44px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.72); font-size: 13px; }


@media (max-width: 900px) {
  .specialty-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .specialty-card, .specialty-card.specialty-wide { grid-column: span 1; min-height: 235px; }
  .specialty-card:last-child { grid-column: 1 / -1; min-height: 220px; }
}
@media (max-width: 620px) {
  .specialty-grid { grid-template-columns: 1fr; }
  .specialty-card, .specialty-card.specialty-wide, .specialty-card:last-child { grid-column: 1; min-height: auto; }
}
@media (max-width: 1040px) {
  .doctor-grid { gap: 42px; }
  .doctor-visual { max-width: 620px; }
  .doctor-photo, .doctor-photo img { min-height: 520px; }
}
@media (max-width: 720px) {
  .credential-grid { grid-template-columns: 1fr; }
  .credential { padding: 18px 0; min-height: 0; }
  .credential + .credential { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .doctor-photo-meta { width: calc(100% - 28px); margin-top: -30px; }
  .doctor-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
}
@media (max-width: 1040px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-btn { display: block; }
  .hero-grid, .doctor-grid, .location, .content-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero-photo { min-height: 430px; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .education-grid { grid-template-columns: repeat(2,1fr); }
  .resource-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .side-card { position: static; }
}
@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .utility .container { justify-content: flex-start; gap: 8px 15px; padding: 7px 0; }
  .utility span:last-child { width: 100%; }
  .nav-row { min-height: 74px; }
  .logo-link img { width: 190px; }
  .hero { padding: 54px 0 44px; }
  .hero h1 { font-size: clamp(46px,14vw,65px); }
  .hero-photo { min-height: 360px; }
  .hero-card { left: 18px; top: 18px; right: 18px; max-width: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); padding: 18px 4px; }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .cards, .education-grid, .resource-grid, .link-list, .footer-grid { grid-template-columns: 1fr; }
  .doctor-photo, .doctor-photo img { min-height: 460px; }
  .contact-list { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
