/* ============================================================
   JILLIAN LOVE — Dark Luxury Redesign
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --deep:    #0d0d0d;
  --forest:  #111111;
  --mid:     #2e2e2e;
  --plum:    #443749;
  --burgundy: #4a1030;
  --burgundy-dk: #350b22;
  --vibrant: #c9a96e;
  --mint:    #e8c98a;
  --gold:    #c9a96e;
  --gold-lt: #f0ddb0;
  --sunrise: #d4a853;
  --ivory:   #f5f0e8;
  --white:   #ffffff;
  --text:    #1a1a1a;
  --muted:   #5a5a5a;
  --border:  rgba(201, 169, 110, 0.25);

  --font-serif: Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  --max-w: 1160px;
  --narrow: 760px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
p  { font-size: 1.05rem; }
em { font-style: italic; font-family: var(--font-serif); }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.6;
}

/* ---------- Layout ---------- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.container.narrow { max-width: var(--narrow); }
.section-pad { padding: clamp(4rem, 8vw, 8rem) 0; }

/* ---------- Section Label ---------- */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vibrant);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
  letter-spacing: 0.18em;
}
.btn-gold:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  box-shadow: none;
  transform: translateY(-1px);
}

.btn-gold-fill {
  background: var(--gold);
  color: var(--deep);
  border: 1.5px solid var(--gold);
  letter-spacing: 0.18em;
}
.btn-gold-fill:hover {
  background: var(--sunrise);
  border-color: var(--sunrise);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 12px rgba(201,169,110,0.3); }
  50%       { box-shadow: 0 0 28px rgba(201,169,110,0.55), 0 0 50px rgba(212,168,83,0.2); }
}

.btn-outline {
  background: transparent;
  color: var(--mid);
  border-color: var(--vibrant);
}
.btn-outline:hover {
  background: var(--vibrant);
  color: var(--white);
  box-shadow: 0 0 24px rgba(201,169,110,0.4);
}

.btn-full { width: 100%; text-align: center; }

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: rgba(74, 16, 48, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.4s ease;
}
.site-header.scrolled {
  padding: 0.85rem 0;
}

.header-inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.logo-o {
  position: relative;
  display: inline-block;
  color: inherit;
}
.logo-o::after {
  content: '♥';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-family: Georgia, serif;
  font-size: 0.38em;
  line-height: 1;
  color: inherit;
  pointer-events: none;
}
.logo-descriptor {
  font-size: 0.87rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 0.2rem;
}

.main-nav ul { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.6) !important;
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--deep) !important;
  box-shadow: 0 0 20px rgba(201,169,110,0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   HERO — Full-bleed photo background
   ============================================================ */
.hero {
  position: relative;
  height: 68vh;
  min-height: 500px;
  max-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0d0d0d;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.65) 40%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}

.hero-location {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0.9;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero h1 em {
  color: var(--gold-lt);
  display: block;
  font-weight: 300;
  text-shadow: 0 0 40px rgba(240,221,176,0.4);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0; transform: translateX(-50%) scaleY(0.2); }
  50%      { opacity: 1; transform: translateX(-50%) scaleY(1); }
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.philosophy-img-col {
  position: sticky;
  top: 7rem;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(201, 169, 110, 0.45);
}
.services {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.philosophy::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}

.philosophy .lead {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.philosophy-text-col p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  color: var(--deep);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.philosophy-text-col p:last-of-type { margin-bottom: 0; }

.philosophy-mandala {
  width: 100%;
  height: clamp(380px, 48vw, 560px);
  object-fit: contain;
  object-position: center;
  display: block;
}
.philosophy-questions {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--deep);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.philosophy-text-col p.philosophy-closing {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-style: normal;
  color: var(--deep);
  margin-bottom: 0.75rem;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.philosophy blockquote {
  border: none;
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: left;
  background: none;
  border-radius: 0;
  position: relative;
}
.philosophy blockquote::before,
.philosophy blockquote::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 1.5rem;
  opacity: 0.6;
}
.philosophy blockquote::after {
  margin: 1.5rem 0 0;
}
.philosophy blockquote p {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-style: italic;
  color: var(--deep);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.philosophy blockquote cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vibrant);
  font-style: normal;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(160deg, var(--ivory) 0%, #ece5d8 100%);
  position: relative;
}

.services h2 { margin-bottom: 3rem; color: var(--forest); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 0;
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-img {
  height: 210px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 2rem 2.5rem 2.5rem;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,169,110,0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  background: var(--mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 1px rgba(201,169,110,0.2);
  z-index: 1;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover h3 { color: var(--gold-lt); }
.service-card:hover p  { color: rgba(245,240,232,0.75); }
.service-card:hover .service-icon { color: var(--gold-lt); text-shadow: 0 0 16px rgba(240,221,176,0.8); }

.service-icon {
  font-size: 1rem;
  color: var(--vibrant);
  margin-bottom: 1rem;
  display: block;
  transition: color var(--transition), text-shadow var(--transition);
}

.service-card h3 { margin-bottom: 0.75rem; transition: color var(--transition); }
.service-card p  { font-size: 0.95rem; color: var(--muted); transition: color var(--transition); line-height: 1.65; }

.services-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-learn-more {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vibrant);
  transition: color var(--transition), letter-spacing var(--transition);
}
.service-learn-more:hover { color: var(--gold); letter-spacing: 0.22em; }
.service-card:hover .service-learn-more { color: var(--gold-lt); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dk) 0%, var(--deep) 70%);
  padding: 9rem 0 4.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.92);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   SERVICE DETAIL (services.html)
   ============================================================ */
.service-detail { background: var(--ivory); }
.service-detail--alt { background: var(--white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-inner.flip .service-detail-img { order: 2; }
.service-detail-inner.flip .service-detail-content { order: 1; }
.service-detail-inner--no-image { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }

.service-detail-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  display: block;
}

.service-detail-content .section-label { margin-bottom: 0.5rem; }
.service-detail-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 1.25rem;
}
.service-detail-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.55;
}
.service-features li::before {
  content: '✦';
  color: var(--vibrant);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 0.38rem;
}

/* ============================================================
   SERVICES CONTACT CTA (services.html)
   ============================================================ */
.services-contact-cta {
  background: #000;
  text-align: center;
}
.services-contact-cta h2 { color: var(--white); margin-bottom: 1rem; }
.services-contact-cta p {
  color: rgba(255,255,255,0.95);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.cta-quote {
  margin-bottom: 3rem;
  border: none;
  padding: 0;
  background: none;
}
.cta-quote p {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.cta-quote cite {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}


/* ============================================================
   TESTIMONIAL — Carousel
   ============================================================ */
.testimonial {
  background: linear-gradient(160deg, #5c1a38 0%, #350b22 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
  50%      { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

/* rising hearts */
.rising-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.rh {
  position: absolute;
  bottom: -20px;
  color: rgba(210, 110, 160, 1);
  opacity: 0;
  animation: rise-heart linear infinite;
  font-family: Georgia, serif;
  user-select: none;
  text-shadow: 0 0 8px rgba(190,90,140,0.6), 0 0 20px rgba(210,110,160,0.3);
}
.rh:nth-child(1) { left: 8%;  font-size: 22px; animation-duration: 10s; animation-delay: 0s; }
.rh:nth-child(2) { left: 22%; font-size: 18px; animation-duration: 8s;  animation-delay: 2.5s; }
.rh:nth-child(3) { left: 40%; font-size: 26px; animation-duration: 12s; animation-delay: 1s; }
.rh:nth-child(4) { left: 58%; font-size: 20px; animation-duration: 9s;  animation-delay: 4s; }
.rh:nth-child(5) { left: 72%; font-size: 24px; animation-duration: 11s; animation-delay: 0.5s; }
.rh:nth-child(6) { left: 88%; font-size: 19px; animation-duration: 8s;  animation-delay: 3s; }
@keyframes rise-heart {
  0%   { bottom: -20px; opacity: 0;    transform: translateX(0)    rotate(-10deg); }
  12%  {                opacity: 0.85;                                              }
  80%  {                opacity: 0.55;                                              }
  100% { bottom: 105%; opacity: 0;    transform: translateX(18px) rotate(12deg);  }
}

/* Option D: vertical burgundy accent bars */
.accent-bar {
  position: absolute;
  top: 8%;
  width: 3px;
  height: 84%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--burgundy) 15%,
    var(--burgundy) 85%,
    transparent 100%
  );
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}
.accent-bar-left  { left: clamp(12px, 2.5vw, 32px); animation: bar-pulse 4s ease-in-out infinite; }
.accent-bar-right { right: clamp(12px, 2.5vw, 32px); animation: bar-pulse 4s ease-in-out infinite 2s; }

@keyframes bar-pulse {
  0%, 100% {
    opacity: 0.45;
    box-shadow: 0 0 6px rgba(74,16,48,0.5), 0 0 18px rgba(74,16,48,0.2);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 14px rgba(74,16,48,0.9), 0 0 40px rgba(74,16,48,0.5), 0 0 70px rgba(74,16,48,0.25);
  }
}

/* slide change flash — triggered via JS */
.testimonial.bar-flash .accent-bar {
  animation: bar-flash-once 0.6s ease-out forwards;
}
@keyframes bar-flash-once {
  0%   { opacity: 1; box-shadow: 0 0 20px rgba(74,16,48,1), 0 0 60px rgba(74,16,48,0.6); }
  100% { opacity: 0.45; box-shadow: 0 0 6px rgba(74,16,48,0.5); }
}

.testimonial .section-label { color: var(--mint); font-size: 1rem; }

.testimonial-slide { display: none; }
.testimonial-slide.active {
  display: block;
  animation: fadeSlide 0.65s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-quote { margin-top: 1.5rem; position: relative; z-index: 1; }
.testimonial-quote p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}
.testimonial-quote cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-style: normal;
}
.testimonial-quote cite strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-lt);
  letter-spacing: 0.05em;
}
.testimonial-quote cite span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,201,138,0.9);
}

.testimonial-quote::before {
  content: '♥';
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: rgba(190, 90, 140, 1);
  opacity: 0.88;
  line-height: 1;
  margin-bottom: 1rem;
  animation: pulse-heart 2s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%, 100% { transform: scale(1);   opacity: 0.88; }
  50%       { transform: scale(1.25); opacity: 1; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}
.carousel-dot {
  width: auto; height: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 5px;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}
.carousel-dot::before { content: '♥'; display: block; }
.carousel-dot.active { color: var(--gold); transform: scale(1.5); }
.carousel-dot:hover:not(.active) { color: rgba(255,255,255,0.6); }

.review-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.review-badge:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.review-badge-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.review-badge-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.review-badge-stars {
  font-size: 0.85rem;
  color: #FBBC05;
  letter-spacing: 0.05em;
}
.yelp-stars { color: #FF1A1A; }
.review-badge-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  bottom: -200px; left: -100px;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.image-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--ivory), #ece5d8);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(201,169,110,0.1) 0%, transparent 65%);
  animation: pulse 5s ease-in-out infinite;
}
.image-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  display: block;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px rgba(201, 169, 110, 0.45);
}

.about-content h2 { margin-bottom: 1.5rem; color: var(--forest); }
.about-content p { margin-bottom: 1rem; color: var(--muted); }
.about-content p:last-of-type { margin-bottom: 2rem; }
.about-content em { font-size: 1.2rem; color: var(--mid); display: block; }

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.credential-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(74,16,48,0.4);
  border-radius: 2px;
  color: var(--burgundy);
  background: rgba(74,16,48,0.07);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ivory); }
.faq h2 { margin-bottom: 2.5rem; color: var(--deep); }

.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--deep);
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--vibrant); }

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--vibrant);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.faq-answer-inner strong { color: var(--text); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: #000;
  text-align: center;
}
.contact h2 { margin-bottom: 1rem; color: var(--white); }
.contact .lead { margin-bottom: 0.5rem; color: rgba(255,255,255,0.9); }
.contact .form-group label { color: rgba(255,255,255,0.85); }
.contact .btn-outline { color: var(--white); }
.contact-location {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vibrant);
  margin-bottom: 2rem;
}

.contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.toggle-arrow {
  display: inline-block;
  transition: transform 0.35s ease;
  font-size: 1rem;
  line-height: 1;
}
.contact-toggle.open .toggle-arrow { transform: rotate(180deg); }

.contact-form-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form-wrap.open { max-height: 900px; }

.contact-form { text-align: left; margin-top: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  border-radius: 3px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--vibrant);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #c0392b; }

.form-error { font-size: 0.78rem; color: #c0392b; margin-top: 0.3rem; min-height: 1em; }
.form-success { text-align: center; color: var(--mid); font-weight: 700; font-size: 0.9rem; margin-top: 1rem; min-height: 1.5em; }
.contact-form .btn-gold { margin-top: 0.5rem; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.social-links a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), filter var(--transition);
}
.social-links a:hover {
  color: var(--vibrant);
  filter: drop-shadow(0 0 8px rgba(201,169,110,0.6));
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(74, 16, 48, 0.97);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 -2px 30px rgba(0,0,0,0.4);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.footer-brand { display: flex; flex-direction: column; line-height: 1.3; }
.footer-brand .logo-name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.footer-area {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.site-footer nav { display: flex; gap: 2rem; }
.site-footer nav a {
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.93);
  transition: color var(--transition);
}
.site-footer nav a:hover { color: var(--gold); }

.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.5); }


/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
  position: relative;
  background: #000;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, rgba(201,169,110,0.5));
}
.section-divider::before { --dir: right; }
.section-divider::after  { --dir: left; }
.section-divider span {
  color: var(--gold);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  opacity: 0.85;
  padding: 0 1rem;
}


/* ============================================================
   SPROUTS
   ============================================================ */
.sprout-row {
  position: relative;
  height: 0;
  overflow: visible;
  z-index: 2;
}

.sprout {
  position: absolute;
  bottom: 0;
  width: 2px;
  background: var(--vibrant);
  transform-origin: bottom center;
  animation: growStem 2s ease-out forwards;
  opacity: 0;
  border-radius: 1px;
}

.sprout::before,
.sprout::after {
  content: '';
  position: absolute;
  top: -2px;
  width: 12px;
  height: 8px;
  background: var(--vibrant);
  border-radius: 50% 0;
  animation: unfurlLeaf 0.6s ease-out forwards;
  animation-delay: 1.6s;
  opacity: 0;
}
.sprout::before {
  right: 0;
  transform: rotate(-25deg);
  transform-origin: bottom right;
}
.sprout::after {
  left: 0;
  transform: rotate(25deg) scaleX(-1);
  transform-origin: bottom left;
  animation-delay: 1.9s;
}

@keyframes growStem {
  0%   { height: 0; opacity: 0; }
  10%  { opacity: 1; }
  100% { height: var(--stem-h, 28px); opacity: 1; }
}
@keyframes unfurlLeaf {
  0%   { opacity: 0; transform: rotate(0deg) scale(0); }
  100% { opacity: 1; transform: rotate(-25deg) scale(1); }
}

.sprout-a { left: 12%; --stem-h: 24px; animation-delay: 0.5s; }
.sprout-a::before, .sprout-a::after { animation-delay: 2.1s; }
.sprout-a::after { animation-delay: 2.4s; }

.sprout-b { left: 50%; --stem-h: 34px; animation-delay: 1s; }
.sprout-b::before { width: 14px; height: 10px; }
.sprout-b::after  { width: 14px; height: 10px; animation-delay: 2.8s; }
.sprout-b::before { animation-delay: 2.5s; }

.sprout-c { left: 85%; --stem-h: 20px; animation-delay: 1.5s; background: var(--mint); }
.sprout-c::before, .sprout-c::after { background: var(--mint); width: 10px; height: 7px; }
.sprout-c::before { animation-delay: 3.1s; }
.sprout-c::after  { animation-delay: 3.4s; }

.sprout-d { left: 30%; --stem-h: 30px; animation-delay: 0.3s; }
.sprout-d::before, .sprout-d::after { background: var(--gold); }
.sprout-d::before { animation-delay: 1.9s; }
.sprout-d::after  { animation-delay: 2.2s; }

.sprout-e { left: 72%; --stem-h: 22px; animation-delay: 0.8s; background: var(--mint); }
.sprout-e::before, .sprout-e::after { background: var(--mint); width: 10px; height: 6px; }
.sprout-e::before { animation-delay: 2.4s; }
.sprout-e::after  { animation-delay: 2.7s; }


/* ============================================================
   FLOATING LEAF PARTICLES
   ============================================================ */
.leaf-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: leafFloat linear forwards;
}

.leaf::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--vibrant);
  border-radius: 50% 0;
  opacity: 0.4;
}

.leaf.gold::before { background: var(--gold); }
.leaf.mint::before { background: var(--mint); }

@keyframes leafFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.6); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg) scale(0.3); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 400px; }
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail-inner.flip .service-detail-img { order: 0; }
  .service-detail-inner.flip .service-detail-content { order: 0; }
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .philosophy-img-col {
    position: static;
    max-width: 480px;
  }
}

@media (max-width: 700px) {
  .main-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 99;
  }
  .main-nav.open { opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 2.5rem; text-align: center; }
  .main-nav a { font-size: 1rem; color: rgba(255,255,255,0.85); }
  .nav-cta { padding: 0.8rem 2rem; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-content { padding: 1.5rem; }
  .service-card-body { padding: 1.5rem; }
}
