/* =========================================================
   SALON ÉVOLUTION — Zen & Organic design system
   ========================================================= */

:root {
  --sage: #8a9a7b;
  --sage-dark: #5f6b54;
  --sage-light: #b5c1a4;
  --cream: #f7f2ea;
  --cream-warm: #ebe0d0;
  --terracotta: #c08a6e;
  --terracotta-dark: #a06a4e;
  --forest: #2e3d2f;
  --stone: #7a7469;
  --white-soft: #fbf8f3;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 48px;

  --shadow-soft: 0 10px 40px -15px rgba(46, 61, 47, 0.15);
  --shadow-medium: 0 20px 60px -20px rgba(46, 61, 47, 0.2);

  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--forest);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.lead {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 600px;
  line-height: 1.75;
}

/* =========================================================
   Layout
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header .lead {
  margin: 1rem auto 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-terracotta {
  background: var(--terracotta);
  color: var(--white-soft);
}
.btn-terracotta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* =========================================================
   Navigation
   ========================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: padding var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 234, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}
.navbar.scrolled {
  padding: 0.9rem 0;
  border-bottom-color: rgba(138, 154, 123, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}
.brand img {
  display: block;
  height: 60px;
  width: auto;
  transition: height var(--transition);
}
.navbar.scrolled .brand img { height: 48px; }
@media (max-width: 560px) {
  .brand img { height: 52px; }
  .navbar.scrolled .brand img { height: 42px; }
}
.brand span {
  color: var(--terracotta);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--forest);
  transition: all var(--transition);
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 4px; }

body.nav-open .nav-toggle span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 11rem 0 6rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-content h1 {
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-content .lead {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 30% 30% / 40% 40% 20% 20%;
  box-shadow: var(--shadow-medium);
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--cream-warm);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.hero-badge::before {
  content: "🌿";
  font-size: 1.5rem;
}

.hero-decor {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.35;
  z-index: -1;
  filter: blur(30px);
}

/* =========================================================
   Sections — Intro / Values
   ========================================================= */
.values {
  background: var(--white-soft);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.value-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--cream);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.value-card h3 {
  margin-bottom: 0.75rem;
}
.value-card p {
  color: var(--stone);
  font-size: 0.95rem;
}

/* =========================================================
   Services preview
   ========================================================= */
.services-preview {
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); }
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover img { transform: scale(1.08); }

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 61, 47, 0.85) 100%);
}
.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: var(--cream);
  z-index: 1;
}
.service-card-content h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.service-card-content p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}
.service-card-content .price {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
}

/* =========================================================
   About split section
   ========================================================= */
.about-split {
  background: var(--cream-warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-images {
  position: relative;
  aspect-ratio: 1/1;
}
.about-img-main, .about-img-secondary {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-img-main {
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
}
.about-img-secondary {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border: 8px solid var(--cream-warm);
}
.about-img-main img, .about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}
.about-content p {
  margin-bottom: 1.25rem;
  color: var(--stone);
}
.about-signature {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage-dark);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials h2 { color: var(--cream); }
.testimonials .eyebrow { color: var(--sage-light); }
.testimonials .lead { color: rgba(247, 242, 234, 0.75); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(247, 242, 234, 0.05);
  border: 1px solid rgba(247, 242, 234, 0.1);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.testimonial-card .stars {
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--cream);
}
.testimonial-author {
  font-size: 0.9rem;
  color: var(--sage-light);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* =========================================================
   Pricing table
   ========================================================= */
.pricing-categories {
  display: grid;
  gap: 3rem;
}
.pricing-category h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sage-light);
  color: var(--sage-dark);
  font-size: 1.7rem;
}
.pricing-list {
  display: grid;
  gap: 0.25rem;
}
.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(138, 154, 123, 0.25);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest);
}
.pricing-desc {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--stone);
  margin-top: 0.2rem;
}
.pricing-dots {
  flex: 1;
  border-bottom: 1px dotted var(--sage-light);
  margin-bottom: 0.3rem;
  min-width: 20px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--terracotta);
  font-style: italic;
  white-space: nowrap;
}

/* =========================================================
   Contact / Map
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info {
  padding: 2.5rem;
  background: var(--white-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(138, 154, 123, 0.15);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: var(--sage-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.2rem;
}
.contact-item-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest);
}
.contact-item-value a:hover { color: var(--terracotta); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1/1;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: hue-rotate(20deg) saturate(0.85);
}

/* =========================================================
   CTA Banner
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--cream);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 8vw, 6rem) 2rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(247, 242, 234, 0.08);
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(247, 242, 234, 0.85); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn {
  background: var(--cream);
  color: var(--forest);
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  position: relative;
}
.cta-banner .btn:hover {
  background: var(--terracotta);
  color: var(--cream);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h4 {
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer .brand { color: var(--cream); margin-bottom: 1rem; display: block; }
.footer .brand img { height: 76px; width: auto; }
.footer-about p {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-social {
  margin-top: 1.25rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(247, 242, 234, 0.06);
  border: 1px solid rgba(247, 242, 234, 0.18);
  color: rgba(247, 242, 234, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
  transform: translateY(-2px);
}
.footer-social svg { flex-shrink: 0; }
.contact-item-icon svg { display: block; }
.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-hours p {
  font-size: 0.92rem;
  color: rgba(247, 242, 234, 0.7);
  line-height: 1.8;
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.5);
}

/* =========================================================
   Floating appointment button (sticky CTA mobile)
   ========================================================= */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--terracotta);
  color: var(--cream);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(192, 138, 110, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.fab.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab:hover { transform: translateY(-3px) scale(1.03); }

/* =========================================================
   Page header (non-home pages)
   ========================================================= */
.page-header {
  padding: 11rem 0 4rem;
  background: var(--cream-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.4;
  top: -200px;
  right: -150px;
}
.page-header h1 {
  margin-bottom: 1rem;
  position: relative;
}
.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--stone);
  font-size: 1.1rem;
  position: relative;
}

/* =========================================================
   Services detail cards
   ========================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 6rem;
}
.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-content h2 {
  margin-bottom: 1.5rem;
}
.service-detail-content ul {
  list-style: none;
  margin-top: 1.5rem;
}
.service-detail-content li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--stone);
  border-bottom: 1px solid rgba(138, 154, 123, 0.15);
}
.service-detail-content li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}
.service-detail-content li strong {
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .hero { padding: 8rem 0 4rem; }
  .hero-visual { max-width: 420px; margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--cream);
    flex-direction: column;
    padding: 6rem 2.5rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-medium);
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-cta .btn:not(.btn-mobile-show) { display: none; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .hero-badge { left: 0; bottom: -30px; font-size: 0.8rem; padding: 1rem; }
  .fab { padding: 0.85rem 1.25rem; font-size: 0.75rem; }
  .cta-banner .btn {
    white-space: normal;
    text-align: center;
    padding: 0.85rem 1.5rem;
    letter-spacing: 0.06em;
  }
}

/* =========================================================
   Theme toggle button
   ========================================================= */
.theme-toggle {
  background: rgba(247, 242, 234, 0.06);
  border: 1px solid rgba(247, 242, 234, 0.18);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  margin-top: 1.25rem;
}
.theme-toggle:hover {
  background: rgba(247, 242, 234, 0.14);
  border-color: rgba(247, 242, 234, 0.32);
}
.theme-toggle .icon { font-size: 1rem; line-height: 1; }
.theme-toggle .label-dark,
.theme-toggle .label-light { display: none; }
:root[data-theme="light"] .theme-toggle .label-dark { display: inline; }
:root[data-theme="light"] .theme-toggle .icon::before { content: "🌙"; }
:root[data-theme="dark"] .theme-toggle .label-light { display: inline; }
:root[data-theme="dark"] .theme-toggle .icon::before { content: "☀️"; }

/* =========================================================
   Leaflet map container
   ========================================================= */
.map-wrap {
  position: relative;
}
#map {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  z-index: 1;
}
.leaflet-container {
  font-family: var(--font-sans);
  background: var(--cream-warm);
}
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
  background: var(--white-soft);
  color: var(--forest);
  box-shadow: var(--shadow-medium);
}
.leaflet-popup-content {
  font-family: var(--font-sans);
  margin: 14px 18px;
}
.leaflet-popup-content strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--forest);
}
.leaflet-popup-tip { background: var(--white-soft); }
.leaflet-control-attribution {
  background: rgba(247, 242, 234, 0.85) !important;
  color: var(--stone) !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: var(--sage-dark) !important; }
.leaflet-control-zoom a {
  background: var(--white-soft) !important;
  color: var(--forest) !important;
  border: none !important;
}
.leaflet-control-zoom a:hover { background: var(--cream-warm) !important; }

/* Custom marker pin */
.marker-pin {
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  transform: rotate(-45deg);
  border: 3px solid var(--white-soft);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-pin::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white-soft);
}

/* =========================================================
   DARK MODE
   ========================================================= */
:root[data-theme="dark"] {
  --sage: #a8b894;
  --sage-dark: #7d8b6b;
  --sage-light: #3d4a37;
  --cream: #1a211d;
  --cream-warm: #242d27;
  --terracotta: #d9a486;
  --terracotta-dark: #c08a6e;
  --forest: #ece7dc;
  --stone: #9a988f;
  --white-soft: #242d27;

  --shadow-soft: 0 10px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-medium: 0 20px 60px -20px rgba(0, 0, 0, 0.6);

  color-scheme: dark;
}

:root[data-theme="dark"] body {
  background: var(--cream);
  color: var(--forest);
}
:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4 { color: var(--forest); }

:root[data-theme="dark"] .navbar {
  border-bottom-color: transparent;
}
:root[data-theme="dark"] .navbar::before {
  background: rgba(26, 33, 29, 0.82);
}
:root[data-theme="dark"] .navbar.scrolled {
  border-bottom-color: rgba(168, 184, 148, 0.15);
}

:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .nav-links a { color: var(--forest); }
:root[data-theme="dark"] .nav-toggle span { background: var(--forest); }

:root[data-theme="dark"] .btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}
:root[data-theme="dark"] .btn-primary:hover { background: var(--terracotta-dark); }
:root[data-theme="dark"] .btn-outline {
  color: var(--forest);
  border-color: var(--forest);
}
:root[data-theme="dark"] .btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

:root[data-theme="dark"] .values,
:root[data-theme="dark"] .about-split,
:root[data-theme="dark"] .page-header {
  background: #151b17;
}
:root[data-theme="dark"] .value-card { background: var(--cream-warm); }
:root[data-theme="dark"] .hero-badge { background: var(--cream-warm); color: var(--forest); }
:root[data-theme="dark"] .about-img-secondary { border-color: #151b17; }

:root[data-theme="dark"] .service-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.92) 100%);
}
:root[data-theme="dark"] .service-card-content h3,
:root[data-theme="dark"] .service-card-content p,
:root[data-theme="dark"] .service-card-content .price { color: #ece7dc; }

:root[data-theme="dark"] .testimonials { background: #0f1411; }
:root[data-theme="dark"] .testimonials h2,
:root[data-theme="dark"] .testimonial-card p { color: #ece7dc; }
:root[data-theme="dark"] .testimonials .lead { color: rgba(236, 231, 220, 0.72); }
:root[data-theme="dark"] .testimonial-card {
  background: rgba(236, 231, 220, 0.04);
  border-color: rgba(236, 231, 220, 0.08);
}
:root[data-theme="dark"] .testimonial-author { color: var(--sage); }

:root[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #3d4a37 0%, #2a3530 100%);
}
:root[data-theme="dark"] .cta-banner h2,
:root[data-theme="dark"] .cta-banner p { color: #ece7dc; }
:root[data-theme="dark"] .cta-banner .btn {
  background: var(--terracotta);
  color: var(--cream);
}
:root[data-theme="dark"] .cta-banner .btn:hover {
  background: var(--cream);
  color: var(--forest);
}

:root[data-theme="dark"] .pricing-category h3 {
  color: var(--sage);
  border-bottom-color: var(--sage-light);
}
:root[data-theme="dark"] .pricing-row { border-bottom-color: rgba(168, 184, 148, 0.2); }
:root[data-theme="dark"] .pricing-dots { border-bottom-color: var(--sage-light); }
:root[data-theme="dark"] .pricing-name { color: var(--forest); }

:root[data-theme="dark"] .contact-info { background: var(--cream-warm); }
:root[data-theme="dark"] .contact-item { border-bottom-color: rgba(168, 184, 148, 0.15); }
:root[data-theme="dark"] .contact-item-icon {
  background: var(--sage-light);
  color: var(--sage);
}

:root[data-theme="dark"] .footer {
  background: #0f1411;
  color: #ece7dc;
}
:root[data-theme="dark"] .footer h4,
:root[data-theme="dark"] .footer .brand { color: #ece7dc; }
:root[data-theme="dark"] .footer-about p,
:root[data-theme="dark"] .footer-links a,
:root[data-theme="dark"] .footer-hours p { color: rgba(236, 231, 220, 0.65); }
:root[data-theme="dark"] .footer-links a:hover { color: var(--terracotta); }
:root[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(236, 231, 220, 0.1);
  color: rgba(236, 231, 220, 0.45);
}

:root[data-theme="dark"] .service-detail-content li {
  border-bottom-color: rgba(168, 184, 148, 0.15);
}
:root[data-theme="dark"] .value-icon {
  background: var(--sage-light);
  color: var(--sage);
}

:root[data-theme="dark"] .leaflet-container { background: #1a211d; }
:root[data-theme="dark"] .leaflet-popup-content-wrapper,
:root[data-theme="dark"] .leaflet-popup-tip { background: var(--cream-warm); color: var(--forest); }
:root[data-theme="dark"] .leaflet-control-attribution {
  background: rgba(26, 33, 29, 0.85) !important;
  color: rgba(236, 231, 220, 0.6) !important;
}
:root[data-theme="dark"] .leaflet-control-attribution a { color: var(--sage) !important; }
:root[data-theme="dark"] .leaflet-control-zoom a {
  background: var(--cream-warm) !important;
  color: var(--forest) !important;
}

/* Smooth theme transitions */
body, .navbar, .value-card, .service-card, .testimonial-card,
.contact-info, .footer, .cta-banner, .btn, .page-header,
.values, .about-split, .testimonials {
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
