:root {
  --brand: #b2a085;
  --brand-dark: #9a886c;
  --brand-light: #d8cdb9;
  --navy: #112337;
  --ink: #333333;
  --muted: #666666;
  --bg-soft: #f7f5f1;
}

* { box-sizing: border-box; }

html, body {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

a { color: var(--brand-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand); }

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--brand); }
.topbar-right a {
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  margin-left: 6px;
}
.topbar-right a:hover { background: rgba(255,255,255,0.1); }

/* Nav */
.site-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 12px 0;
}
.site-nav .nav-link {
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 10px 14px !important;
  position: relative;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--brand) !important; }
.site-nav .dropdown-menu {
  border: none;
  border-top: 3px solid var(--brand);
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 8px 0;
}
.site-nav .dropdown-item {
  padding: 10px 20px;
  color: var(--ink);
}
.site-nav .dropdown-item:hover {
  background: var(--bg-soft);
  color: var(--brand-dark);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f7f5f1 0%, #ffffff 100%);
  overflow: hidden;
  padding: 80px 0;
}
.hero-title {
  color: var(--navy);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.25em;
}
.hero-title strong { font-weight: 700; }
.hero-subtitle {
  color: var(--brand-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(17,35,55,0.15);
  width: 100%;
  height: auto;
}

/* Buttons */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 0;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .25s;
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(178,160,133,0.4);
}
.btn-outline-brand {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand);
  border-radius: 0;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .25s;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.cta-band h2 strong { color: var(--brand); font-weight: 700; }

/* Contact section */
.contact-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.contact-card {
  background: #fff;
  padding: 40px;
  border-top: 4px solid var(--brand);
}
.contact-card h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.contact-card p {
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.contact-card i {
  color: var(--brand);
  width: 24px;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: #fff;
}
.footer-title {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.site-footer p { color: rgba(255,255,255,0.85); }
.footer-social a {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 16px;
  transition: color .2s;
}
.footer-social a:hover { color: var(--brand); }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  z-index: 1000;
  transition: transform .2s;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Form */
.form-control, .form-select {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(178,160,133,0.15);
}

/* Page banner (interior hero) */
.page-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}
.page-banner h1 {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0;
}
.tracked { letter-spacing: 0.4em; text-transform: uppercase; }
.page-banner .breadcrumbs {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brand);
}
.page-banner .breadcrumbs a { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumbs a:hover { color: var(--brand); }

/* Treatment / service tile */
.svc-tile {
  background: #fff;
  border: 1px solid #eee;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.svc-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.08);
}
.svc-tile img { width: 100%; height: 240px; object-fit: cover; }
.svc-tile .body { padding: 24px; }
.svc-tile h4 {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: .5rem;
}
.svc-tile p { color: var(--muted); font-size: 14px; margin: 0; }

/* Bio block */
.bio-card {
  background: #fff;
  padding: 30px;
  border-left: 4px solid var(--brand);
  height: 100%;
}
.bio-card h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.bio-card .role {
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Principle card */
.principle {
  text-align: center;
  padding: 24px;
}
.principle .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.principle h5 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Section title helper */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  color: var(--navy);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.section-title h2 strong { font-weight: 700; color: var(--brand-dark); }
.section-title .lead-line {
  width: 60px;
  height: 3px;
  background: var(--brand);
  margin: 16px auto;
}

@media (max-width: 991px) {
  .hero { padding: 50px 0; }
  .site-nav .navbar-nav { padding: 16px 0; }
  .site-nav .nav-link { padding: 10px 0 !important; }
}
