/* ============================================================
   CSS VARIABLES — change only these to retheme for a new client
   ============================================================ */
:root {
  /* Brand — swap these per client */
  --primary:        #eb3c8d;
  --primary-dark:   #ec0a7f;
  --accent:         #C9A96E;
  --secondary:      #2D2040;

  /* Surfaces — light mode */
  --bg:             #FFFAF8;
  --bg-alt:         #FFF2EC;
  --text:           #2D2040;
  --text-muted:     #9B8FA0;
  --border:         #F0E4EA;

  /* Typography */
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Jost', system-ui, sans-serif;

  /* Shape */
  --radius:         14px;
  --radius-sm:      8px;
  --shadow-sm:      0 2px 16px rgba(45,32,64,.06);
  --shadow-md:      0 8px 36px rgba(45,32,64,.10);
  --shadow-lg:      0 24px 64px rgba(45,32,64,.15);
  --transition:     .35s ease;
  --section-gap:    110px;
}

/* Dark mode overrides — only surfaces change, brand colors stay */
[data-theme="dark"] {
  --bg:             #18141F;
  --bg-alt:         #221B2E;
  --text:           #F5EEF8;
  --text-muted:     #B09CC0;
  --border:         #3A2E48;
  --shadow-sm:      0 2px 16px rgba(0,0,0,.35);
  --shadow-md:      0 8px 36px rgba(0,0,0,.45);
  --shadow-lg:      0 24px 64px rgba(0,0,0,.55);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

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

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section.section {
  padding: var(--section-gap) 0;
}

section.section.section--alt {
  background: var(--bg-alt);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  padding: .85rem 0;
}

[data-theme="dark"] .navbar.scrolled {
  background: var(--bg);
}

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

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.navbar.hero-overlap .navbar-brand { color: #fff; }
.navbar.hero-overlap .nav-link     { color: rgba(255,255,255,.85); }
.navbar.hero-overlap .nav-link:hover { color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--primary); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { color: var(--primary); background: rgba(196,117,154,.1); }
.navbar.hero-overlap .theme-toggle { color: rgba(255,255,255,.85); }
.theme-toggle svg { width: 20px; height: 20px; }

[data-theme="light"] .icon-sun,
[data-theme="dark"]  .icon-moon { display: none; }

/* CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,117,154,.35);
}

/* Mobile nav */
.nav-close-item { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .35rem;
  color: var(--text);
}
.navbar.hero-overlap .hamburger { color: #fff; }
.hamburger svg { width: 24px; height: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #2D2040 0%, #4A2545 45%, #7A3560 75%, #C4759A 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,32,64,.82) 0%, rgba(45,32,64,.55) 60%, rgba(45,32,64,.3) 100%);
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,117,154,.25), transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.18), transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: 100vh;
  gap: 0;
}

.hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem 0;
}

/* ── Hero portrait ── */
.hero-portrait-wrap {
  position: relative;
  overflow: hidden;
  align-self: stretch;
  margin-right: -2rem; /* bleed to container edge */
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 100vh;
}

/* Left-edge fade: portrait blends into hero background */
.hero-portrait-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(45,32,64,1) 0%, rgba(45,32,64,.55) 20%, transparent 45%),
    linear-gradient(to top, rgba(45,32,64,.65) 0%, transparent 28%);
  z-index: 1;
  pointer-events: none;
}

.hero-portrait-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, rgba(235,60,141,.06) 0%, rgba(45,32,64,.3) 100%);
  border-left: 1.5px dashed rgba(235,60,141,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: rgba(255,255,255,.22);
  font-size: .78rem;
  letter-spacing: .07em;
  text-align: center;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(196,117,154,.4);
  color: #fff;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 400;
  transition: border-color var(--transition), background var(--transition);
}
.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  z-index: 0;
  transition: border-color var(--transition);
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/5;
  background: var(--bg-alt);
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}

.about-body { max-width: 500px; }
.about-body .section-title { margin-bottom: 1.5rem; }
.about-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-header { text-align: center; margin-bottom: 2rem; }
.services-header .section-subtitle { margin: 0 auto; }

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .45rem 1.2rem;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-btn--active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.filter-btn--active:hover {
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-card-image {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }

/* Placeholder when no image uploaded */
.service-card-image--placeholder {
  background: linear-gradient(145deg, var(--primary) 0%, #7A3060 55%, var(--secondary) 100%);
}
.service-card-image--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,169,110,.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.1) 0%, transparent 50%);
}
.svc-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  z-index: 1;
}
.svc-placeholder-initial {
  position: absolute;
  bottom: -.25em;
  right: .15em;
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,.1);
  user-select: none;
  z-index: 0;
  letter-spacing: -.02em;
}

.service-card-body { padding: 1.5rem; }

.service-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .5rem;
}

.service-card-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card-price {
  font-size: .875rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .02em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-header { text-align: center; margin-bottom: 3.5rem; }

/* Masonry via CSS columns */
.gallery-grid {
  columns: 4;
  column-gap: .9rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: .9rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg-alt);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,32,64,.75) 0%, rgba(45,32,64,.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: .9rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,.9);
  width: 28px; height: 28px;
}

.gallery-item-caption-text {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .02em;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Gallery item placeholder when no image uploaded */
.gallery-item--placeholder {
  cursor: default;
  min-height: 180px;
}
.gallery-item--placeholder:hover img { transform: none; }

.gallery-item-ph {
  width: 100%;
  min-height: 180px;
  background: linear-gradient(145deg, var(--bg-alt) 0%, var(--border) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.25rem .75rem;
  color: var(--text-muted);
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.45;
}
.gallery-item-ph svg { opacity: .3; flex-shrink: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-header { text-align: center; margin-bottom: 3.5rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-quote {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--border);
  font-style: italic;
  user-select: none;
  transition: color var(--transition);
}
.review-card:hover .review-quote { color: var(--accent); }

.stars { color: var(--accent); font-size: 1rem; display: flex; gap: .1rem; }
.star.filled { color: var(--accent); }
.star       { color: var(--border); }

.review-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1rem 0 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.review-avatar-placeholder {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 500;
  font-size: .9rem;
}

/* ============================================================
   FAQs
   ============================================================ */
.faqs-inner { max-width: 720px; margin: 0 auto; }
.faqs-header { text-align: center; margin-bottom: 3.5rem; }

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .3s ease;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

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

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: .975rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.location-map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .75rem;
  color: var(--text-muted);
}

.location-info .section-title { margin-bottom: 1.5rem; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: .975rem;
}
.location-detail svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--primary);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.hours-table td { padding: .45rem 0; font-size: .9rem; }
.hours-table td:first-child { color: var(--text); font-weight: 500; padding-right: 1.5rem; }
.hours-table td:last-child  { color: var(--text-muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--secondary);
  color: #fff;
}
[data-theme="dark"] .contact-section {
  background: #0f0c18;
}

.contact-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-inner .section-title { color: #fff; margin-bottom: 1rem; }
.contact-inner .section-subtitle { color: rgba(255,255,255,.65); margin: 0 auto 2.5rem; }

.contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 500;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.contact-btn:hover { transform: translateY(-2px); }

.contact-btn--primary {
  background: var(--primary);
  color: #fff;
}
.contact-btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(196,117,154,.4);
  color: #fff;
}

.contact-btn--ghost {
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
}
.contact-btn--ghost:hover {
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Contact form */
.contact-form {
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Contact email row */
.contact-email {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.contact-email-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-weight: 500;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.contact-email-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.contact-email-link svg { opacity: .7; flex-shrink: 0; }
.contact-email-link:hover svg { opacity: 1; }

/* Footer email */
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .5rem;
  margin-bottom: .75rem;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}
.footer-email:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.footer-email svg { flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: .5rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: .5rem;
}

.footer-tagline {
  font-size: .875rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-social {
  display: flex;
  gap: .85rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(196,117,154,.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }

  .gallery-grid { columns: 2; }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.5rem;
  }

  .nav-links.open .nav-link { font-size: 1.25rem; }

  .navbar.hero-overlap.nav-open .nav-links { background: var(--secondary); }

  /* Close button inside mobile menu */
  .nav-links.open .nav-close-item { display: list-item; list-style: none; }
  .nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: .35rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }
  .nav-close:hover { background: var(--border); }
  .navbar.hero-overlap.nav-open .nav-close { color: #fff; }
  .navbar.hero-overlap.nav-open .nav-close:hover { background: rgba(255,255,255,.12); }

  .navbar-actions .btn-cta { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
    min-height: 100vh;
    gap: 0;
  }
  .hero-portrait-wrap {
    order: -1;
    margin-right: 0;
    min-height: 280px;
  }
  .hero-portrait { min-height: 280px; object-position: center 20%; }
  .hero-portrait-wrap::before {
    background: linear-gradient(to bottom, rgba(45,32,64,.15) 0%, rgba(45,32,64,1) 92%);
  }
  .hero-content {
    text-align: center;
    padding: 2rem 0 4rem;
    justify-content: flex-start;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-cta-group { justify-content: center; }

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

@media (max-width: 540px) {
  :root { --section-gap: 64px; }
  .container { padding: 0 1.25rem; }
  .gallery-grid { columns: 2; column-gap: .5rem; }
  .gallery-item { margin-bottom: .5rem; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PAGE HERO (inner pages — services, gallery)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #2D2040 0%, #4A2545 45%, #7A3560 75%, #C4759A 100%);
  padding: 7rem 0 3.5rem;
  text-align: center;
}

.page-hero .section-label { color: var(--accent); }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #fff;
  margin-top: .5rem;
}

/* ============================================================
   SERVICES TOOLBAR (filter + search row)
   ============================================================ */
.services-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.services-toolbar .services-filter { margin-bottom: 0; }

.services-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.services-search-wrap svg {
  position: absolute;
  left: .85rem;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.services-search {
  padding: .48rem 1rem .48rem 2.4rem;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .85rem;
  width: 220px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.services-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(235,60,141,.12);
}

.services-search::placeholder { color: var(--text-muted); }

/* ============================================================
   NO RESULTS / EMPTY STATE
   ============================================================ */
.no-results {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 0;
  font-size: 1rem;
}

/* ============================================================
   VIEW ALL LINK
   ============================================================ */
.section-view-all {
  text-align: center;
  margin-top: 3rem;
}

.section-view-all a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.section-view-all a:hover { border-color: var(--primary); }

/* ============================================================
   ACTIVE NAV LINK (inner pages)
   ============================================================ */
.nav-link--active { color: var(--primary) !important; }

/* ============================================================
   LIGHTBOX — prev/next navigation
   ============================================================ */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease;
  z-index: 2;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.28); }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  max-width: 90vw;
}

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity .18s ease;
}

.lightbox-img--fade { opacity: 0; }

.lightbox-caption {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  text-align: center;
  max-width: 55ch;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .services-toolbar { flex-direction: column; align-items: stretch; }
  .services-search  { width: 100%; }
  .lightbox-prev    { left: .6rem; width: 40px; height: 40px; }
  .lightbox-next    { right: .6rem; width: 40px; height: 40px; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(235,60,141,.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
}

.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 28px rgba(235,60,141,.55);
  transform: translateY(-3px);
}
