:root {
  --primary: #2c7da0;
  --secondary: #61a5c2;
  --accent: #80b918;
  --background: #f8fafc;
  --text: #1f2937;
  --white: #ffffff;
  --muted: #5f6f83;
  --border: #dbe7ee;
  --soft-blue: #eaf6fa;
  --soft-green: #f0f8ea;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--primary);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.35rem, 9vw, 4.75rem);
  max-width: 820px;
}

.hero-title {
  display: grid;
  gap: 0.08em;
  max-width: 100%;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-main {
  font-size: clamp(3.2rem, 9vw, 6.1rem);
  overflow-wrap: anywhere;
}

.hero-title-sub {
  max-width: 100%;
  font-size: clamp(1.7rem, 3.7vw, 2.55rem);
  white-space: normal;
}

h2 {
  font-size: clamp(1.8rem, 5.8vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

.section-title-large {
  font-size: clamp(2.35rem, 9vw, 4.75rem);
  max-width: 820px;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.8vw, 1.28rem);
}

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

.stack {
  display: grid;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(219, 231, 238, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(44, 125, 160, 0.16));
}

.brand-name {
  display: block;
  max-width: 14rem;
  line-height: 1.15;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: var(--soft-blue);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 76px;
  right: 1rem;
  left: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  padding: 0.8rem 0.9rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--soft-blue);
  outline: none;
}

.site-nav .nav-booking {
  margin-top: 0.4rem;
  color: var(--white);
  background: var(--primary);
}

.header-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.2rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(128, 185, 24, 0.38);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 26px rgba(44, 125, 160, 0.22);
}

.btn-primary:hover {
  background: #256f8e;
}

.btn-secondary {
  color: var(--primary);
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.08);
}

.btn-secondary:hover {
  border-color: var(--secondary);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(97, 165, 194, 0.2), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(219, 231, 238, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
}

.trust-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 0.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-weight: 700;
}

.trust-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(128, 185, 24, 0.14);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

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

.card {
  min-height: 100%;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
}

.card-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--primary);
  background: var(--soft-blue);
  border-radius: 50%;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.service-card {
  display: grid;
  gap: 0.85rem;
}

.services-grid {
  align-items: stretch;
}

.services-grid > .card {
  min-height: 100%;
}

.service-card a {
  width: fit-content;
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover,
.service-card a:focus-visible {
  text-decoration: underline;
}

.feature-band {
  background: var(--white);
  border-block: 1px solid var(--border);
}

.cta {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(44, 125, 160, 0.96), rgba(97, 165, 194, 0.96)),
    var(--primary);
}

.cta h2,
.cta p {
  color: var(--white);
}

.cta-box {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.cta .btn-primary {
  color: var(--primary);
  background: var(--white);
}

.cta .btn-primary:hover {
  background: #eef8fb;
}

.page-hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(128, 185, 24, 0.14), transparent 20rem),
    linear-gradient(180deg, #ffffff, var(--background));
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 1rem;
}

.page-intro {
  display: grid;
  max-width: 860px;
  gap: 0.9rem;
  margin-top: 1rem;
}

.page-intro .lead {
  margin-top: 0;
}

.content-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.panel {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
}

.profile-card {
  display: grid;
  gap: 1rem;
}

.profile-avatar {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--primary);
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
  border-radius: var(--radius);
}

.profile-avatar svg {
  width: 112px;
  height: 112px;
  stroke: currentColor;
}

.about-practice-content {
  max-width: 860px;
}

.value-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  padding-left: 1.3rem;
  border-left: 4px solid var(--accent);
}

.practice-gallery-section {
  padding-top: 0;
}

.practice-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.practice-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.practice-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.practice-photo:hover img {
  transform: scale(1.03);
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.info-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 0.25rem;
}

.info-list dt {
  color: var(--primary);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours th,
.hours td {
  padding: 0.7rem 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.hours th {
  color: var(--text);
}

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

.price-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.06);
}

.price-panel {
  margin-top: 1.5rem;
}

.private-info-heading {
  margin-bottom: 0.35rem;
  font-size: clamp(1.8rem, 4.6vw, 2.65rem);
}

.patient-info-heading {
  margin-bottom: 0.35rem;
  font-size: clamp(1.45rem, 3.6vw, 2rem);
}

.price-table caption {
  padding: 0 0 0.85rem;
  color: var(--primary);
  font-weight: 800;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.price-table td {
  color: var(--muted);
}

.price-table td:last-child,
.price-table th:last-child {
  width: 9rem;
  text-align: right;
}

.price-table td:last-child {
  color: var(--text);
  font-weight: 800;
}

.price-table tbody tr:nth-child(even) {
  background: var(--soft-blue);
}

.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 800;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(97, 165, 194, 0.23);
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.map-placeholder {
  overflow: hidden;
  min-height: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
}

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

.legal-content {
  display: grid;
  gap: 1.4rem;
}

.legal-page-stack {
  display: grid;
  gap: 2rem;
}

.legal-content h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.legal-content h3 {
  margin-bottom: 0.55rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.legal-content h4 {
  margin: 1rem 0 0.35rem;
  font-size: 1rem;
}

.legal-content ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.notice {
  padding: 1rem;
  background: var(--soft-green);
  border: 1px solid rgba(128, 185, 24, 0.35);
  border-radius: var(--radius);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  color: #dbeafe;
  background: #153344;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  display: grid;
  gap: 0.8rem;
}

.footer-brand strong,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #dbeafe;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  color: #b7cde0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(3, auto);
  }

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

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

  .practice-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    padding: 5.5rem 0;
  }

  .content-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .cta-box {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
  }
}

@media (min-width: 1120px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: 0.62rem 0.72rem;
    font-size: 0.94rem;
  }

  .site-nav .nav-booking {
    display: none;
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .practice-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-grid > .card {
    min-height: 340px;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-grid > .card {
    grid-column: span 2;
  }

  .benefit-grid > .card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .benefit-grid > .card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 767px) {
  .brand-name {
    max-width: 10.5rem;
    font-size: 0.92rem;
  }

  .hero-title-sub {
    white-space: normal;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .contact-form .btn {
    width: 100%;
  }
}
