/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --light:       #EEF0EC;
  --green:       #3D6B4F;
  --green-light: #E6EFE9;
  --green-dark:  #2C5039;
  --black:       #1A1A1A;
  --grey:        #555555;
  --border:      #E0DDD8;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--grey); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--green-dark);
}
.btn-white:hover { background: var(--off-white); }

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); transition: 0.3s; }

/* ── Offer Banner ── */
.offer-banner {
  position: relative;
  z-index: 10;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 18px 20px;
}
.offer-banner h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.offer-banner p { color: rgba(255,255,255,0.9); margin-bottom: 14px; font-size: 1rem; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #E8F0EB 0%, #F7F5F2 50%, #EDF3EE 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 80px 5%;
  position: relative;
  overflow: visible;
}
.hero-visual {
  position: absolute;
  right: -60px;
  top: -90px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  box-shadow: 0 12px 60px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 0;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.hero-content { max-width: 620px; position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.hero h1 { margin-bottom: 20px; color: var(--black); }
.hero p  { font-size: 1.15rem; margin-bottom: 32px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-locations {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
}
.hero-location svg { color: var(--green); flex-shrink: 0; }

/* ── Section base ── */
section { padding: 80px 5%; }
.section-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-intro { max-width: 600px; font-size: 1.05rem; margin-bottom: 48px; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--off-white);
  padding: 40px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-item .number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
}
.trust-item p { font-size: 0.9rem; margin-top: 4px; }

/* ── Conditions ── */
.conditions-section { background: var(--white); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.condition-card {
  background: var(--off-white);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
}
.condition-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.condition-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.condition-card h3 { font-size: 1rem; color: var(--black); padding: 16px; margin: 0; }

/* ── About strip ── */
.about-section {
  background: var(--off-white);
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image .placeholder {
  color: var(--grey);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
.about-content { flex: 1; min-width: 280px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }
.about-content .btn { margin-top: 8px; }

/* ── Reviews ── */
.reviews-section { background: var(--green-light); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.review-stars { color: #F4A817; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-style: italic; color: var(--grey); margin-bottom: 16px; line-height: 1.7; }
.review-author { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; color: var(--black); }
.review-location { font-size: 0.82rem; color: var(--grey); }
.reviews-cta { text-align: center; }

/* ── Locations ── */
.locations-section { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.location-card {
  background: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.location-map {
  width: 100%;
  height: 200px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-info { padding: 28px; }
.location-info h3 { margin-bottom: 16px; font-size: 1.3rem; }
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--grey);
}
.location-detail svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
.location-detail strong { color: var(--black); display: block; font-size: 0.82rem; font-weight: 700; }
.location-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.location-actions .btn { flex: 1; text-align: center; padding: 12px 16px; font-size: 0.88rem; }

/* ── New Patient Offer (full page) ── */
.offer-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 5%;
}
.offer-hero h1 { color: var(--white); margin-bottom: 16px; }
.offer-hero p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; }
.offer-price {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.offer-steps { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.step-card { text-align: center; }
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { margin-bottom: 8px; }

/* ── Team page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}
.team-card { }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light);
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 4px; }
.team-role {
  font-size: 0.85rem;
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.95rem; }

/* ── Book page ── */
.book-hero {
  background: var(--off-white);
  text-align: center;
  padding: 60px 5% 0;
}
.book-hero h1 { margin-bottom: 12px; }
.book-hero p  { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.cliniko-frame {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}
.book-locations {
  background: var(--off-white);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--border);
}
.book-location-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.book-location-card h3 { margin-bottom: 8px; }
.book-location-card p  { font-size: 0.9rem; margin-bottom: 16px; }

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 600; font-family: var(--font-head); margin-bottom: 6px; color: var(--black); }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #E8F0EB 0%, #F7F5F2 100%);
  padding: 60px 5%;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p  { font-size: 1.05rem; max-width: 560px; }

/* ── Footer ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 60px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 60px; margin-bottom: 16px; filter: invert(1); }
.footer-logo p { font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── Conditions page ── */
.conditions-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.condition-full-card {
  background: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.condition-full-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.condition-full-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.condition-full-card .card-body { padding: 28px; }
.condition-full-card h3 { margin-bottom: 10px; }
.condition-full-card p { font-size: 0.93rem; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 5%;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .about-section { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 32px; }
  .hero { padding: 60px 5%; }
  .hero-content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 28px;
  }
  .offer-price { font-size: 3.5rem; }
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-block {
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.about-block img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.about-block-body {
  padding: 36px;
}
.about-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.about-block h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-block p {
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-block p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* Reviews – aggregate badges */
.reviews-aggregate { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.hero-aggregate { justify-content: center; margin-top: 20px; }
.agg-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 14px; font-size: 0.85rem;
}
.agg-badge.large { padding: 10px 20px; font-size: 1rem; }
.agg-stars { color: #f4a400; font-weight: 700; }
.agg-info { color: var(--grey); }

/* Reviews – cards */
.review-card {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: #f4a400; font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem; line-height: 1.7; color: var(--dark);
  flex: 1;
}
.review-footer {
  display: flex; align-items: center; gap: 12px; margin-top: auto;
}
.reviewer-photo {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
}
.review-author { font-weight: 600; font-size: 0.9rem; }
.review-location { font-size: 0.8rem; color: var(--grey); margin-top: 2px; }
.google-badge { width: 16px; height: 16px; margin-left: auto; flex-shrink: 0; opacity: 0.7; }

/* Reviews – full page grid */
.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .reviews-full-grid { grid-template-columns: 1fr; }
}

/* Videos page */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.video-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: var(--light);
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-title {
  padding: 14px 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .videos-grid { grid-template-columns: 1fr; }
}
