@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/noto-serif-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Serif";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/noto-serif-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/noto-serif-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/noto-serif-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --primary: #041627;
  --primary-soft: #1a2b3c;
  --surface: #f8f9fa;
  --surface-low: #f3f4f5;
  --surface-mid: #edeeef;
  --surface-high: #e7e8e9;
  --white: #ffffff;
  --text: #191c1d;
  --muted: #44474c;
  --outline: #c4c6cd;
  --gold: #bdac51;
  --gold-dark: #6c5e06;
  --gold-soft: #f7e382;
  --shadow: 0 24px 60px rgba(4, 22, 39, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.serif,
h1,
h2,
h3 {
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(196, 198, 205, 0.35);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}

.brand {
  color: var(--primary);
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link,
.footer-link {
  color: #53606a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-link:hover,
.footer-link:hover,
.nav-link[aria-current="page"],
.footer-link[aria-current="page"] {
  color: var(--primary);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 160ms ease, transform 160ms ease;
}

.button:hover {
  opacity: 0.9;
}

.button:active {
  transform: translateY(1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(4, 22, 39, 0.22);
  color: var(--primary);
}

.button.gold {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: #211b00;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(4, 22, 39, 0.16);
  border-radius: 4px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font: inherit;
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-icon::before {
  top: 0;
}

.menu-icon span {
  top: 6px;
}

.menu-icon::after {
  bottom: 0;
}

.mobile-menu {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 20px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  align-items: center;
  overflow: hidden;
  padding: 118px 0 80px;
  background: var(--surface-low);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  filter: saturate(0.8) contrast(0.95);
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 249, 250, 0.96), rgba(248, 249, 250, 0.7) 45%, rgba(248, 249, 250, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-self: stretch;
}

.hero-copy {
  max-width: 660px;
  margin-right: auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 28px;
  color: var(--primary);
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  font-weight: 400;
  line-height: 1.05;
}

.hero h1 span {
  display: block;
  font-style: italic;
}

.hero p {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
}

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

.section {
  padding: 92px 0;
}

.section.low {
  background: var(--surface-low);
}

.section.white {
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 112px;
}

.section-title {
  margin: 0 0 22px;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
}

.rule {
  width: 48px;
  height: 4px;
  margin: 0 0 28px;
  background: var(--gold);
}

.muted {
  color: var(--muted);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface-high);
  filter: grayscale(1);
  object-fit: cover;
  transition: filter 240ms ease;
}

.doctor-card:hover img {
  filter: grayscale(0);
}

.badge {
  display: inline-block;
  margin: 24px 0 14px;
  padding: 6px 10px;
  background: var(--gold-soft);
  color: #211b00;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 400;
}

.doctor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.center {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 248px;
  padding: 30px;
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.service-card.wide {
  grid-column: span 2;
}

.service-card.gold-card {
  background: var(--gold);
  color: #211b00;
}

.service-card:hover:not(.gold-card) {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  margin: 0 0 16px;
  color: inherit;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: inherit;
  opacity: 0.78;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-list {
  display: grid;
  gap: 26px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--surface-low);
  color: var(--primary);
  font-weight: 800;
}

.contact-item h3 {
  margin: 0 0 6px;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
}

.contact-emphasis {
  color: var(--primary);
  font-size: 1.35rem;
  text-decoration: none;
}

.map-card {
  display: grid;
  flex: 1;
  min-height: 280px;
  place-items: center;
  margin-top: 32px;
  padding: 28px;
  background: linear-gradient(135deg, #d8dbde, #f3f4f5);
  color: var(--primary);
  overflow: hidden;
  position: relative;
  text-align: center;
}

.map-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-placeholder p {
  margin: 0 0 18px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.map-privacy {
  margin: 18px auto 0;
  max-width: 360px;
  color: var(--muted);
  font-size: 0.82rem;
}

.map-iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-card.is-loaded {
  display: block;
  padding: 0;
  background: var(--surface-low);
}

.hours-card {
  padding: 42px;
  background: var(--surface);
}

.hours-card h2 {
  margin: 0 0 28px;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 400;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(196, 198, 205, 0.45);
}

.hours-row span:first-child {
  font-weight: 700;
}

.hours-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.note {
  margin-top: 34px;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  color: var(--muted);
  font-style: italic;
}

.page-main {
  padding: 132px 0 90px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 68px;
  align-items: center;
  margin-bottom: 72px;
}

.page-hero h1 {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.hero-panel {
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (max-width: 1080px) {
  .page-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .hero-panel {
    max-width: 560px;
  }
}

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

.content-card {
  padding: 34px;
  background: var(--white);
}

.content-card.dark {
  background: var(--primary);
  color: var(--white);
}

.content-card.wide {
  grid-column: span 2;
}

.content-card h2,
.content-card h3 {
  margin: 0 0 20px;
  color: inherit;
  font-size: 1.6rem;
  font-weight: 400;
}

.content-card p,
.content-card li {
  color: inherit;
  opacity: 0.78;
}

.content-card p {
  margin: 0 0 12px;
}

.content-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(196, 198, 205, 0.45);
}

.legal-section h2 {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 400;
}

.legal-section p {
  max-width: 860px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 28px;
  background: #f1f3f5;
  border-top: 1px solid rgba(196, 198, 205, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
}

.footer-title {
  display: block;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: "Noto Serif", Georgia, "Times New Roman", serif;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 4px;
  color: var(--primary);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(196, 198, 205, 0.45);
  color: #7a828a;
  font-size: 0.82rem;
}

.mobile-only {
  display: none;
}

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

  .sticky-note {
    position: static;
  }

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

  .service-card.wide,
  .content-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .nav {
    padding: 12px 18px;
  }

  .brand {
    max-width: 230px;
    font-size: 1rem;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }

  .hero {
    min-height: 78vh;
    padding: 100px 0 64px;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(248, 249, 250, 0.97) 0%, rgba(248, 249, 250, 0.84) 44%, rgba(248, 249, 250, 0.62) 100%);
  }

  .section {
    padding: 70px 0;
  }

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

  .hours-card,
  .hero-panel,
  .content-card {
    padding: 28px;
  }

  .hours-row {
    display: grid;
  }

  .hours-row span:last-child {
    text-align: left;
  }
}
