:root {
  --navy: #073f50;
  --navy-2: #0b5367;
  --gold: #c89647;
  --gold-soft: #f4ddb5;
  --cream: #fbfaf5;
  --cream-2: #f2efe6;
  --text: #16323b;
  --muted: #65777d;
  --line: rgba(7, 63, 80, .14);
  --white: #ffffff;
  --danger: #8b1e2d;
  --shadow: 0 24px 70px rgba(7, 63, 80, .12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 150, 71, .16), transparent 30%),
    radial-gradient(circle at 92% 4%, rgba(7, 63, 80, .12), transparent 34%),
    linear-gradient(180deg, var(--cream), #ffffff 58%, var(--cream) 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.top-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, .92);
  font-size: 14px;
}

.top-strip .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 8px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-contact a,
.top-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-strip i {
  color: var(--gold-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 247, .90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  padding: 7px;
  box-shadow: 0 12px 34px rgba(7, 63, 80, .10);
}

.brand-text strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.2;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 10px;
  transition: .25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 63, 80, .22);
}

.btn-secondary {
  background: rgba(255, 255, 255, .82);
  color: var(--navy);
  border-color: var(--line);
}

.btn-gold {
  background: linear-gradient(135deg, #d9b36f, var(--gold));
  color: #33210a;
  box-shadow: 0 18px 38px rgba(200, 150, 71, .22);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-gold:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 20px;
}

.hero {
  padding: 76px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(200, 150, 71, .34);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 63, 80, .06);
}

.eyebrow i {
  color: var(--gold);
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--navy);
  margin-top: 22px;
}

h1 span {
  color: var(--gold);
}

.lead {
  max-width: 700px;
  margin-top: 24px;
  color: #486168;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  color: #52676d;
  font-size: 14px;
}

.hero-note i {
  color: var(--gold);
  margin-top: 4px;
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 63, 80, .12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200, 150, 71, .20);
}

.logo-panel {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 24px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 247, 241, .92));
  border: 1px solid rgba(7, 63, 80, .08);
}

.logo-panel img {
  width: min(420px, 96%);
  object-fit: contain;
}

.hero-info-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-info {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(7, 63, 80, .10);
}

.mini-info i {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}

.mini-info strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.mini-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .70), rgba(248, 247, 241, .86));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 800px;
  margin-bottom: 40px;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.doctor-card {
  position: sticky;
  top: 112px;
  padding: 26px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.doctor-photo-box {
  position: relative;
  min-height: 450px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7, 63, 80, .12), rgba(200, 150, 71, .12));
}

.doctor-photo-box img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  object-position: center top;
}

.doctor-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 70px 24px 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 63, 80, 0), rgba(7, 63, 80, .92));
}

.doctor-photo-caption strong {
  display: block;
  font-size: 24px;
  line-height: 1.15;
}

.doctor-photo-caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .78);
}

.doctor-card-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.doctor-card-list a,
.doctor-card-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(248, 247, 241, .82);
  border: 1px solid rgba(7, 63, 80, .08);
  color: #425b62;
  font-size: 14px;
  line-height: 1.45;
}

.doctor-card-list i {
  width: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.bio-content {
  display: grid;
  gap: 18px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.timeline-item,
.bio-box,
.service-card,
.process-card,
details {
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7, 63, 80, .06);
}

.timeline-item {
  padding: 22px;
  border-radius: 24px;
}

.timeline-item .year {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.timeline-item strong {
  display: block;
  color: var(--navy);
  line-height: 1.35;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.bio-box {
  padding: 28px;
  border-radius: 28px;
}

.bio-box p + p {
  margin-top: 18px;
}

.bio-box strong {
  color: var(--navy);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border-radius: 28px;
  overflow: hidden;
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(7, 63, 80, .12);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200, 150, 71, .12);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(7, 63, 80, .08);
  color: var(--navy);
  font-size: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  counter-reset: step;
}

.process-card {
  min-height: 210px;
  padding: 24px 20px;
  border-radius: 24px;
  counter-increment: step;
}

.process-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

.warning-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: flex-start;
  margin-top: 34px;
  padding: 28px;
  border-radius: 28px;
  background: #fff7f4;
  border: 1px solid rgba(139, 30, 45, .20);
}

.warning-box i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(139, 30, 45, .10);
  color: var(--danger);
  font-size: 24px;
}

.warning-box h3 {
  margin-bottom: 6px;
  color: var(--danger);
  font-size: 20px;
}

.warning-box p {
  color: #6d4a4d;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

details {
  padding: 18px 20px;
  border-radius: 22px;
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.legal-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(7, 63, 80, .06);
  color: #53676d;
  font-size: 14px;
  border: 1px solid rgba(7, 63, 80, .08);
}

.contact-section {
  padding: 86px 0;
  background: linear-gradient(180deg, #fff, var(--cream-2));
}

.contact-map-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
  gap: 0;
  border-radius: 34px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-side iframe {
  width: 100%;
  min-height: 590px;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.90) contrast(1.04);
}

.contact-side {
  padding: 34px;
  background: radial-gradient(circle at top right, rgba(200, 150, 71, .18), transparent 34%), #fff;
}

.contact-side h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.04;
  margin-bottom: 10px;
}

.contact-side > p {
  color: var(--muted);
  margin-bottom: 24px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(248, 247, 241, .86);
  border: 1px solid rgba(7, 63, 80, .08);
}

.contact-item i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(7, 63, 80, .08);
  color: var(--gold);
  font-size: 19px;
}

.contact-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
  word-break: break-word;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  padding: 44px 0 92px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  padding: 7px;
}

.footer-logo strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.footer-logo span {
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.mobile-sticky {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(7, 63, 80, .18);
  backdrop-filter: blur(14px);
}

.mobile-sticky a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 900;
}

.mobile-sticky a:first-child {
  background: var(--navy);
  color: #fff;
}

.mobile-sticky a:last-child {
  background: #e9f7ec;
  color: #126b34;
}

@media (max-width: 1080px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 92px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero-grid,
  .about-grid,
  .contact-map-card {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    position: relative;
    top: auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .map-side iframe {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-strip .container,
  .top-contact {
    justify-content: center;
  }

  .top-contact {
    gap: 10px 14px;
  }

  .hide-mobile {
    display: none !important;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .hero {
    padding: 52px 0 36px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions .btn,
  .contact-buttons .btn {
    width: 100%;
  }

  .hero-card {
    padding: 18px;
    border-radius: 28px;
  }

  .logo-panel {
    min-height: 230px;
    padding: 22px 14px;
  }

  .hero-info-grid,
  .services-grid,
  .process-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 62px 0;
  }

  .bio-box,
  .warning-box,
  .contact-side {
    padding: 22px;
    border-radius: 24px;
  }

  .doctor-card {
    padding: 18px;
    border-radius: 26px;
  }

  .doctor-photo-box,
  .doctor-photo-box img {
    min-height: 390px;
  }

  .warning-box {
    grid-template-columns: 1fr;
  }

  .map-side iframe {
    min-height: 350px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky {
    display: grid;
  }
}