
/* 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: #FFFFFF;
  padding: 96px clamp(24px, 5vw, 96px);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #B8962E;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.about-lead {
  font-family: 'Jost', sans-serif;
  font-size: 1.125rem;
  color: #2C2416;
  margin-bottom: 24px;
  line-height: 1.65;
  font-weight: 500;
}

.about-description,
.about-philosophy {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #5C4A2A;
  margin-bottom: 20px;
  line-height: 1.65;
}

/* Override eternal-tan .about-text p (white) on this light section */
.about-section-v1 .about-text p,
.about-section-v1 .about-lead,
.about-section-v1 .about-description,
.about-section-v1 .about-philosophy {
  color: #5C4A2A;
}

.about-section-v1 .about-lead {
  color: #2C2416;
  font-weight: 500;
}

.about-credentials {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.credential-item {
  text-align: center;
}

.credential-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #B8962E;
  line-height: 1;
}

.credential-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  color: #8C7A5E;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.about-image {
  position: relative;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(44, 36, 22, 0.16);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-heading {
    font-size: 2rem;
  }
  
  .about-credentials {
    gap: 24px;
  }
  
  .about-photo {
    height: 300px;
  }
}

/* === services_v1.css === */
.services-section-v1 {
  background: #F5EFE4;
  padding: 96px clamp(24px, 5vw, 96px);
}

.services-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.services-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #B8962E;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.services-intro {
  font-family: 'Jost', sans-serif;
  font-size: 1.125rem;
  color: #5C4A2A;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #E8DCC8;
}

.service-item:last-child {
  border-bottom: none;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #B8962E;
  min-width: 48px;
  text-align: center;
  margin-top: 4px;
}

.service-content {
  flex: 1;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C2416;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.service-description {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #5C4A2A;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 2rem;
  }
  
  .service-item {
    gap: 20px;
    padding: 24px 0;
  }
  
  .service-number {
    min-width: 36px;
    font-size: 1.25rem;
  }
  
  .service-name {
    font-size: 1.25rem;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: #F8F6F1;
  padding: 96px 0;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 96px);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: #B8962E;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.gallery-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 1.125rem;
  color: #5C4A2A;
  line-height: 1.65;
  max-width: 650px;
  margin: 0 auto;
}

.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 20px;
  margin: 0 -clamp(24px, 5vw, 96px);
  padding-left: clamp(24px, 5vw, 96px);
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: rgba(184, 150, 46, 0.1);
  border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #B8962E;
  border-radius: 4px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  padding-right: clamp(24px, 5vw, 96px);
}

.gallery-slide {
  flex: 0 0 350px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(44, 36, 22, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44, 36, 22, 0.16);
}

.gallery-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.slide-info {
  padding: 24px;
}

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C2416;
  margin-bottom: 8px;
  line-height: 1.3;
}

.slide-caption {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #8C7A5E;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 2.25rem;
  }
  
  .gallery-slide {
    flex: 0 0 280px;
  }
  
  .gallery-photo {
    height: 200px;
  }
  
  .slide-info {
    padding: 20px;
  }
}

/* === cta_v1.css === */
.cta-section-v1 {
  background: linear-gradient(135deg, #B8962E 0%, #8B6914 100%);
  padding: 96px clamp(24px, 5vw, 96px);
  position: relative;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: #FDFAF5;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-family: 'Jost', sans-serif;
  font-size: 1.125rem;
  color: #FDFAF5;
  line-height: 1.65;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

.cta-button {
  font-family: 'Cinzel', serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 100px;
  min-width: 220px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  text-align: center;
}

.cta-button-primary {
  background: #FDFAF5;
  color: #B8962E;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.cta-button-secondary {
  background: transparent;
  color: #FDFAF5;
  border: 1.5px solid #FDFAF5;
}

.cta-button-secondary:hover {
  background: #FDFAF5;
  color: #B8962E;
  transform: translateY(-2px);
}

.cta-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

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

.trust-icon {
  color: #FDFAF5;
  font-weight: bold;
  font-size: 0.875rem;
}

.trust-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #FDFAF5;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-headline {
    font-size: 2.25rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-trust {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #2C2416;
  color: #FDFAF5;
  padding: 64px clamp(24px, 5vw, 96px) 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #B8962E;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.brand-description {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #FDFAF5;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #B8962E;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

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

.contact-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #FDFAF5;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

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

.footer-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: #FDFAF5;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: #B8962E;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 150, 46, 0.3);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright,
.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: #FDFAF5;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

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

/* Eternal Tan nav structure, JEM gold/cream palette — sits on hero image */
.jem-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(184, 149, 42, 0.22);
  background: rgba(255, 252, 245, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  z-index: 20;
}

.jem-hero .wf-hero__nav-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  color: #b8952a;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(184, 149, 42, 0.25);
}

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

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

.jem-hero .wf-hero__nav-link:hover {
  color: #b8952a;
}

.jem-hero .wf-hero__nav-link--active {
  color: #a07010;
  border-bottom: 2px solid rgba(184, 149, 42, 0.75);
  padding-bottom: 2px;
}

.jem-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: #7a5c1e;
  border: 1.5px solid rgba(184, 149, 42, 0.7);
  border-radius: 50px;
  padding: 9px 22px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.jem-hero .wf-hero__nav-cta:hover {
  background: rgba(184, 149, 42, 0.12);
  border-color: #b8952a;
  color: #a07010;
}

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

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

/* Light-page hamburger */
body:has(.jem-hero) .wf-hero__menu-toggle {
  color: #7a5c1e;
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(184, 149, 42, 0.28);
  box-shadow: 0 8px 28px rgba(120, 90, 20, 0.12);
}

.jem-hero .wf-hero__content {
  flex: 1;
  margin: 0;
  max-width: none;
  padding: 24px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.jem-hero .wf-hero__body {
  min-height: 0;
  height: 590px;
  flex: none;
  flex-direction: column;
  align-items: center;
}

.jem-hero .wf-hero__headline {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #b8952a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 1px 8px rgba(255,245,200,0.5);
  line-height: normal;
}

.jem-hero {
  font-family: 'Georgia', 'Times New Roman', serif;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}

.jem-hero .wf-hero__body {
  position: relative;
  width: 100%;
  height: 590px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.jem-hero .wf-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 235, 0.18);
  z-index: 1;
}

.jem-hero .wf-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 24px 36px;
  width: 100%;
  flex: 1;
}

.jem-hero .wf-hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.jem-hero .wf-hero__brand-logo {
  margin: 0;
  line-height: 0;
}

.jem-hero .wf-hero__brand-logo img {
  display: block;
  width: min(280px, 55vw);
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(40, 28, 8, 0.22));
}

.jem-hero .wf-hero__headline {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #b8952a;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  text-shadow: 0 1px 8px rgba(255,245,200,0.5);
}

.jem-hero .wf-hero__subtext {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.98rem;
  color: #3a2e1a;
  line-height: 1.7;
  margin: 0 0 28px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(255,248,220,0.7);
}

@media (max-width: 869px) {
  .jem-hero .wf-hero__subtext-break {
    display: none;
  }
}

.jem-hero .wf-hero__cta {
  display: inline-block;
  background: linear-gradient(135deg, #c9a227 0%, #a07010 60%, #b8952a 100%);
  color: #fff;
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 44px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(180,140,30,0.28);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.jem-hero .wf-hero__cta:hover {
  background: linear-gradient(135deg, #d4b030 0%, #b8952a 60%, #c9a227 100%);
  box-shadow: 0 6px 24px rgba(180,140,30,0.38);
  transform: translateY(-1px);
}

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

/* ==========================================================================
   JEM Aesthetics footer — gold / cream / warm brown palette
   ========================================================================== */

.jem-footer.footer-section-v3 {
  background: #2c2416;
  border-top: 1px solid rgba(184, 149, 42, 0.35);
  color: #fdfaf5;
}

.jem-footer .footer-brand,
.jem-footer .jem-footer__brand {
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #b8962e;
  text-shadow: none;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.jem-footer__brand-jem {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 700;
  color: #b8962e;
  letter-spacing: 2px;
  line-height: 1;
}

.jem-footer__brand-dot {
  color: #b8962e;
  font-size: 0.45rem;
  line-height: 1;
  align-self: center;
}

.jem-footer__brand-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #b8962e;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.jem-footer .brand-story {
  color: rgba(253, 250, 245, 0.85);
  font-family: "Montserrat", "Jost", sans-serif;
}

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

.jem-footer .detail-label {
  color: rgba(184, 149, 42, 0.75);
}

.jem-footer .detail-value {
  color: rgba(253, 250, 245, 0.9);
}

.jem-footer .detail-value:hover,
.jem-footer a.detail-value:hover {
  color: #c9a227;
  text-shadow: 0 0 10px rgba(184, 149, 42, 0.35);
}

.jem-footer .footer-link {
  color: rgba(253, 250, 245, 0.7);
}

.jem-footer .footer-link:hover {
  color: #c9a227;
  text-shadow: 0 0 10px rgba(184, 149, 42, 0.3);
}

.jem-footer .footer-final {
  border-top: 1px solid rgba(184, 149, 42, 0.25);
}

.jem-footer .footer-rights {
  color: rgba(253, 250, 245, 0.5);
}

.jem-footer .footer-motto {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: rgba(184, 149, 42, 0.9);
  text-shadow: none;
}

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