/* Health Clinic Waverton — design system fidèle au site WordPress d'origine (palette extraite du CSS Elementor live, 16/09/2026) */

:root {
  --navy: #2f3e46;
  --olive: #8a9a5b;
  --cream: #f2efe9;
  --red: #ed1a28;
  --text: #262525;
  --text-light: #585656;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Marcellus', serif;
  color: var(--navy);
  line-height: 1.25;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive); }

p { color: var(--text-light); }

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.site-header .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  display: block;
}
.site-header .logo span {
  display: block;
  color: var(--red);
  font-style: italic;
  text-transform: lowercase;
  font-size: 1.1rem;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-menu a { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.nav-menu a:hover { color: var(--olive); }
.nav-menu .has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 4px;
  overflow: hidden;
  z-index: 10;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a { color: var(--text); display: block; padding: 12px 18px; font-weight: 500; }
.dropdown a:hover { background: var(--cream); }
.btn-book {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
}
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 14px;
  }
  .nav-menu.open { display: flex; }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown { position: static; box-shadow: none; display: none; }
  .has-dropdown.open .dropdown { display: block; background: rgba(255,255,255,0.06); }
}

/* Hero */
.hero {
  background: var(--cream);
  padding-block: 72px;
}
.hero .container { max-width: 760px; text-align: center; }
.hero p { font-size: 1.1rem; margin-block: 20px; }

.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

/* Section generic */
section { padding-block: 64px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head p { margin-top: 12px; }

/* Cards grid (services / packages) */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid #eceae4;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 16px; font-size: 0.95rem; }
.card a { color: var(--olive); font-weight: 700; font-size: 0.9rem; }

/* Who we are / two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: 8px; }
.highlight-row { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.highlight-row h3 { font-size: 1.1rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card { text-align: center; }
.team-card img { border-radius: 8px; aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.team-card h2 { font-size: 1.3rem; margin-top: 16px; }
.team-card p { font-size: 0.9rem; }

/* Testimonials */
.testimonial {
  background: var(--cream);
  text-align: center;
  padding: 56px 24px;
}
.testimonial blockquote {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-style: italic;
}
.testimonial cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 700;
  color: var(--olive);
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #d8dee2; margin-block: 14px 28px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Breadcrumb / page header */
.page-header {
  background: var(--cream);
  padding-block: 48px;
  text-align: center;
}
.breadcrumb { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; }
.breadcrumb a { color: var(--olive); }

/* Service detail layout */
.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) { .service-layout { grid-template-columns: 1fr; } }
.service-sidebar {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px;
}
.service-sidebar h4 { margin-bottom: 14px; }
.service-sidebar ul { list-style: none; }
.service-sidebar li { margin-bottom: 10px; }
.service-sidebar a { color: var(--text); font-weight: 600; }
.service-sidebar a:hover { color: var(--red); }
.service-highlight { margin-bottom: 22px; }
.service-highlight h4 { color: var(--navy); text-transform: none; letter-spacing: 0; font-size: 1.05rem; margin-bottom: 6px; }

/* Packages */
.pack-card {
  background: var(--white);
  border: 1px solid #eceae4;
  border-radius: 8px;
  padding: 36px 28px;
}
.pack-card ul { list-style: none; margin-block: 20px; }
.pack-card li { padding: 6px 0; color: var(--text-light); position: relative; padding-left: 24px; }
.pack-card li::before { content: '✓'; color: var(--olive); position: absolute; left: 0; font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid #eceae4; padding: 20px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* Contact form */
.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d8d4cc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-info-list { list-style: none; }
.contact-info-list li { margin-bottom: 12px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #cfd6d9;
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: var(--olive); }
.footer-social { display: flex; gap: 14px; margin-top: 8px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid #4a5a63;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #445159;
  font-size: 0.85rem;
  color: #9aa6ab;
}
