@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Jost:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #2c3e45;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── NAV ── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #dce8ed;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2rem 0 0.5rem;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-logo-icons {
  display: flex;
  gap: 6px;
}

.nav-logo-icons svg {
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.25rem;
  color: #5B8FA8;
  letter-spacing: 0.01em;
}

.nav-logo-text .logo-ent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: #D4922A;
  text-align: right;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b8490;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #5B8FA8;
}

/* ── HERO ── */

.hero {
  background: #e8f1f5;
  text-align: center;
  padding: 5rem 2rem 4rem;
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #5B8FA8;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero h1 .accent {
  font-style: italic;
  color: #D4922A;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b8490;
  margin-bottom: 1.5rem;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: #5B8FA8;
  opacity: 0.4;
  margin: 0 auto 1.5rem;
  border: none;
}

.hero-tagline {
  font-size: 0.95rem;
  color: #2c3e45;
  margin-bottom: 1.5rem;
}

.hero-contact {
  font-size: 0.85rem;
  color: #6b8490;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.hero-contact a {
  color: #5B8FA8;
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

.hero-contact span.sep {
  color: #dce8ed;
}

/* ── SECTION SHARED ── */

section {
  padding: 4rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #D4922A;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: #5B8FA8;
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.section-rule {
  width: 36px;
  height: 1px;
  background: #5B8FA8;
  opacity: 0.45;
  border: none;
  margin-bottom: 2.5rem;
}

/* ── CARD ── */

.card {
  border: 1px solid #dce8ed;
  border-top: 3px solid #5B8FA8;
  padding: 2rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: #5B8FA8;
  margin-bottom: 0.3rem;
}

.card-role {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4922A;
  margin-bottom: 1rem;
}

.card-bio {
  font-size: 0.92rem;
  color: #2c3e45;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.card-qual-list {
  list-style: none;
  border-top: 1px solid #dce8ed;
  font-size: 0.88rem;
  color: #2c3e45;
  margin-bottom: 1rem;
}

.card-qual-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #dce8ed;
}

.card-reg {
  font-size: 0.8rem;
  color: #6b8490;
  margin-top: 0.5rem;
}

/* ── ABOUT ── */

#about {
  background: #fff;
}

.surgeon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ── TRUST BAR ── */

.trust-bar {
  background: #5B8FA8;
  padding: 1.75rem 2rem;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.trust-item {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

/* ── CONTACT ── */

#contact {
  background: #f9fbfc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-rows {
  list-style: none;
  border-top: 1px solid #dce8ed;
}

.contact-rows li {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px solid #dce8ed;
  gap: 0.15rem;
}

.contact-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5B8FA8;
}

.contact-value {
  font-size: 0.9rem;
  color: #2c3e45;
}

.contact-value a {
  color: #2c3e45;
  text-decoration: none;
}

.contact-value a:hover {
  color: #5B8FA8;
  text-decoration: underline;
}

.map-wrapper {
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

/* ── FOOTER ── */

footer {
  background: #2c3e45;
  padding: 2.5rem 2rem;
  color: #dce8ed;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b8490;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-info {
  font-size: 0.82rem;
  color: #6b8490;
  line-height: 1.6;
}

.footer-info a {
  color: #6b8490;
  text-decoration: none;
}

.footer-info a:hover {
  color: #dce8ed;
}

.footer-reg {
  font-size: 0.8rem;
  color: #6b8490;
}

.footer-copy {
  font-size: 0.78rem;
  color: #4a6170;
  border-top: 1px solid #3d5260;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* ── EXPERTISE PAGE ── */

.page-hero {
  background: #e8f1f5;
  text-align: center;
  padding: 4rem 2rem;
}

.procedures-section {
  background: #fff;
}

.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.proc-card {
  border: 1px solid #dce8ed;
  border-top: 3px solid #5B8FA8;
  padding: 1.75rem;
}

.proc-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #5B8FA8;
  margin-bottom: 0.75rem;
}

.proc-list {
  list-style: none;
  border-top: 1px solid #dce8ed;
}

.proc-list li {
  font-size: 0.88rem;
  color: #2c3e45;
  padding: 0.45rem 0;
  border-bottom: 1px solid #dce8ed;
}

.proc-note {
  font-size: 0.82rem;
  color: #6b8490;
  margin-top: 0.75rem;
  font-style: italic;
}

.az-section {
  background: #f9fbfc;
}

.az-section .section-title {
  margin-bottom: 0.8rem;
}

.az-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #dce8ed;
  border-left: 1px solid #dce8ed;
}

.az-item {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #6b8490;
  padding: 0.6rem 0.75rem;
  border-right: 1px solid #dce8ed;
  border-bottom: 1px solid #dce8ed;
}

/* ── NAV TOGGLE ── */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #2c3e45;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── RESPONSIVE ── */

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

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

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

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

@media (max-width: 600px) {
  .hero-contact {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #dce8ed;
    padding: 1rem 1.25rem;
    gap: 0;
    z-index: 99;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { border-bottom: 1px solid #dce8ed; }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.85rem;
  }

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

  .az-item { border-right: none; }

  .hero {
    padding: 3.5rem 1.25rem 3rem;
  }
}
