
/* preview shell */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
}
.site-preview-root {
  display: block;
}

/* Keep hero/nav appearance stable even if sections toggle page theme/color-scheme. */
.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

/* Hide common model-added fixed “Press D / light–dark” hint UI; document-level key handlers still run */
.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

/* === section scroll animations === */
@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/*
 * wf-anim-js is added to <html> by a blocking <head> script before body renders.
 * Without it (no JS), nothing is hidden.
 *
 * Structure per section:
 *   [data-wf-section]     ← outer shell, background, never animated
 *     .wf-section-body    ← passthrough
 *       model root        ← owns background colour, never animated
 *         > children      ← hidden until in-view, then fade+lift
 */
html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

/* === assembled preview layer (hero bg, sections, rhythm, responsive non-hero) === */
/* ========== Assembled preview: coordinated rest-of-site (variant CSS owns section backgrounds) ========== */
.site-preview-root {
  min-height: auto;
  background: #fff;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}
@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: #F5F0E8;
  background: linear-gradient(to bottom, #F5F0E8 0%, rgba(245, 240, 232, 0.95) 40%, rgba(201, 184, 224, 0.15) 100%);
  padding: 80px 0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #4A2D6B;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
}

.about-subheading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #8C5FA8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 24px 0;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5A3E7A;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(74, 45, 107, 0.12);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #6B4C8A;
  line-height: 1;
}

.stat-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7B5A9E;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(74, 45, 107, 0.20);
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  
  .stat-item {
    padding: 16px 8px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
}

/* === services_v1.css === */
.services-section-v1 {
  background: #FFFFFF;
  padding: 96px 0;
  position: relative;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.services-intro {
  text-align: center;
  margin-bottom: 64px;
}

.services-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #4A2D6B;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 20px 0;
}

.services-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #5A3E7A;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 140px;
  align-items: center;
  transition: all 0.3s ease;
}

.service-band:hover {
  transform: translateX(8px);
}

.service-band.secondary {
  grid-template-columns: 120px 1fr;
}

.service-band.primary {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(240, 236, 232, 0.5) 100%);
  border-top: 1px solid rgba(201, 184, 224, 0.3);
  border-bottom: 1px solid rgba(201, 184, 224, 0.3);
}

.service-band.secondary {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.9) 0%, rgba(237, 230, 245, 0.5) 100%);
  border-top: 1px solid rgba(140, 95, 168, 0.3);
  border-bottom: 1px solid rgba(140, 95, 168, 0.3);
}

.band-content {
  padding: 40px;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #6B4C8A;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.service-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #5A3E7A;
  line-height: 1.6;
  margin: 0;
}

/* Override eternal-tan white service-band text on this light section */
.services-section-v1 .service-band h3,
.services-section-v1 .service-title {
  color: #6B4C8A;
}

.services-section-v1 .service-band p,
.services-section-v1 .service-description {
  color: #5A3E7A;
}

.services-section-v1 .service-band.primary,
.services-section-v1 .service-band.secondary,
.services-section-v1 .service-band.accent {
  border-left-color: transparent;
}

.band-accent {
  background: linear-gradient(45deg, #C9B8E0, #8C5FA8);
  position: relative;
}

.band-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .service-band,
  .service-band.secondary {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .band-accent {
    height: 60px;
    order: -1;
  }
  
  .band-content {
    padding: 24px;
  }
}

/* === gallery_v3.css === */
.gallery-section-v3 {
  background: #EDE6F5;
  background: linear-gradient(135deg, #EDE6F5 0%, rgba(237, 230, 245, 0.8) 50%, rgba(201, 184, 224, 0.6) 100%);
  padding: 96px 0;
  position: relative;
}

.gallery-alternating {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 72px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #4A2D6B;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}

.gallery-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #5A3E7A;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.alternating-rows {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.gallery-row {
  display: grid;
  align-items: center;
  gap: 48px;
}

.gallery-row.row-left,
.gallery-row.row-right {
  grid-template-columns: 1fr 1fr;
}

.gallery-row.row-right {
  direction: rtl;
}

.gallery-row.row-right > * {
  direction: ltr;
}

.row-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 48px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(74, 45, 107, 0.12);
  min-height: 300px;
}

.row-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #6B4C8A;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.row-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #5A3E7A;
  line-height: 1.6;
  margin: 0;
}

.row-images {
  position: relative;
}

.primary-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(74, 45, 107, 0.20);
  transition: transform 0.3s ease;
}

.primary-image:hover {
  transform: scale(1.02);
}

.gallery-row.row-centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.centered-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 48px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(74, 45, 107, 0.15);
}

.centered-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #6B4C8A;
  line-height: 1.2;
  margin: 0 0 32px 0;
}

.centered-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.centered-item {
  position: relative;
}

.centered-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(74, 45, 107, 0.15);
}

.centered-caption {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #5A3E7A;
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .gallery-row.row-left,
  .gallery-row.row-right {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-row.row-right {
    direction: ltr;
  }
  
  .row-content {
    min-height: 200px;
    padding: 32px 24px;
  }
  
  .primary-image {
    height: 300px;
  }
  
  .centered-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .centered-item img {
    height: 250px;
  }
}

/* === cta_v1.css === */
.cta-section-v1 {
  background: linear-gradient(135deg, #6B4C8A 0%, #4A2D6B 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, -20px) rotate(1deg); }
  66% { transform: translate(20px, -10px) rotate(-1deg); }
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 64px 48px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.2);
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}

.cta-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 0 48px 0;
}

.cta-primary {
  background: #FFFFFF;
  color: #6B4C8A;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.cta-primary:hover {
  background: #F5F0E8;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.cta-secondary {
  background: transparent;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 18px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.trust-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: bold;
}

.trust-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .cta-content {
    padding: 48px 32px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .cta-trust {
    grid-template-columns: 1fr;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #4A2D6B;
  background: linear-gradient(to bottom, #4A2D6B 0%, #3A1F5B 100%);
  color: #FFFFFF;
  padding: 64px 0 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C9B8E0;
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.contact-title,
.links-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #C9B8E0;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #C9B8E0;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.links-list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-list a:hover {
  color: #C9B8E0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px 0;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(201, 184, 224, 0.8);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
}

/* === jade-hero hero (from hero preview) === */

.jade-hero.wf-hero {
  min-height: 0;
  height: auto;
  background-color: transparent;
  overflow: hidden;
  color: inherit;
  position: relative;
}

/* Eternal Tan nav structure, Jade purple/cream palette — sits on hero image */
.jade-hero .wf-hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--et-max-nav, 1280px);
  width: calc(100% - 24px);
  margin: 18px auto 0;
  padding: 18px 40px;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid rgba(123, 94, 167, 0.22);
  background: rgba(245, 240, 232, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 20;
  height: auto;
}

.jade-hero .wf-hero__nav-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: #7b5ea7;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(123, 94, 167, 0.22);
  display: block;
}

.jade-hero .wf-hero__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 36px;
}

.jade-hero .wf-hero__nav-link {
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(107, 78, 138, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 0;
  padding: 0;
  transition: color 0.2s;
}

.jade-hero .wf-hero__nav-link:hover {
  color: #5c4080;
}

.jade-hero .wf-hero__nav-link--active {
  color: #4a2e6a;
  border-bottom: 2px solid rgba(123, 94, 167, 0.75);
  padding-bottom: 2px;
}

.jade-hero .wf-hero__nav-cta {
  text-decoration: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c4080;
  border: 1.5px solid rgba(123, 94, 167, 0.7);
  border-radius: 50px;
  padding: 9px 22px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jade-hero .wf-hero__nav-cta:hover {
  background: rgba(123, 94, 167, 0.12);
  border-color: #7b5ea7;
  color: #4a2e6a;
}

@media (max-width: 869px) {
  .jade-hero .wf-hero__nav-links {
    display: none;
  }

  .jade-hero .wf-hero__nav {
    padding: 14px 18px;
    padding-right: 64px;
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% - 24px);
  }
}

body:has(.jade-hero) .wf-hero__menu-toggle {
  color: #5c4080;
  background: rgba(245, 240, 232, 0.94);
  border: 1px solid rgba(123, 94, 167, 0.28);
  box-shadow: 0 8px 28px rgba(74, 46, 106, 0.12);
}

.jade-hero .wf-hero__content {
  flex: 1;
  margin: 0;
  text-align: center;
  align-items: center;
  max-width: 560px;
  width: 100%;
  padding: 40px 56px 56px;
}

.jade-hero .wf-hero__body {
  min-height: 680px;
  height: auto;
  flex: none;
  flex-direction: column;
  align-items: stretch;
}

.jade-hero .wf-hero__headline {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  color: #5a3878;
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
  text-shadow: none;
}

.jade-hero {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  box-sizing: border-box;
  overflow: hidden;
}

/* BODY */
.jade-hero .wf-hero__body {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.jade-hero .wf-hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url(../input/nails.jpeg);
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.jade-hero .wf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f5f0e8 38%, rgba(245,240,232,0.7) 55%, rgba(245,240,232,0.0) 75%);
  z-index: 1;
}

/* CONTENT — left on the page, centered as a stack */
.jade-hero .wf-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 56px 56px;
  max-width: 560px;
  width: 100%;
  margin: 0;
  margin-right: auto;
  flex: 0 1 560px;
  box-sizing: border-box;
  align-self: flex-start;
}

@media (min-width: 1101px) {
  .jade-hero .wf-hero__content {
    margin-left: 180px;
  }
}

.jade-hero .wf-hero__headline {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 800;
  color: #5a3878;
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.jade-hero .wf-hero__subheadline {
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 600;
  color: #4a2e6a;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.7;
  margin: 0 0 36px 0;
}

/* BADGE */
.jade-hero .wf-hero__logo-badge {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.jade-hero .wf-hero__badge-logo {
  display: block;
  width: min(160px, 42vw);
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(74, 45, 107, 0.18));
}

/* CTA BUTTON */
.jade-hero .wf-hero__cta-btn {
  display: inline-block;
  background-color: #6b4e8a;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 22px 48px;
  border-radius: 50px;
  align-self: center;
  transition: background-color 0.2s;
}

.jade-hero .wf-hero__cta-btn:hover {
  background-color: #4a2e6a;
}

/* Web Foundation: hero concept image as section background */
.jade-hero .wf-hero__body {
  position: relative;
}
.jade-hero .wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../input/nails.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.jade-hero .wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.jade-hero .wf-hero__nav, .jade-hero .wf-hero__content, .jade-hero .wf-hero__text-col, .jade-hero .wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Jade Made Me footer — purple / cream palette
   ========================================================================== */

.jade-footer.footer-section-v3 {
  background: #4a2d6b;
  border-top: 1px solid rgba(201, 184, 224, 0.35);
  color: #f5f0e8;
}

.jade-footer .footer-brand,
.jade-footer .jade-footer__brand {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: inherit;
  font-weight: 400;
  color: #c9b8e0;
  text-shadow: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.jade-footer__initials {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #c9b8e0;
}

.jade-footer__name {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f0e8;
}

.jade-footer__tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 184, 224, 0.85);
}

.jade-footer .brand-story {
  color: rgba(245, 240, 232, 0.85);
  font-family: "Montserrat", sans-serif;
}

.jade-footer .section-title,
.jade-footer .column-heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #c9b8e0;
  letter-spacing: 0.04em;
}

.jade-footer .detail-label {
  color: rgba(201, 184, 224, 0.75);
}

.jade-footer .detail-value {
  color: rgba(245, 240, 232, 0.9);
}

.jade-footer .detail-value:hover,
.jade-footer a.detail-value:hover {
  color: #e8dff5;
  text-shadow: 0 0 10px rgba(201, 184, 224, 0.35);
}

.jade-footer .footer-link {
  color: rgba(245, 240, 232, 0.7);
}

.jade-footer .footer-link:hover {
  color: #c9b8e0;
  text-shadow: 0 0 10px rgba(201, 184, 224, 0.3);
}

.jade-footer .footer-final {
  border-top: 1px solid rgba(201, 184, 224, 0.25);
}

.jade-footer .footer-rights {
  color: rgba(245, 240, 232, 0.5);
}

.jade-footer .footer-motto {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 184, 224, 0.9);
  text-shadow: none;
}

/* Kill shared eternal-tan section rule bars */
.about-section-v1::before,
.services-section-v1::before,
.gallery-section-v3::before,
.cta-section-v1::before {
  content: none;
  display: none;
}
 
