:root {
  --navy: #073763;
  --blue: #0b5d91;
  --light-blue: #eaf6fb;
  --cream: #f7f3ec;
  --wood: #c9a46a;
  --ink: #13212c;
  --muted: #5d6a75;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 55, 99, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,55,99,.08);
}
.nav {
  max-width: 1180px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.brand small { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--navy); color: white !important; padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; }

.section-pad { max-width: 1180px; margin: auto; padding: 90px 22px; }
.hero { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 56px; min-height: 82vh; }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; font-weight: 800; margin: 0 0 16px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: .95; letter-spacing: -.06em; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -.05em; margin-bottom: 20px; }
h3 { font-size: 20px; margin-bottom: 10px; }
.lead { font-size: 20px; line-height: 1.65; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 15px 23px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--navy); color: white; }
.btn-secondary { background: var(--light-blue); color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { background: var(--cream); padding: 10px 14px; border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 13px; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.floating-card { position: absolute; left: 28px; bottom: 28px; background: white; border-radius: 22px; padding: 18px 22px; box-shadow: var(--shadow); }
.floating-card span { display: block; color: var(--muted); margin-top: 4px; }

.logos-strip { padding-top: 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-stat { background: var(--cream); border-radius: 22px; padding: 26px; }
.mini-stat strong { font-size: 34px; color: var(--navy); display: block; }
.mini-stat span { color: var(--muted); font-weight: 600; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.section-intro p { color: var(--muted); line-height: 1.7; font-size: 18px; }
.centre { text-align: center; max-width: 760px; margin: auto; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { padding: 30px; background: white; border: 1px solid rgba(7,55,99,.09); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(7,55,99,.06); }
.service-card span { color: var(--wood); font-weight: 900; }
.service-card p { color: var(--muted); line-height: 1.7; }

.image-band { position: relative; min-height: 600px; display: grid; place-items: center; overflow: hidden; }
.image-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,55,99,.78), rgba(7,55,99,.18)); }
.band-copy { position: relative; z-index: 1; max-width: 1180px; width: 100%; padding: 90px 22px; color: white; }
.band-copy p { max-width: 520px; line-height: 1.7; font-size: 18px; }
.band-copy .eyebrow { color: #bfe9ff; }

.clinic-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; }
.clinic-copy p, .clean-list { color: var(--muted); line-height: 1.8; }
.clean-list { padding-left: 20px; font-weight: 700; }
.clinic-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.clinic-photos img { height: 420px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.clinic-photos img:first-child { transform: translateY(40px); }

.team-section { background: var(--light-blue); max-width: none; }
.team-section .section-intro, .team-photo { max-width: 1180px; margin-left: auto; margin-right: auto; }
.team-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; max-height: 680px; object-fit: cover; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid div { background: var(--navy); color: white; border-radius: var(--radius); padding: 28px; }
.process-grid strong { width: 42px; height: 42px; border-radius: 50%; background: white; color: var(--navy); display: grid; place-items: center; margin-bottom: 22px; }
.process-grid p { color: rgba(255,255,255,.75); line-height: 1.7; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.gallery-grid img { height: 280px; width: 100%; object-fit: cover; border-radius: 22px; }
.testimonial-section { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial { background: var(--cream); padding: 38px; border-radius: var(--radius); }
.testimonial p { font-size: 24px; line-height: 1.45; }
.testimonial strong { color: var(--navy); }

.contact-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-copy p { color: var(--muted); line-height: 1.7; }
.contact-details { margin-top: 28px; padding: 24px; background: var(--light-blue); border-radius: 22px; }
.contact-form { background: white; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; display: grid; gap: 18px; }
label { font-weight: 800; color: var(--navy); display: grid; gap: 8px; }
input, select, textarea { width: 100%; border: 1px solid rgba(7,55,99,.18); border-radius: 16px; padding: 15px; font: inherit; color: var(--ink); }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.6; }
.footer { max-width: 1180px; margin: auto; padding: 34px 22px; border-top: 1px solid rgba(7,55,99,.1); display: flex; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer strong { color: var(--navy); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; border: 0; background: var(--light-blue); color: var(--navy); border-radius: 999px; padding: 11px 16px; font-weight: 800; }
  .nav-links { position: absolute; top: 79px; left: 16px; right: 16px; background: white; box-shadow: var(--shadow); border-radius: 22px; padding: 18px; flex-direction: column; align-items: stretch; display: none; }
  .nav-links.open { display: flex; }
  .hero, .split, .clinic-grid, .contact-section, .testimonial-section { grid-template-columns: 1fr; }
  .logos-strip, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .clinic-photos img:first-child { transform: none; }
}

@media (max-width: 560px) {
  .section-pad { padding: 64px 18px; }
  .hero { gap: 32px; min-height: auto; }
  .lead { font-size: 17px; }
  .logos-strip, .service-grid, .process-grid, .clinic-photos, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .clinic-photos img { height: 260px; }
  .floating-card { position: static; margin-top: 14px; }
  .footer { flex-direction: column; }
}
