@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Poppins:wght@500;600;700;800&display=swap");

:root {
  --font-body: "Lato", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-heading: "Poppins", Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-accent: "Merriweather", Georgia, "Times New Roman", serif;
  --ink: #142033;
  --muted: #526273;
  --line: #d8e0e8;
  --paper: #f6f8fb;
  --white: #ffffff;
  --blue: #0a4b9b;
  --deep-blue: #07316e;
  --green: #1f7f49;
  --pale-green: #eef7f2;
  --silver: #eaf0f5;
  --shadow: 0 14px 34px rgba(18, 32, 51, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.top-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 46px;
  padding: 8px clamp(18px, 5vw, 78px);
  color: var(--white);
  background: var(--deep-blue);
  font-size: 0.92rem;
}

.top-strip div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 700;
}

.top-strip span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.top-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.top-strip a {
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 92px;
  padding: 10px clamp(18px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand img {
  width: min(230px, 46vw);
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 1.5vw, 24px);
  color: #304256;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.header-action,
.primary-button,
.secondary-button,
.contact-list a,
.official-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.notice-card a:not(.primary-button):hover,
.contact-details a:hover {
  color: var(--blue);
}

.nav-links a[aria-current="page"] {
  color: var(--green);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-action,
.primary-button {
  border: 1px solid var(--deep-blue);
  color: var(--white);
  background: var(--deep-blue);
  box-shadow: 0 10px 22px rgba(7, 49, 110, 0.14);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--deep-blue);
  background: var(--white);
}

.header-action:hover,
.primary-button:hover {
  background: #06275a;
}

.secondary-button:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(18, 32, 51, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  min-height: 660px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 78px);
  background:
    linear-gradient(110deg, rgba(246, 248, 251, 0.96) 0%, rgba(255, 255, 255, 0.94) 56%, rgba(238, 247, 242, 0.96) 100%),
    linear-gradient(90deg, var(--white), var(--silver));
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.9vw, 4.9rem);
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-portrait {
  align-self: end;
  justify-self: center;
  width: min(480px, 100%);
  padding: 24px 24px 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-portrait img {
  width: 100%;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-band div {
  min-height: 112px;
  padding: 26px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.trust-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-band strong {
  display: block;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.25;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 78px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  margin-bottom: 36px;
}

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

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

.services-grid article,
.process-grid article,
.notice-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 32, 51, 0.05);
}

.services-grid article a,
.process-grid article a,
.inline-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--deep-blue);
  font-weight: 800;
  text-decoration: none;
}

.services-grid article a:hover,
.process-grid article a:hover,
.inline-link:hover {
  color: var(--green);
}

.serif-note {
  font-family: var(--font-accent);
  color: var(--muted);
  font-size: 1.02rem;
}

.page-hero {
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 78px);
  background: linear-gradient(115deg, rgba(246, 248, 251, 0.98), rgba(238, 247, 242, 0.96));
}

.page-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.12rem;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.detail-section:nth-of-type(odd) {
  background: var(--paper);
}

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

.detail-section ul,
.simple-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.page-card-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.services-grid article {
  min-height: 188px;
  padding: 26px;
}

.compact-grid article {
  min-height: 170px;
}

.services-grid article p,
.process-grid article p,
.physician-feature p,
.notice-card p:not(.section-kicker) {
  color: var(--muted);
}

.physician-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.physician-photo {
  padding: 22px 22px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--white), var(--paper));
  box-shadow: var(--shadow);
}

.physician-photo img {
  width: 100%;
}

.credential-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.credential-list p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
}

.process-section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 78px);
  background: var(--white);
}

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

.process-grid article {
  padding: 28px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 800;
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 78px);
  color: var(--white);
  background: var(--deep-blue);
}

.appointment-copy p:not(.section-kicker) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.appointment-copy .section-kicker {
  color: #a9dfbf;
}

.phone-disclosure a,
.contact-list a {
  color: var(--white);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--white);
  font-weight: 700;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

button.primary-button {
  cursor: pointer;
  font: inherit;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  background: var(--white);
}

.location-section h2 {
  max-width: 860px;
  margin-bottom: 18px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-details strong {
  color: var(--ink);
}

.map-panel {
  width: min(860px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--silver);
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.06);
}

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

.notice-hero {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 78px);
  background: linear-gradient(115deg, rgba(246, 248, 251, 0.98), rgba(238, 247, 242, 0.96));
}

.notice-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.12rem;
}

.notice-section {
  display: grid;
  gap: 18px;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 78px);
  background: var(--white);
}

.notice-card {
  max-width: 1040px;
  padding: clamp(24px, 4vw, 42px);
}

.notice-card p:not(.section-kicker) {
  max-width: 900px;
}

.notice-card a:not(.primary-button) {
  color: var(--deep-blue);
  font-weight: 700;
}

.notice-button {
  margin-top: 10px;
}

.notice-list-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.official-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(150px, 0.7fr) minmax(210px, 1fr) minmax(210px, 1fr);
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  background: #101d30;
  color: rgba(255, 255, 255, 0.76);
}

.official-footer img {
  width: 210px;
  margin-bottom: 16px;
}

.official-footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.official-footer a,
.official-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.76);
  text-align: left;
}

.footer-legal p:last-child {
  margin-top: 16px;
  font-size: 0.88rem;
}

@media (max-width: 1050px) {
  .top-strip,
  .site-header,
  .hero,
  .detail-section,
  .physician-feature,
  .appointment-section,
  .location-section,
  .official-footer {
    grid-template-columns: 1fr;
  }

  .top-strip {
    gap: 6px;
    text-align: left;
  }

  .top-strip p {
    text-align: left;
  }

  .site-header {
    position: static;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-portrait,
  .physician-photo {
    max-width: 430px;
  }

  .trust-band,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .location-actions {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 14px;
  }

  .brand img {
    width: min(210px, 100%);
  }

  .header-action {
    width: 100%;
  }

  .nav-links {
    gap: 9px 16px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 1.05;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .appointment-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .services-grid article,
  .process-grid article {
    min-height: auto;
  }

  .map-panel iframe {
    height: 300px;
  }
}
