/* ── Page colour tokens ── */
:root {
  --clr-gold: #B8956A;
  --clr-gold-mid: #96713E;
  --clr-ink-deep: #1C1510;
  --clr-champagne: #C1A68D;
  --clr-gold-bright: #D4A96A;
  --clr-bg-warm: #FAF7F2;
  --clr-text-warm: #4A3A2E;
}

/* ── Page-specific styles ── */
    .cln-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.cln-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cln-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.cln-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,12,8,0.5) 0%, rgba(16,12,8,0.25) 40%, rgba(16,12,8,0.6) 100%);
}

.cln-hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cln-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

/* ── Breadcrumb ── */
    .cln-breadcrumb {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 2rem;
}

.cln-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cln-breadcrumb__list a {
  color: rgba(252,250,246,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.cln-breadcrumb__list a:hover {
  color: var(--champagne);
}

.cln-breadcrumb__sep {
  color: rgba(252,250,246,0.25);
}

.cln-breadcrumb__current {
  color: rgba(252,250,246,0.8);
}

/* ── Section utilities ── */
    .cln-section {
  padding: 6rem 1.5rem;
}

.cln-section--alt {
  background: var(--bg-off);
}

.cln-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8A5E35;
  margin-bottom: 1rem;
}

.cln-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

.cln-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: #2E2420;
}

.cln-coverage {
  position: relative;
  overflow: hidden;
  min-height: 125svh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 6vh, 5.5rem) 1.5rem;
  background: radial-gradient(circle at top left, rgba(193,166,141,0.24) 0%, transparent 34%),
        linear-gradient(145deg, #f6efe8 0%, #fbf7f2 52%, #efe5da 100%);
}

.cln-coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(122,85,56,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,85,56,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 85%);
  pointer-events: none;
}

.cln-coverage__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.5rem, 2vw, 2.4rem);
  align-items: stretch;
}

.cln-coverage__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(2rem, 3.2vw, 2.7rem);
  border: 1px solid rgba(92,64,39,0.12);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255,253,249,0.92) 0%, rgba(255,248,241,0.86) 100%);
  box-shadow: 0 24px 80px rgba(71,45,24,0.08);
  backdrop-filter: blur(16px);
}

.cln-coverage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A5538;
}

.cln-coverage__eyebrow::before {
  content: '';
  width: 2.3rem;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.cln-coverage__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #1f1712;
  max-width: 10ch;
  margin-bottom: 1rem;
}

.cln-coverage__title em {
  font-style: italic;
  color: #a17049;
}

.cln-coverage__lead {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  line-height: 1.82;
  color: #3b2f27;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.cln-coverage__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.cln-coverage__stat {
  padding: 0.9rem 0.85rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(193,166,141,0.22);
}

.cln-coverage__stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: #1f1712;
  margin-bottom: 0.18rem;
}

.cln-coverage__stat span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #5b483c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cln-coverage__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.cln-coverage__services span {
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  background: rgba(31,23,18,0.94);
  color: #f6ede4;
  font-family: 'Manrope', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(31,23,18,0.12);
}

.cln-coverage__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b68a60 0%, #8b603f 100%);
  color: #fffaf4;
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 32px rgba(139,96,63,0.22);
}

.cln-coverage__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(139,96,63,0.28);
}

.cln-coverage__atlas {
  display: grid;
  grid-template-rows: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0.9rem;
  min-height: 100%;
}

.cln-coverage__visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.9rem;
  min-height: 0;
}

.cln-coverage__photo {
  position: relative;
  overflow: hidden;
  border-radius: 1.8rem;
  min-height: 460px;
  box-shadow: 0 24px 60px rgba(67,43,24,0.14);
}

.cln-coverage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cln-coverage__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,12,8,0.04) 0%, rgba(16,12,8,0.46) 100%);
}

.cln-coverage__photo-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  background: rgba(20,15,11,0.74);
  color: #f6ede4;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.cln-coverage__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
}

.cln-coverage__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  min-height: 0;
  background: #d9c5b0;
  box-shadow: 0 18px 40px rgba(67,43,24,0.12);
}

.cln-coverage__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cln-coverage__panel--text {
  padding: 1.15rem 1.15rem 1.2rem;
  background: radial-gradient(circle at top right, rgba(193,166,141,0.25), transparent 48%),
        linear-gradient(160deg, #1f1712 0%, #3a291f 100%);
  color: #f7ede1;
}

.cln-coverage__panel--text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  line-height: 1.12;
  margin-bottom: 0.45rem;
}

.cln-coverage__panel--text p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  line-height: 1.58;
  color: rgba(247,237,225,0.82);
}

.cln-coverage__city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-content: start;
}

.cln-coverage__city {
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255,250,245,0.9);
  border: 1px solid rgba(122,85,56,0.12);
  box-shadow: 0 12px 30px rgba(76,49,28,0.06);
}

.cln-coverage__city h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #201712;
  margin-bottom: 0.45rem;
}

.cln-coverage__city p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #4c3c31;
}

.cln-coverage__city span {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  color: #8a5e35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {

      .cln-coverage {
        min-height: auto;
        padding: 4rem 1.25rem;
      }

      .cln-coverage__inner {
        grid-template-columns: 1fr;
      }

      .cln-coverage__copy {
        min-height: auto;
      }

      .cln-coverage__atlas {
        grid-template-rows: auto;
      }
    
}

@media (max-width: 768px) {

      .cln-coverage__copy {
        padding: 1.5rem;
        border-radius: 1.5rem;
      }

      .cln-coverage__stats,
      .cln-coverage__city-grid,
      .cln-coverage__visual {
        grid-template-columns: 1fr;
      }

      .cln-coverage__stack {
        grid-template-rows: auto;
      }

      .cln-coverage__visual {
        min-height: auto;
      }

      .cln-coverage__photo {
        min-height: 320px;
      }

      .cln-coverage__title {
        max-width: none;
      }
    
}

/* ══ PROBLEM SECTION ══ */
    .cln-problem {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse 70% 60% at 15% 50%, rgba(193,166,141,0.1) 0%, transparent 60%),
        linear-gradient(160deg, #fdf9f5 0%, #f6efe8 100%);
  padding: 4rem 3rem;
}

.cln-problem__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 4.5rem;
  align-items: center;
}

/* ── Left Copy ── */
    .cln-problem__copy {
  position: relative;
}

.cln-problem__kicker-new {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #7A5538;
}

.cln-problem__kicker-new::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: #7A5538;
  opacity: 0.7;
}

.cln-problem__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #1a1410;
  margin-bottom: 1.2rem;
}

.cln-problem__headline em {
  font-style: italic;
  color: var(--clr-gold);
}

.cln-problem__lede-new {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3E2D22;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

/* Problem cards */
    .cln-problem__cards {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.cln-problem__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(193,166,141,0.2);
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(100,70,40,0.05);
  backdrop-filter: blur(4px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.cln-problem__card:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 28px rgba(100,70,40,0.09);
}

.cln-problem__card-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  background: rgba(193,166,141,0.12);
  border: 1px solid rgba(193,166,141,0.22);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.cln-problem__card-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1410;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.cln-problem__card-body {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4A3828;
}

/* Damage tags */
    .cln-problem__damage-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cln-problem__damage-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5A3E28;
  border: 1px solid rgba(193,166,141,0.35);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(193,166,141,0.08);
  cursor: default;
  transition: all 0.22s ease;
}

.cln-problem__damage-tag:hover {
  background: rgba(193,166,141,0.18);
  border-color: rgba(193,166,141,0.6);
  color: #7a5c3a;
}

/* ── Right Visual ── */
    .cln-problem__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cln-problem__visual-frame {
  position: relative;
  width: 100%;
  height: calc(100svh - 8rem);
  max-height: 680px;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(100,65,30,0.14),
        0 8px 20px rgba(100,65,30,0.08);
}

.cln-problem__img-wrap {
  position: absolute;
  inset: 0;
}

.cln-problem__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cln-problem__visual-frame:hover .cln-problem__img-wrap img {
  transform: scale(1.04);
}

/* Soft cream gradient at the bottom of the image */
    .cln-problem__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,14,8,0.72) 100%);
  z-index: 2;
  border-radius: inherit;
}

/* Floating spec pills — top right inside frame */
    .cln-problem__specs {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 6;
}

.cln-problem__spec {
  padding: 0.6rem 0.9rem;
  background: rgba(253,249,245,0.88);
  border: 1px solid rgba(193,166,141,0.3);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(100,65,30,0.08);
  min-width: 7rem;
}

.cln-problem__spec strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.15rem;
}

.cln-problem__spec span {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A3E28;
  line-height: 1.4;
}

/* Before Cleaning card — bottom left inside frame */
    .cln-problem__before-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 5;
}

.cln-problem__before-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-champagne);
  margin-bottom: 0.5rem;
}

.cln-problem__before-badge::before {
  content: '';
  width: 0.35rem;
  height: 0.35rem;
  background: var(--clr-champagne);
  border-radius: 50%;
  animation: prb-pulse 2.2s ease-in-out infinite;
}

@keyframes prb-pulse {

      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(0.6); }
    
}

.cln-problem__before-card {
  padding: 0.9rem 1rem;
  background: rgba(253,249,245,0.9);
  border: 1px solid rgba(193,166,141,0.25);
  border-radius: 1rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(80,50,20,0.1);
}

.cln-problem__before-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1410;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.cln-problem__before-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: #3E2D22;
}

/* Responsive */
    @media (max-width: 1024px) {

      .cln-problem {
        padding: 4rem 2rem;
      }
      .cln-problem__inner {
        gap: 3rem;
      }
    
}

@media (max-width: 900px) {

      .cln-problem {
        min-height: unset;
        padding: 5rem 2rem;
        align-items: flex-start;
      }
      .cln-problem__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .cln-problem__visual-frame {
        height: 55vw;
        max-height: 480px;
      }
    
}

@media (max-width: 600px) {

      .cln-problem {
        padding: 4rem 1.5rem;
      }
      .cln-problem__headline {
        font-size: 2.5rem;
      }
      .cln-problem__visual-frame {
        height: 72vw;
        border-radius: 1.25rem;
      }
      .cln-problem__specs {
        display: none;
      }
    
}

/* ── Process Section ── */
    .cln-process {
  position: relative;
  overflow: hidden;
  padding: 7rem 2.5rem 6rem;
  background: linear-gradient(155deg, #fefcf9 0%, #f6efe8 55%, #efe5d8 100%);
}

.cln-process__bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
}

.cln-process__inner {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cln-process__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.cln-process__kicker {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clr-gold-mid);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.cln-process__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.cln-process__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.cln-process__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--clr-text-warm);
  max-width: 300px;
  line-height: 1.8;
  text-align: right;
}

/* Grid */
    .cln-process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.cln-process__connector-wrap {
  position: absolute;
  top: -9999px;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.cln-process__connector-line {
  width: 100%;
  height: 100%;
}

.cln-process__dot-travel {
  animation: dotTravel 4s linear infinite;
}

@keyframes dotTravel {

      0% { offset-distance: 0%; opacity: 0; }
      5% { opacity: 1; }
      95% { opacity: 1; }
      100% { offset-distance: 100%; opacity: 0; }
    
}

/* Step card */
    .cln-process__step {
  position: relative;
  z-index: 1;
  cursor: default;
}

/* Staggered card heights for visual rhythm */
    .cln-process__step:nth-child(odd) {
  align-self: start;
}

.cln-process__step:nth-child(even) {
  align-self: end;
}

.cln-process__step:nth-child(odd)  .cln-process__step-inner {
  min-height: 430px;
}

.cln-process__step:nth-child(even) .cln-process__step-inner {
  min-height: 355px;
}

.cln-process__step-inner {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 32px rgba(60,35,10,0.18);
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
        box-shadow 0.5s cubic-bezier(0.23,1,0.32,1);
}

/* Left accent bar */
    .cln-process__step-inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--clr-champagne) 30%, var(--clr-champagne) 70%, transparent);
  z-index: 3;
  border-radius: 999px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.cln-process__step:hover .cln-process__step-inner::before {
  opacity: 1;
}

/* Scrim: strong at bottom where text lives, fades to clear at top */
    .cln-process__step-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 1.5rem;
  pointer-events: none;
  background: linear-gradient(
        to top,
        rgba(6,3,1,0.93) 0%,
        rgba(6,3,1,0.78) 25%,
        rgba(6,3,1,0.32) 52%,
        rgba(6,3,1,0.04) 76%,
        transparent 100%
      );
}

.cln-process__step:hover .cln-process__step-inner {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(60,35,10,0.28), 0 6px 20px rgba(60,35,10,0.14);
}

.cln-process__step-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 1.5rem;
  overflow: hidden;
}

.cln-process__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
}

.cln-process__step:hover .cln-process__step-img img {
  transform: scale(1.07);
}

/* ── Top row: number + icon ── */
    .cln-process__step-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}

.cln-process__step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.45s ease;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.cln-process__step:hover .cln-process__step-num {
  color: var(--clr-champagne);
}

.cln-process__step-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(193,166,141,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.45s cubic-bezier(0.23,1,0.32,1);
}

.cln-process__step:hover .cln-process__step-icon {
  background: rgba(193,166,141,0.22);
  border-color: rgba(193,166,141,0.9);
  transform: rotate(12deg) scale(1.1);
}

.cln-process__step-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  stroke: rgba(229,220,207,0.9);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Spacer: let photo show ── */
    .cln-process__step-spacer {
  flex: 1;
  position: relative;
  z-index: 2;
}

/* ── Bottom content block ── */
    .cln-process__step-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.cln-process__step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A97A;
}

.cln-process__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}

.cln-process__step-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(240,232,220,0.95);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.45s ease, opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
  margin-top: 0.1rem;
}

.cln-process__step:hover .cln-process__step-body {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

/* Footer row */
    .cln-process__footer {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cln-process__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.cln-process__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cln-process__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3E2D22;
}

.cln-process__stat-div {
  width: 1px;
  height: 2.5rem;
  background: rgba(193,166,141,0.3);
}

.cln-process__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--ink);
  color: var(--bg-cream, #FCFAF6);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(16,12,8,0.15);
}

.cln-process__cta-btn:hover {
  background: var(--clr-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,149,106,0.35);
}

.cln-process__cta-btn:hover .cln-process__cta-arrow {
  transform: translateX(4px);
}

.cln-process__cta-arrow {
  transition: transform 0.3s ease;
}

/* Responsive */
    @media (max-width: 1100px) {

      .cln-process__grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
      .cln-process__connector-wrap { display: none; }
      .cln-process__step:nth-child(n) .cln-process__step-inner { min-height: 340px; }
      .cln-process__step:nth-child(n) { align-self: auto; }
    
}

@media (max-width: 640px) {

      .cln-process { padding: 5rem 1.25rem 4rem; }
      .cln-process__grid { grid-template-columns: 1fr; gap: 0.75rem; }
      .cln-process__subtitle { text-align: left; max-width: 100%; }
      .cln-process__step-body { max-height: 120px !important; opacity: 1 !important; transform: none !important; }
      .cln-process__step:nth-child(n) .cln-process__step-inner { min-height: 300px; }
      .cln-process__footer { gap: 1.5rem; }
      .cln-process__stat-div { display: none; }
    
}

/* ══════════════════════════════════════════════════════
       LEATHER EXPERTISE SECTION
    ══════════════════════════════════════════════════════ */

    /* ── FULL VIEWPORT REDESIGN (LIGHT THEME) ── */
    .ltx-section {
  height: 100svh;
  min-height: 500px;
  width: 100%;
  background: #F9F5F0;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}

.ltx-intro {
  width: 38%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  background: #FCFAF6;
  color: #1a1410;
  position: relative;
  z-index: 10;
  border-right: 1px solid rgba(193, 166, 141, 0.25);
  box-shadow: 10px 0 30px rgba(100,70,40,0.06);
}

.ltx-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(193, 166, 141, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ltx-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-gold-mid);
  margin-bottom: 2rem;
  position: relative;
}

.ltx-eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 2.2rem;
  height: 1px;
  background: var(--clr-champagne);
  opacity: 0.8;
}

.ltx-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: #1a1410;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.ltx-heading em {
  font-style: italic;
  color: var(--clr-gold);
  display: block;
}

.ltx-subhead {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-text-warm);
  line-height: 1.85;
  max-width: 90%;
  border-left: 2px solid rgba(193, 166, 141, 0.5);
  padding-left: 1.5rem;
}

/* Accordion Area */
    .ltx-accordion {
  width: 62%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.ltx-pane {
  flex: 1;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.85s cubic-bezier(0.2, 0.9, 0.2, 1);
  border-left: 1px solid rgba(193, 166, 141, 0.2);
}

.ltx-pane:first-child {
  border-left: none;
}

.ltx-pane:hover, .ltx-pane.ltx-pane--active {
  flex: 2.8;
}

/* Background image with hover effects */
    .ltx-pane__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.ltx-pane__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: saturate(0.9);
  transition: all 0.85s cubic-bezier(0.2, 0.9, 0.2, 1);
  transform: scale(1.15) translateX(-5%);
}

.ltx-pane:hover .ltx-pane__bg img, .ltx-pane.ltx-pane--active .ltx-pane__bg img {
  opacity: 1;
  filter: saturate(1.15);
  transform: scale(1) translateX(0);
}

/* Subtle gradient purely at the very bottom just in case */
    .ltx-pane::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0, 0.2) 0%, transparent 100%);
  transition: opacity 0.85s;
}

.ltx-pane:hover::after, .ltx-pane.ltx-pane--active::after {
  opacity: 0;
}

/* Number when inactive */
    .ltx-pane__num-inactive {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: #FCFAF6;
  opacity: 1;
  z-index: 5;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.ltx-pane:hover .ltx-pane__num-inactive, .ltx-pane.ltx-pane--active .ltx-pane__num-inactive {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

/* Content Area (Glassmorphic Card) */
    .ltx-pane__content {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  padding: 2.5rem 2.5rem;
  z-index: 3;
  background: rgba(252, 250, 246, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.85s cubic-bezier(0.2, 0.9, 0.2, 1);
  pointer-events: none;
}

.ltx-pane:hover .ltx-pane__content, .ltx-pane.ltx-pane--active .ltx-pane__content {
  opacity: 1;
  bottom: 0;
  transform: translateY(0);
  pointer-events: auto;
}

/* Top Badge */
    .ltx-pane__badge {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 3;
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5A3E28;
  border: 1px solid rgba(193, 166, 141, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.85s cubic-bezier(0.2, 0.9, 0.2, 1);
  white-space: nowrap;
}

.ltx-pane:hover .ltx-pane__badge, .ltx-pane.ltx-pane--active .ltx-pane__badge {
  opacity: 1;
  transform: translateY(0);
}

/* Care Rating Dots inside the frosted card */
    .ltx-pane__care {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.ltx-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: rgba(193,166,141,0.3);
}

.ltx-dot.on {
  background: var(--clr-champagne);
}

.ltx-care-lbl {
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 0.5rem;
  color: #5A3E28;
  font-weight: 700;
}

/* Pane Title inside the frosted card */
    .ltx-pane__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1410;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.ltx-pane__title .ltx-title-num {
  color: var(--clr-champagne);
  font-style: italic;
  margin-right: 1rem;
  font-size: 1.6rem;
}

/* Pane Body Text */
    .ltx-pane__body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--clr-text-warm);
  line-height: 1.75;
  width: 100%;
  max-width: 20rem;
  margin: 0;
}

/* ── RESPONSIVE ── */
    @media (max-width: 1100px) {

      .ltx-section { flex-direction: column; height: auto; min-height: unset; }
      .ltx-intro { width: 100%; height: auto; padding: 5rem 3rem 4rem; border-right: none; }
      .ltx-subhead { max-width: 100%; }
      .ltx-accordion { width: 100%; height: 75svh; min-height: 500px; flex-direction: row; }
      .ltx-pane__content { padding: 2rem 1.5rem; }
      .ltx-pane__title { font-size: 1.8rem; }
      .ltx-pane__badge { top: 1.5rem; left: 1.5rem; }
    
}

@media (max-width: 768px) {

      .ltx-intro { padding: 5rem 2rem 3rem; text-align: left;}
      .ltx-heading { font-size: 2.2rem; margin-bottom: 1.5rem; }
      .ltx-subhead { border-left: none; padding-left: 0; }
      .ltx-accordion { flex-direction: column; height: 85svh; }
      .ltx-pane { border-left: none; border-top: 1px solid rgba(193, 166, 141, 0.2); flex: 1; }
      .ltx-pane:first-child { border-top: none; }
      .ltx-pane:hover, .ltx-pane.ltx-pane--active { flex: 2.5; }
      .ltx-pane__bg img { transform: scale(1) translateY(-5%); object-position: center 30%; }
      .ltx-pane:hover .ltx-pane__bg img, .ltx-pane.ltx-pane--active .ltx-pane__bg img { transform: scale(1) translateY(0); }
      .ltx-pane__num-inactive { bottom: auto; top: 50%; left: 2rem; transform: translateY(-50%); font-size: 2rem; }
      .ltx-pane:hover .ltx-pane__num-inactive, .ltx-pane.ltx-pane--active .ltx-pane__num-inactive { transform: translateY(-50%) translateX(20px); opacity: 0; }
      .ltx-pane__content { padding: 1.5rem; bottom: 0; flex-direction: column; justify-content: center; background: rgba(252, 250, 246, 0.98); }
      .ltx-pane:hover .ltx-pane__content, .ltx-pane.ltx-pane--active .ltx-pane__content { opacity: 1; transform: translateY(0); pointer-events: auto; }
      .ltx-pane__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
      .ltx-pane__body { max-width: 100%; font-size: 0.88rem; line-height: 1.7; }
      .ltx-pane__badge { display: none; }
    
}

/* DEPRECATED OLD CSS HIDDEN VIA MEDIA QUERY: */
    @media (max-width: 0px) {

    .ltx-section {
      position: relative;
      overflow: hidden;
      padding: 8rem 2.5rem 7rem;
      background: #F9F5F0;
      color: var(--ink);
    }
    .ltx-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 45% at 75% 15%, rgba(193,166,141,0.09) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }
    .ltx-inner { position: relative; z-index: 1; max-width: 74rem; margin: 0 auto; }

    /* ── Header ── */
    .ltx-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 6rem;
      align-items: end;
      margin-bottom: 1.5rem;
    }
    .ltx-eyebrow {
      display: block;
      grid-column: 1 / -1;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.58rem;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--clr-champagne);
      margin-bottom: 1.6rem;
    }
    .ltx-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: #1C1713;
      margin: 0;
    }
    .ltx-heading span {
      display: block;
      font-style: italic;
      font-weight: 400;
      color: #1C1713;
    }
    .ltx-subhead {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      font-weight: 300;
      color: #6b5e52;
      line-height: 1.85;
    }
    .ltx-divider {
      height: 1px;
      background: linear-gradient(to right, var(--clr-champagne) 0%, rgba(193,166,141,0.3) 50%, transparent 100%);
      margin: 2.5rem 0 3.5rem;
    }

    /* ── Grid — split-panel cards ── */
    .ltx-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto;
      gap: 1.25rem;
      align-items: start;
    }
    /* Tall featured card */
    .ltx-card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
    .ltx-card:nth-child(2) { grid-column: 2; }
    .ltx-card:nth-child(3) { grid-column: 3; }
    .ltx-card:nth-child(4) { grid-column: 2 / 4; }

    .ltx-card {
      border-radius: 0.875rem;
      background: #fff;
      border: 1px solid #E8DDD4;
      overflow: hidden;
      cursor: pointer;
      transition: box-shadow 0.45s cubic-bezier(0.23,1,0.32,1),
                  transform 0.45s cubic-bezier(0.23,1,0.32,1),
                  border-color 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .ltx-card:hover {
      box-shadow: 0 20px 56px rgba(80,55,30,0.14), 0 4px 12px rgba(80,55,30,0.06);
      transform: translateY(-4px);
      border-color: var(--clr-champagne);
    }

    /* Image zone — clean, no overlay */
    .ltx-card__img {
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      height: 220px;
    }
    .ltx-card:nth-child(1) .ltx-card__img { height: 340px; }
    .ltx-card:nth-child(4) .ltx-card__img { height: 180px; }
    .ltx-card__img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.23,1,0.32,1);
      filter: saturate(0.8);
    }
    .ltx-card:hover .ltx-card__img img {
      transform: scale(1.05);
      filter: saturate(1);
    }

    /* Badge on image */
    .ltx-card__badge {
      position: absolute;
      top: 0.85rem; left: 0.9rem;
      z-index: 2;
      padding: 0.24rem 0.62rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      border: 1px solid rgba(193,166,141,0.5);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.48rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #7a5f48;
      transition: background 0.3s, border-color 0.3s;
    }
    .ltx-card:hover .ltx-card__badge {
      background: #fff;
      border-color: var(--clr-champagne);
    }

    /* Info panel — below image */
    .ltx-card__info {
      padding: 1.25rem 1.35rem 1.4rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      border-top: 1px solid #EDE6DE;
    }
    /* card 4: horizontal info */
    .ltx-card:nth-child(4) .ltx-card__info {
      flex-direction: row;
      align-items: flex-start;
      gap: 2rem;
    }
    .ltx-card:nth-child(4) .ltx-card__text { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

    /* Care bar */
    .ltx-card__care {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .ltx-card__dot {
      width: 18px; height: 3px;
      border-radius: 2px;
      background: #EDE6DE;
      transition: background 0.3s;
    }
    .ltx-card__dot.on { background: var(--clr-champagne); }
    .ltx-card__care-lbl {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.46rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9b8878;
      margin-left: 6px;
    }

    /* Title */
    .ltx-card__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: #1C1713;
      line-height: 1.25;
      margin: 0;
    }
    .ltx-card:nth-child(1) .ltx-card__title { font-size: 1.45rem; }

    /* Divider line — animates on hover */
    .ltx-card__rule {
      height: 1px;
      background: var(--clr-champagne);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    }
    .ltx-card:hover .ltx-card__rule { transform: scaleX(1); }

    /* Body text */
    .ltx-card__body {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      font-weight: 300;
      color: #6b5e52;
      line-height: 1.8;
      margin: 0;
    }

    /* SVG ornament in header */
    .ltx-stamp-wrap {
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .ltx-grid { grid-template-columns: 1fr 1fr; }
      .ltx-card:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
      .ltx-card:nth-child(1) .ltx-card__img { height: 240px; }
      .ltx-card:nth-child(2),
      .ltx-card:nth-child(3) { grid-column: auto; grid-row: auto; }
      .ltx-card:nth-child(4) { grid-column: 1 / -1; }
      .ltx-header { grid-template-columns: 1fr; gap: 1rem 0; }
      .ltx-stamp-wrap { display: none; }
    }
    @media (max-width: 580px) {
      .ltx-section { padding: 5rem 1.25rem 4.5rem; }
      .ltx-grid { grid-template-columns: 1fr; }
      .ltx-card:nth-child(n) { grid-column: 1 !important; grid-row: auto !important; }
      .ltx-card:nth-child(4) .ltx-card__info { flex-direction: column; gap: 0.5rem; }
    }

    
}

/* END DEPRECATED MEDIA QUERY */

    /* ── Included checklist ── */
    .cln-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.cln-check__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.cln-check__icon svg {
  width: 0.7rem;
  height: 0.7rem;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

/* ── Before/After Interactive Slider ── */
    .cln-ba-slider {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

/* After image sits in normal flow → gives the container height */
    .cln-ba-slider__after img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Before layer is absolute, clipped by width */
    .cln-ba-slider__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.cln-ba-slider__before img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  pointer-events: none;
}

.cln-ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.cln-ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  pointer-events: auto;
  cursor: col-resize;
}

.cln-ba-slider__handle::after {
  content: '\2039\00a0\00a0\203A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: #3a3128;
  letter-spacing: 0.15em;
  z-index: 4;
  pointer-events: none;
}

.cln-ba-slider__label {
  position: absolute;
  bottom: 1rem;
  padding: 0.3rem 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(16,12,8,0.6);
  backdrop-filter: blur(4px);
  border-radius: 0.25rem;
  z-index: 2;
  pointer-events: none;
}

.cln-ba-slider__label--before {
  left: 1rem;
}

.cln-ba-slider__label--after {
  right: 1rem;
}

.cln-ba-slider__caption {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #6b6158;
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.cln-ba-slider__hint {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 0.5rem;
}

.cln-ba-slider--compact {
  width: 50%;
  max-width: 480px;
}
@media (max-width: 768px) {
  .cln-ba-slider--compact {
    width: 100%;
    max-width: none;
  }
}

/* ── CLIMATIC ANALYSIS — Light Cream Theme ── */
    @keyframes kicker-pulse {

      0%, 100% { box-shadow: 0 0 0 0 rgba(184, 149, 106, 0.5); transform: scale(1); }
      50%       { box-shadow: 0 0 0 8px rgba(184, 149, 106, 0); transform: scale(1.15); }
    
}

@keyframes overlay-shimmer {

      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    
}

@keyframes float-particle {

      0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 0.6; }
      100% { transform: translateY(-120px) translateX(var(--dx, 20px)) scale(0.3); opacity: 0; }
    
}

@keyframes metric-underline-grow {

      from { width: 0; }
      to   { width: 100%; }
    
}

.climatic-section {
  background: var(--clr-bg-warm);
  color: var(--clr-ink-deep);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 5vh 0;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

/* Subtle warm grid */
    .climatic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184, 149, 106, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 149, 106, 0.07) 1px, transparent 1px);
  background-size: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 80px);
  pointer-events: none;
}

/* Warm radial bloom */
    .climatic-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.climatic-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 8%;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.climatic-bg-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4%;
  font-family: 'DM Serif Display', serif;
  font-size: 22vw;
  font-weight: 400;
  color: rgba(184, 149, 106, 0.05);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.climatic-header {
  margin-bottom: 2rem;
}

.climatic-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-gold-mid);
  margin-bottom: 1.5rem;
}

.climatic-kicker::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--clr-gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: kicker-pulse 2.4s ease-in-out infinite;
}

.climatic-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: var(--clr-ink-deep);
}

.climatic-title em {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 400;
  transform: translateX(1.2rem);
}

.climatic-desc {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.97rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  color: var(--clr-text-warm);
  max-width: 540px;
  font-weight: 400;
}

.climatic-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2rem;
}

.climatic-point {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  border-left: 2px solid rgba(184, 149, 106, 0.22);
  padding: 1rem 0 1rem 2rem;
  position: relative;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 6px 6px 0;
  cursor: default;
}

.climatic-point::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.climatic-point:hover {
  border-color: transparent;
  background: rgba(184, 149, 106, 0.06);
  transform: translateX(4px);
}

.climatic-point:hover::after {
  transform: scaleY(1);
}

.climatic-point:hover .climatic-metric {
  transform: scale(1.04);
}

.climatic-point:hover .metric-val {
  color: var(--clr-gold-mid);
}

.climatic-metric {
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 68px;
}

.metric-val {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.55rem;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.metric-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7A6355;
  font-weight: 500;
}

.climatic-point__content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--clr-ink-deep);
  letter-spacing: -0.01em;
}

.climatic-point__content p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--clr-text-warm);
  max-width: 420px;
  font-weight: 400;
}

/* ── Diagnostic Scanner Panel ── */
    @keyframes cv-scan {

      0%   { top: 0; opacity: 0.9; }
      48%  { opacity: 0.9; }
      50%  { top: 100%; opacity: 0; }
      50.01% { top: 0; opacity: 0; }
      52%  { opacity: 0.9; }
      100% { top: 100%; opacity: 0.9; }
    
}

@keyframes cv-ring-pulse {

      0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.9; }
      50%       { transform: translate(-50%,-50%) scale(1.18); opacity: 0.4; }
    
}

@keyframes cv-ring-pulse-2 {

      0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.5; }
      50%       { transform: translate(-50%,-50%) scale(1.3);  opacity: 0.15; }
    
}

@keyframes cv-chip-float {

      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-3px); }
    
}

@keyframes cv-bar-grow {

      from { width: 0; }
      to   { width: var(--fill); }
    
}

@keyframes cv-status-pulse {

      0%, 100% { box-shadow: 0 0 0 0 rgba(184,149,106,0.6); }
      60%       { box-shadow: 0 0 0 10px rgba(184,149,106,0); }
    
}

@keyframes cv-dot-blink {

      0%, 100% { opacity: 1; }
      50%       { opacity: 0.2; }
    
}

.climatic-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Unified rounded card ── */
    .cv-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(28,21,16,0.13),
        0 10px 28px rgba(184,149,106,0.1),
        0 0 0 1px rgba(184,149,106,0.22);
  position: relative;
}

/* ── Scanner block ── */
    .cv-scanner {
  position: relative;
  background: #fff;
}

/* Corner precision brackets — inset so they sit inside the rounded card */
    .cv-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 8;
}

.cv-corner--tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(184,149,106,0.7);
  border-left: 2px solid rgba(184,149,106,0.7);
}

.cv-corner--tr {
  top: 10px;
  right: 10px;
  border-top: 2px solid rgba(184,149,106,0.7);
  border-right: 2px solid rgba(184,149,106,0.7);
}

.cv-corner--bl {
  bottom: 10px;
  left: 10px;
  border-bottom: 2px solid rgba(184,149,106,0.7);
  border-left: 2px solid rgba(184,149,106,0.7);
}

.cv-corner--br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(184,149,106,0.7);
  border-right: 2px solid rgba(184,149,106,0.7);
}

/* Top annotation bar */
    .cv-ann-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.1rem;
  background: linear-gradient(90deg, #EEE8DF 0%, #F5F0EA 100%);
  border-bottom: 1px solid rgba(184,149,106,0.2);
}

.cv-ann-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5A4A3E;
  font-weight: 500;
}

.cv-ann-chip--live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clr-gold-mid);
  font-weight: 700;
}

.cv-ann-dot {
  width: 5px;
  height: 5px;
  background: var(--clr-gold);
  border-radius: 50%;
  animation: cv-dot-blink 1.4s ease-in-out infinite;
}

.cv-ann-sep {
  flex: 1;
  height: 1px;
  background: rgba(184,149,106,0.2);
}

/* Image area */
    .cv-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.cv-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.12) contrast(1.06);
  transition: filter 0.8s ease, transform 0.8s cubic-bezier(0.19,1,0.22,1);
}

.cv-scanner:hover .cv-img-wrap img {
  filter: sepia(0) contrast(1.02);
  transform: scale(1.03);
}

/* Scan line */
    .cv-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,149,106,0.9) 40%, rgba(255,220,160,1) 50%, rgba(184,149,106,0.9) 60%, transparent);
  top: 0;
  z-index: 4;
  animation: cv-scan 3.2s linear infinite;
  filter: drop-shadow(0 0 6px rgba(184,149,106,0.8));
}

/* Crosshair on stain */
    .cv-crosshair {
  position: absolute;
  top: 55%;
  left: 52%;
  z-index: 5;
  pointer-events: none;
}

.cv-ch-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184,149,106,0.7);
  transform: translate(-50%,-50%);
}

.cv-ch-ring--1 {
  width: 36px;
  height: 36px;
  border-color: rgba(184,149,106,0.9);
  border-width: 1.5px;
  animation: cv-ring-pulse 2s ease-in-out infinite;
}

.cv-ch-ring--2 {
  width: 62px;
  height: 62px;
  border-style: dashed;
  border-color: rgba(184,149,106,0.5);
  animation: cv-ring-pulse-2 2s ease-in-out infinite 0.3s;
}

.cv-ch-ring--3 {
  width: 92px;
  height: 92px;
  border-color: rgba(184,149,106,0.2);
}

.cv-ch-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--clr-gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 8px rgba(184,149,106,0.9);
}

.cv-ch-h, .cv-ch-v {
  position: absolute;
  background: rgba(184,149,106,0.4);
  transform: translate(-50%,-50%);
}

.cv-ch-h {
  width: 110px;
  height: 1px;
}

.cv-ch-v {
  width: 1px;
  height: 110px;
}

.cv-ch-label {
  position: absolute;
  top: -28px;
  left: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold-mid);
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(184,149,106,0.3);
  border-radius: 4px;
  padding: 3px 8px;
  box-shadow: 0 2px 8px rgba(28,21,16,0.08);
}

/* Corner chips on image */
    .cv-chip {
  position: absolute;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(184,149,106,0.35);
  border-radius: 6px;
  color: #7A5830;
  z-index: 6;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(28,21,16,0.08);
  animation: cv-chip-float 3s ease-in-out infinite;
}

.cv-chip--tl {
  top: 10px;
  left: 10px;
  animation-delay: 0s;
}

.cv-chip--tr {
  top: 10px;
  right: 10px;
  animation-delay: 0.8s;
}

.cv-chip--bl {
  bottom: 10px;
  left: 10px;
  animation-delay: 1.6s;
}

/* ── Data Panel ── */
    .cv-data-panel {
  background: linear-gradient(180deg, #EDE7DC 0%, #F2ECE4 100%);
  border-top: 1px solid rgba(184,149,106,0.2);
  padding: 1.3rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cv-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cv-bar-row {
  display: grid;
  grid-template-columns: 68px 1fr 36px;
  align-items: center;
  gap: 0.7rem;
}

.cv-bar-key {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5A4A3E;
  font-weight: 500;
}

.cv-bar-track {
  height: 5px;
  background: rgba(184,149,106,0.18);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.cv-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clr, var(--clr-gold)), color-mix(in srgb, var(--clr, var(--clr-gold)) 70%, #fff));
  border-radius: 99px;
  animation: cv-bar-grow 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* stagger bar fills */
    .cv-bar-row:nth-child(1) .cv-bar-fill {
  animation-delay: 0.2s;
}

.cv-bar-row:nth-child(2) .cv-bar-fill {
  animation-delay: 0.45s;
}

.cv-bar-row:nth-child(3) .cv-bar-fill {
  animation-delay: 0.7s;
}

.cv-bar-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-gold-mid);
  text-align: right;
}

/* Status row */
    .cv-status {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(184,149,106,0.18);
}

.cv-status__pulse {
  width: 10px;
  height: 10px;
  background: var(--clr-gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: cv-status-pulse 1.8s ease-out infinite;
}

.cv-status__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cv-status__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6B5744;
  font-weight: 500;
}

.cv-status__val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  color: var(--clr-ink-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cv-status__badge {
  width: 30px;
  height: 30px;
  border: 2px solid var(--clr-gold-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-gold-mid);
  flex-shrink: 0;
}

/* Floating Dust Particles */
    .climatic-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.climatic-particles .dust-particle {
  position: absolute;
  width: var(--size, 3px);
  height: var(--size, 3px);
  background: var(--clr-gold);
  border-radius: 50%;
  bottom: 0;
  left: var(--x, 50%);
  opacity: 0;
  animation: float-particle var(--dur, 3s) ease-in var(--delay, 0s) infinite;
  --dx: var(--drift, 15px);
}

/* Video card vertical text */
    .cv-video-vertical {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-lr;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  z-index: 2;
}

/* Video card top bar */
    .cv-video-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.cv-video-top__badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(180,80,60,0.75);
  padding: 0.25rem 0.7rem;
  border-radius: 0.25rem;
  backdrop-filter: blur(4px);
}

.cv-video-top__ref {
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

/* Video card overlay heading */
    .cv-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.cv-video-overlay__kicker {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4b88a;
  margin-bottom: 0.4rem;
}

.cv-video-overlay__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Mobile CTA — hidden on desktop */
    .climatic-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {

      .climatic-inner { grid-template-columns: 1fr; gap: 2rem; }
      .climatic-section { padding: 4vh 0; height: auto; max-height: none; }
      .climatic-title em { transform: none; }
      .climatic-bg-label { display: none; }
      .climatic-visual { padding: 0; max-width: 520px; }
    
}

@media (max-width: 640px) {

      .climatic-section {
        padding: 0;
        min-height: 100vh;
        min-height: 100svh;
      }
      .climatic-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        position: relative;
        height: 100vh;
        height: 100svh;
      }
      /* Video becomes full background */
      .climatic-visual {
        position: absolute;
        inset: 0;
        max-width: none;
        width: 100%;
        height: 100%;
        z-index: 0;
      }
      .climatic-visual .cv-card {
        border-radius: 0 !important;
        max-height: none !important;
        width: 100%;
        height: 100%;
      }
      .climatic-visual .cv-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .cv-video-overlay,
      .cv-video-top,
      .cv-video-vertical {
        display: none;
      }
      /* Text overlays on top of video */
      .climatic-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100vh;
        height: 100svh;
        padding: 0 1.5rem 2.5rem;
        background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.55) 100%);
      }
      .climatic-kicker {
        color: rgba(255,255,255,0.8) !important;
      }
      .climatic-kicker::before {
        background: rgba(255,255,255,0.6) !important;
      }
      .climatic-title {
        font-size: 1.8rem;
        color: #fff;
        text-shadow: 0 2px 12px rgba(0,0,0,0.3);
      }
      .climatic-title em {
        color: #fff;
        -webkit-text-fill-color: #fff;
      }
      .climatic-desc {
        color: rgba(255,255,255,0.9);
        font-size: 0.85rem;
        text-shadow: 0 1px 6px rgba(0,0,0,0.3);
      }
      .climatic-desc em {
        color: #fff;
        font-style: italic;
      }
      /* Hide the data points on mobile */
      .climatic-grid {
        display: none;
      }
      /* Show CTA button */
      .climatic-mobile-cta {
        display: block;
        margin-top: 1.25rem;
        padding: 0.9rem 0;
        width: 100%;
        text-align: center;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--clr-ink-deep);
        background: rgba(255,255,255,0.9);
        border-radius: 0.4rem;
        text-decoration: none;
        backdrop-filter: blur(6px);
      }
      .climatic-point { flex-direction: column; gap: 1rem; padding-left: 1.5rem; }
      .climatic-point__content h3 { font-size: 1.2rem; }
    
}

/* ── Area pills ── */
    .cln-area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--champagne-light);
  border-radius: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #3a3530;
  transition: border-color 0.3s, background 0.3s;
}

.cln-area-pill:hover {
  border-color: var(--champagne);
  background: rgba(193,166,141,0.06);
}

/* ── Review cards ── */
    .cln-review {
  background: #fff;
  border: 1px solid rgba(193,166,141,0.15);
  border-radius: 0.5rem;
  padding: 2rem;
}

.cln-review__stars {
  color: var(--champagne);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.cln-issues-luxe {
  position: relative;
  overflow: clip;
  background: radial-gradient(circle at 12% 14%, rgba(205,179,150,0.18), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #faf4ee 54%, #f7f0e8 100%);
  color: #17110d;
}

.cln-issues-luxe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(122,90,64,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122,90,64,0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.12));
  opacity: 0.22;
  pointer-events: none;
}

.cln-issues-luxe::after {
  content: "LEATHER NOTES";
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.52em;
  color: rgba(106,77,54,0.2);
  text-transform: uppercase;
  pointer-events: none;
}

.cln-issues-luxe__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}

.cln-issues-luxe__intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.46fr);
  gap: 2.8rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.cln-issues-luxe__ornament {
  position: absolute;
  top: 3.8rem;
  right: 10%;
  width: clamp(260px, 26vw, 420px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.cln-issues-luxe__ornament svg {
  display: block;
  width: 100%;
  height: auto;
}

.cln-issues-luxe__ornament path,
    .cln-issues-luxe__ornament circle {
  vector-effect: non-scaling-stroke;
}

.cln-issues-luxe__lead {
  position: relative;
  padding-right: 4rem;
}

.cln-issues-luxe__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(96,62,34,0.92);
}

.cln-issues-luxe__eyebrow::before {
  content: "";
  width: 3.4rem;
  height: 1px;
  background: rgba(140,100,70,0.45);
}

.cln-issues-luxe__title {
  max-width: none;
  margin: 0;
  font-family: 'Forum', serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.045em;
  font-weight: 400;
  color: #15100d;
  text-wrap: balance;
}

.cln-issues-luxe__title em {
  display: inline;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
  letter-spacing: -0.03em;
  color: #b78357;
}

.cln-issues-luxe__copy {
  max-width: 34rem;
  margin-top: 1.6rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.86;
  letter-spacing: 0.012em;
  color: rgba(40,26,16,0.84);
}

.cln-issues-luxe__signature {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.95rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(80,56,36,0.76);
}

.cln-issues-luxe__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #b07d52;
  box-shadow: 0 0 18px rgba(208,164,122,0.3);
}

.cln-issues-luxe__aside {
  position: relative;
  align-self: end;
  padding: 0 0 0 1.6rem;
  border-left: 1px solid rgba(177,137,106,0.2);
}

.cln-issues-luxe__aside-label {
  display: block;
  margin-bottom: 1rem;
  font-family: 'Forum', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(80,58,38,0.78);
}

.cln-issues-luxe__stats {
  display: grid;
  gap: 1.1rem;
}

.cln-issues-luxe__stat {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(177,137,106,0.14);
}

.cln-issues-luxe__stat:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.cln-issues-luxe__stat-value {
  display: block;
  margin-bottom: 0.16rem;
  font-family: 'DM Serif Display', serif;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #211712;
}

.cln-issues-luxe__stat-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: rgba(46,30,18,0.86);
}

.cln-issues-luxe__stage {
  display: grid;
  grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.cln-issues-luxe__visual {
  position: sticky;
  top: 5.5rem;
  min-height: 760px;
  padding-bottom: 4rem;
}

.cln-issues-luxe__visual-main {
  position: relative;
  height: 620px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(177,137,106,0.14);
  box-shadow: none;
  background: #3a2a22;
}

.cln-issues-luxe__visual-main img,
    .cln-issues-luxe__mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cln-issues-luxe__visual-main::after,
    .cln-issues-luxe__mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,250,244,0.02) 0%, rgba(16,12,10,0.34) 100%);
}

.cln-issues-luxe__visual-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.cln-issues-luxe__visual-kicker,
    .cln-issues-luxe__mini-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(255,249,241,0.24);
  border: 1px solid rgba(255,246,237,0.28);
  backdrop-filter: blur(12px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,248,241,0.96);
}

.cln-issues-luxe__visual-title {
  max-width: 11ch;
  font-family: 'Forum', serif;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #fffaf5;
}

.cln-issues-luxe__visual-note {
  max-width: 22rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  color: rgba(255,244,236,0.94);
}

.cln-issues-luxe__mini {
  position: absolute;
  width: 180px;
  height: 220px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(177,137,106,0.14);
  box-shadow: none;
  background: #3a2a22;
}

.cln-issues-luxe__mini--top {
  top: 2rem;
  right: -0.75rem;
  transform: rotate(2deg);
}

.cln-issues-luxe__mini--bottom {
  bottom: 1rem;
  left: 1.4rem;
  transform: rotate(-2deg);
}

.cln-issues-luxe__mini-copy {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
}

.cln-issues-luxe__mini-title {
  font-family: 'Forum', serif;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
  color: #fff9f3;
}

.cln-issues-luxe__rail {
  position: relative;
  padding-left: 0;
}

.cln-issues-luxe__rail::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  width: auto;
  background: rgba(176,125,82,0.24);
}

.cln-issues-luxe__grid {
  display: grid;
  gap: 0;
}

.cln-issues-luxe__card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding: 1.5rem 0;
  border: 0;
  border-bottom: 1px solid rgba(176,125,82,0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: left center;
}

.cln-issues-luxe__card:nth-child(even) {
  margin-left: 0;
}

.cln-issues-luxe__card::before {
  display: none;
}

.cln-issues-luxe__index {
  display: inline-flex;
  align-items: baseline;
  min-width: auto;
  font-family: 'Bodoni Moda', serif;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(176,125,82,0.82);
}

.cln-issues-luxe__card-body {
  display: grid;
  gap: 0.38rem;
}

.cln-issues-luxe__issue-meta {
  display: inline-flex;
  width: fit-content;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(90,62,38,0.82);
}

.cln-issues-luxe__card h3 {
  margin: 0;
  font-family: 'Forum', serif;
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #16110d;
}

.cln-issues-luxe__card p {
  margin: 0;
  max-width: 34rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0.01em;
  color: rgba(40,26,16,0.84);
}

@media (max-width: 1100px) {

      .cln-issues-luxe__intro,
      .cln-issues-luxe__stage {
        grid-template-columns: 1fr;
      }
      .cln-issues-luxe__title {
        max-width: none;
      }
      .cln-issues-luxe__lead {
        padding-right: 0;
      }
      .cln-issues-luxe__ornament {
        display: none;
      }
      .cln-issues-luxe__visual {
        position: relative;
        top: auto;
        min-height: auto;
      }
      .cln-issues-luxe__aside {
        border-left: 0;
        border-top: 1px solid rgba(177,137,106,0.18);
        padding-top: 1.25rem;
        padding-left: 0;
        padding-right: 0;
      }
    
}

@media (max-width: 768px) {

      .cln-issues-luxe::after {
        display: none;
      }
      .cln-issues-luxe__title {
        font-size: clamp(2.4rem, 10vw, 4rem);
      }
      .cln-issues-luxe__visual {
        min-height: auto;
        padding-bottom: 0;
        position: relative;
      }
      .cln-issues-luxe__visual-main {
        height: 320px;
      }
      .cln-issues-luxe__mini {
        width: 32%;
        height: 120px;
      }
      .cln-issues-luxe__mini--top {
        top: auto;
        bottom: 1rem;
        right: 1rem;
      }
      .cln-issues-luxe__mini--bottom {
        left: 1rem;
        bottom: -0.5rem;
      }
      .cln-issues-luxe__rail {
        padding-left: 0;
      }
      .cln-issues-luxe__card,
      .cln-issues-luxe__card:nth-child(even) {
        margin-left: 0;
      }

}

@media (max-width: 560px) {

      /* ── Section: tighter padding ── */
      .cln-section.cln-issues-luxe {
        padding: 2.5rem 1rem 2rem;
      }
      .cln-issues-luxe__inner {
        padding: 0;
      }
      .cln-issues-luxe__intro {
        margin-bottom: 1.5rem;
        padding-top: 1rem;
        gap: 1.2rem;
      }

      /* ── Title: smaller ── */
      .cln-issues-luxe__title {
        font-size: clamp(2rem, 9vw, 3rem);
      }
      .cln-issues-luxe__copy {
        font-size: 0.88rem;
        line-height: 1.55;
      }
      .cln-issues-luxe__signature {
        display: none;
      }

      /* ── Aside stats: horizontal compact strip ── */
      .cln-issues-luxe__aside-label {
        margin-bottom: 0.5rem;
        font-size: 0.62rem;
      }
      .cln-issues-luxe__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
      }
      .cln-issues-luxe__stat {
        padding-bottom: 0;
        border-bottom: 0;
        border-right: 1px solid rgba(177,137,106,0.14);
        padding-right: 0.6rem;
      }
      .cln-issues-luxe__stat:last-child {
        border-right: 0;
        padding-right: 0;
      }
      .cln-issues-luxe__stat-value {
        font-size: 1.4rem;
        margin-bottom: 0.1rem;
      }
      .cln-issues-luxe__stat-copy {
        font-size: 0.8rem;
        line-height: 1.35;
      }

      /* ── Visual: single compact image, hide minis ── */
      .cln-issues-luxe__visual {
        display: block;
        min-height: auto;
        padding-bottom: 0;
      }
      .cln-issues-luxe__visual-main {
        height: 200px;
        border-radius: 0.75rem;
        overflow: hidden;
      }
      .cln-issues-luxe__visual-copy {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
      }
      .cln-issues-luxe__visual-title {
        font-size: 1.15rem;
        max-width: none;
      }
      .cln-issues-luxe__visual-note {
        display: none;
      }
      .cln-issues-luxe__mini {
        display: none;
      }

      /* ── Cards: ultra-compact rows ── */
      .cln-issues-luxe__rail::before {
        display: none;
      }
      .cln-issues-luxe__rail {
        padding-left: 0;
      }
      .cln-issues-luxe__card {
        grid-template-columns: 36px 1fr;
        gap: 0.5rem;
        padding: 0.75rem 0;
        border-radius: 0;
      }
      .cln-issues-luxe__index {
        font-size: 1.3rem;
      }
      .cln-issues-luxe__issue-meta {
        display: none;
      }
      .cln-issues-luxe__card h3 {
        font-size: 1.05rem;
        line-height: 1.1;
      }
      .cln-issues-luxe__card p {
        font-size: 0.82rem;
        line-height: 1.5;
      }

      /* ── Stage grid: no gap between visual & cards ── */
      .cln-issues-luxe__stage {
        gap: 1rem;
      }

      /* ── Disclaimer: tighter on mobile ── */
      .cln-issues-luxe__disclaimer {
        margin-top: 1rem !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.78rem !important;
        line-height: 1.55 !important;
      }

}

/* ── FAQ ── */
    .cln-faq-luxe {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vh, 3rem) 1.5rem;
  background: linear-gradient(180deg, #fbf7f1 0%, #f5ede2 100%);
  color: #17120f;
}

.cln-faq-luxe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(123,90,64,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123,90,64,0.04) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.18));
  pointer-events: none;
}

.cln-faq-luxe__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4.75rem);
  align-items: center;
}

.cln-faq-luxe__intro {
  position: sticky;
  top: 5rem;
  padding-top: 0;
}

.cln-faq-luxe__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(139,101,70,0.82);
}

.cln-faq-luxe__eyebrow::before {
  content: '';
  width: 3.2rem;
  height: 1px;
  background: rgba(139,101,70,0.42);
}

.cln-faq-luxe__title {
  margin: 0;
  max-width: 7ch;
  font-family: 'Forum', serif;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: #17120f;
}

.cln-faq-luxe__title em {
  display: block;
  margin-top: 0.16em;
  font-family: 'Forum', serif;
  font-style: italic;
  font-weight: 400;
  color: #b78357;
}

.cln-faq-luxe__copy {
  max-width: 24rem;
  margin-top: 1.1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(68,50,37,0.68);
}

.cln-faq-luxe__meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(177,137,106,0.2);
}

.cln-faq-luxe__meta span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(111,84,63,0.52);
}

.cln-faq-luxe__list {
  counter-reset: faq;
  border-top: 1px solid rgba(177,137,106,0.24);
}

.cln-faq-luxe__list:not(.is-expanded) .cln-faq-item--extra {
  display: none;
}

.cln-faq-item {
  counter-increment: faq;
  border-bottom: 1px solid rgba(177,137,106,0.18);
}

.cln-faq-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: start;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.cln-faq-btn::before {
  content: counter(faq, decimal-leading-zero);
  font-family: 'Forum', serif;
  font-size: 1.55rem;
  line-height: 1;
  color: rgba(183,131,87,0.9);
  letter-spacing: -0.03em;
  padding-top: 0.1rem;
}

.cln-faq-btn > span:first-child {
  font-family: 'Forum', serif;
  font-size: clamp(1.15rem, 1.45vw, 1.45rem);
  line-height: 1.08;
  color: #17120f;
}

.cln-faq-btn__icon {
  flex-shrink: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(177,137,106,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.45);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  margin-top: 0.1rem;
}

.cln-faq-item.open .cln-faq-btn__icon {
  transform: rotate(45deg);
  background: #17120f;
  border-color: #17120f;
}

.cln-faq-item.open .cln-faq-btn__icon svg path {
  stroke: #fff;
}

.cln-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding-left: calc(74px + 1.4rem);
}

.cln-faq-answer p {
  max-width: 46rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.94rem;
  line-height: 1.82;
  color: rgba(67,49,37,0.74);
}

.cln-faq-item.open .cln-faq-answer {
  max-height: 360px;
  padding-bottom: 1.15rem;
}

.cln-faq-luxe__more {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid rgba(177,137,106,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #17120f;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.cln-faq-luxe__more:hover {
  background: rgba(255,255,255,0.74);
  border-color: rgba(177,137,106,0.4);
  transform: translateY(-1px);
}

.cln-faq-luxe__more-icon {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(177,137,106,0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.cln-faq-luxe__list.is-expanded + .cln-faq-luxe__more .cln-faq-luxe__more-icon {
  transform: rotate(45deg);
}

@media (max-width: 960px) {

      .cln-faq-luxe__inner {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .cln-faq-luxe__intro {
        position: relative;
        top: auto;
      }
    
}

@media (max-width: 640px) {

      .cln-faq-luxe {
        min-height: auto;
        display: block;
      }
      .cln-faq-btn {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 0.9rem;
      }
      .cln-faq-btn::before {
        font-size: 1.15rem;
      }
      .cln-faq-btn > span:first-child {
        font-size: 0.98rem;
      }
      .cln-faq-btn__icon {
        width: 2rem;
        height: 2rem;
      }
      .cln-faq-answer {
        padding-left: calc(52px + 0.9rem);
      }
      .cln-faq-luxe__title {
        max-width: none;
        font-size: clamp(2.45rem, 13vw, 4.2rem);
      }
    
}

/* ── Final CTA ── */
    .cln-final-cta {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cln-final-cta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
}

.cln-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('media/texture.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

@keyframes fadeUp {
 to { opacity: 1; transform: translateY(0); } 
}

.cln-hero__content h1, .cln-hero__content p, .cln-hero__content div {
  opacity: 1 !important;
  transform: none !important;
}

/* ======================================================
   ATELIER PRICING — REDESIGNED: HIGH CONTRAST, SANS-SERIF,
   REAL BUTTONS, STRONG FEATURED CARD, CLEAR HIERARCHY
   ====================================================== */

.rl-section {
  background: #F0EAE0;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  padding: clamp(3rem, 6vh, 5rem) 0;
}

.rl-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* ── Section header ── */
.rl-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(28,21,16,0.12);
  margin-bottom: 2.5rem;
  opacity: 1;
  animation: none;
  flex-shrink: 0;
}

.rl-header__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rl-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A5A2A;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.rl-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #7A5A2A;
  flex-shrink: 0;
}

.rl-heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #1A1410;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.rl-heading em {
  font-style: normal;
  color: #1A1410;
}

.rl-heading__sub {
  display: none;
}

.rl-descriptor {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-weight: 400;
  font-style: normal;
  color: #4A3A2A;
  line-height: 1.65;
  max-width: 38rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: end;
  padding-bottom: 0.25rem;
}

/* ── Cards grid ── */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-height: 0;
  overflow: visible;
  border: none;
}

/* ── Individual card ── */
.pc-card {
  position: relative;
  background: #FDFAF5;
  border: 1.5px solid rgba(28,21,16,0.1);
  border-radius: 6px;
  padding: clamp(1.5rem, 2.5vh, 2rem) clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: default;
  overflow: hidden;
  min-height: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  opacity: 1;
  animation: none;
}

.pc-card:nth-child(1) { animation-delay: 0s; }
.pc-card:nth-child(2) { animation-delay: 0s; }
.pc-card:nth-child(3) { animation-delay: 0s; }

.pc-card:last-child {
  border-right: 1.5px solid rgba(28,21,16,0.1);
}

.pc-card:hover {
  border-color: rgba(28,21,16,0.2);
  box-shadow: 0 4px 24px rgba(28,21,16,0.06);
  transform: none;
}

.pc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(28,21,16,0.08);
  transform: none;
  transition: background 0.25s ease;
}

.pc-card:hover::before {
  background: rgba(28,21,16,0.15);
}

/* ── Featured card — STRONG visual distinction ── */
.pc-card--featured {
  background: #1A1410;
  border-color: #1A1410;
  box-shadow: 0 8px 40px rgba(28,21,16,0.18);
}

.pc-card--featured::before {
  height: 4px;
  background: #C1A068;
  animation: none;
  background-size: auto;
}

.pc-card--featured:hover {
  background: #221C15;
  border-color: #221C15;
  box-shadow: 0 12px 48px rgba(28,21,16,0.25);
  transform: none;
}

.pc-card--featured:hover::before {
  background: #D4B47A;
  animation: none;
  background-size: auto;
}

/* ── Badge — strong pill label ── */
.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1A1410;
  background: #C1A068;
  padding: 0.3rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.pc-badge::before {
  content: '★';
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 0.55rem;
}

/* ── Tier — small caps label ── */
.pc-tier {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A5A2A;
  margin-bottom: 0.4rem;
  display: block;
}

.pc-card--featured .pc-tier {
  color: #C1A068;
}

/* ── Service name — clear, bold, no decorative serif ── */
.pc-name {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  color: #1A1410;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

.pc-card--featured .pc-name {
  color: #FDFAF5;
}

/* ── Summary — plain text, readable ── */
.pc-summary {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: #4A3A2A;
  margin: 0 0 0.75rem;
  max-width: none;
}

.pc-card--featured .pc-summary {
  color: rgba(253,250,245,0.7);
}

/* ── Best-for tag — BOLD, scannable ── */
.pc-best-for {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
  background: rgba(28,21,16,0.05);
  color: #1A1410;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 1.25rem;
}

.pc-best-for::before {
  content: '→';
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
  color: #7A5A2A;
}

.pc-card--featured .pc-best-for {
  background: rgba(193,160,104,0.15);
  color: #FDFAF5;
}

.pc-card--featured .pc-best-for::before {
  background: transparent;
  color: #C1A068;
}

/* ── Divider — stronger ── */
.pc-divider {
  width: 100%;
  height: 1px;
  background: rgba(28,21,16,0.1);
  margin: 0 0 1.25rem;
  transform: scaleX(1);
  opacity: 1;
  transition: none;
}

.pc-card.pc-card--visible .pc-divider,
.pc-card:hover .pc-divider {
  transform: scaleX(1);
  opacity: 1;
}

.pc-card--featured .pc-divider {
  background: rgba(193,160,104,0.3);
  width: 100%;
}

/* ── Description — now visible ── */
.pc-desc {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  font-style: normal;
  color: #5A4A38;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.pc-card--featured .pc-desc {
  color: rgba(253,250,245,0.6);
}

/* ── Meta boxes — now visible ── */
.pc-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.pc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pc-meta-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A5A2A;
}

.pc-meta-value {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #4A3A2A;
  line-height: 1.5;
}

.pc-card--featured .pc-meta-label {
  color: #C1A068;
}

.pc-card--featured .pc-meta-value {
  color: rgba(253,250,245,0.65);
}

/* ── Includes list — more contrast, visible bullets ── */
.pc-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pc-includes li {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #2A2018;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  line-height: 1.45;
  grid-template-columns: unset;
}

.pc-includes li::before {
  content: '✓';
  color: #5A8A3A;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  background: none;
  background-image: none;
  width: auto;
  height: auto;
}

.pc-card--featured .pc-includes li {
  color: rgba(253,250,245,0.85);
}

.pc-card--featured .pc-includes li::before {
  color: #8BC34A;
  background: none;
  background-image: none;
}

/* ── Price block — clear, spacious ── */
.pc-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(28,21,16,0.08);
  flex-wrap: wrap;
}

.pc-card--featured .pc-price-block {
  border-top-color: rgba(193,160,104,0.3);
}

.pc-price-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: #1A1410;
  line-height: 1;
  letter-spacing: -0.03em;
}

.pc-card--featured .pc-price-num {
  color: #FDFAF5;
}

.pc-price-unit {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #5A4A38;
  align-self: baseline;
  padding-bottom: 0;
}

.pc-card--featured .pc-price-unit {
  color: rgba(253,250,245,0.55);
}

/* ── CTA — REAL BUTTON, not text link ── */
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FDFAF5;
  padding: 0.85rem 1.5rem;
  border: none;
  border-bottom: none;
  border-radius: 4px;
  margin-top: 1rem;
  background: #1A1410;
  position: static;
  overflow: visible;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  width: 100%;
  box-shadow: 0 2px 8px rgba(28,21,16,0.12);
  cursor: pointer;
}

.pc-cta::before {
  display: none;
}

.pc-cta span,
.pc-cta svg {
  position: static;
  z-index: auto;
}

.pc-cta:hover {
  background: #2A2018;
  box-shadow: 0 4px 16px rgba(28,21,16,0.2);
  transform: translateY(-1px);
  color: #FDFAF5;
  border-bottom-color: transparent;
}

.pc-cta:hover::before {
  transform: none;
}

.pc-cta svg {
  transition: transform 0.2s ease;
  stroke-width: 2;
  stroke: #FDFAF5;
}

.pc-cta:hover svg {
  transform: translateX(3px);
}

/* Gold CTA for featured — inverted */
.pc-cta--gold {
  background: #C1A068;
  border: none;
  border-bottom: none;
  border-radius: 4px;
  color: #1A1410;
  box-shadow: 0 2px 8px rgba(193,160,104,0.25);
  padding: 0.85rem 1.5rem;
}

.pc-cta--gold::before {
  display: none;
}

.pc-cta--gold:hover {
  color: #1A1410;
  background: #D4B47A;
  box-shadow: 0 4px 16px rgba(193,160,104,0.35);
  border-radius: 4px;
  border-color: transparent;
}

.pc-cta--gold svg {
  stroke: #1A1410;
}

/* ── Footnote — cleaner, shorter, connected ── */
.rl-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(28,21,16,0.08);
  margin-top: 2rem;
  opacity: 1;
  animation: none;
}

.rl-footnote__text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  color: #5A4A38;
  line-height: 1.6;
}

.rl-footnote__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.rl-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #1A1410;
}

.rl-trust-item::before {
  content: '✓';
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  flex-shrink: 0;
  color: #5A8A3A;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .rl-section { height: auto; min-height: 0; padding: 3rem 0; }
  .rl-header { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 1.5rem; }
  .rl-descriptor { align-self: start; }
  .pc-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pc-card { border-right: 1.5px solid rgba(28,21,16,0.1); }
  .pc-card:last-child { border-right: 1.5px solid rgba(28,21,16,0.1); border-bottom: 1.5px solid rgba(28,21,16,0.1); }
  .pc-card--featured { order: -1; }
}

@media (max-width: 540px) {
  .rl-section { padding: 2.5rem 0; }
  .rl-inner { padding: 0 1.2rem; }
  .rl-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .pc-card { padding: 1.5rem 1.2rem; }
  .pc-price-num { font-size: 2rem; }
  .pc-cta { width: 100%; }
}

/* ── Territory Ledger ── */
    @keyframes sa-rule {

      from { transform: scaleX(0); opacity: 0; }
      to   { transform: scaleX(1); opacity: 1; }
    
}

@keyframes sa-rise {

      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    
}

@keyframes sa-dot-pop {

      from { opacity: 0; transform: scale(0); }
      to   { opacity: 1; transform: scale(1); }
    
}

.sa-section {
  background: var(--clr-bg-warm);
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vh, 5.5rem) 0 clamp(2.5rem, 6vh, 4.5rem);
}

/* Subtle crosshatch grid texture */
    .sa-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(184,149,106,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184,149,106,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Radial warm glow at center */
    .sa-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,169,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.sa-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

/* ── Top header strip ── */
    .sa-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
  opacity: 0;
  animation: sa-rise 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

.sa-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-gold-mid);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.sa-kicker::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--clr-gold-mid);
}

.sa-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  color: var(--clr-ink-deep);
  line-height: 1.0;
  letter-spacing: -0.03em;
}

.sa-heading em {
  font-style: italic;
  color: var(--clr-gold);
}

.sa-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: #6B5744;
  line-height: 1.7;
  max-width: 280px;
  text-align: right;
  border-right: 2px solid rgba(184,149,106,0.3);
  padding-right: 1.2rem;
}

/* ── Full-width animated rule ── */
    .sa-top-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-gold) 0%, rgba(184,149,106,0.3) 70%, transparent 100%);
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  animation: sa-rule 1s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

/* ── Five-column territory grid ── */
    .sa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

/* Vertical separators between columns */
    .sa-col {
  position: relative;
  padding: 0 clamp(1rem, 2.5vw, 2rem);
  opacity: 0;
  animation: sa-rise 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
}

.sa-col:first-child {
  padding-left: 0;
}

.sa-col:last-child {
  padding-right: 0;
}

.sa-col:nth-child(1) {
  animation-delay: 0.55s;
}

.sa-col:nth-child(2) {
  animation-delay: 0.68s;
}

.sa-col:nth-child(3) {
  animation-delay: 0.81s;
}

.sa-col:nth-child(4) {
  animation-delay: 0.94s;
}

.sa-col:nth-child(5) {
  animation-delay: 1.07s;
}

/* Vertical rule between cols */
    .sa-col + .sa-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--clr-gold) 0%, rgba(184,149,106,0.15) 100%);
}

/* Column hover glow */
    .sa-col::after {
  content: '';
  position: absolute;
  inset: -0.5rem -0.8rem;
  background: rgba(184,149,106,0.04);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sa-col:hover::after {
  opacity: 1;
}

/* ── City name ── */
    .sa-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 500;
  color: var(--clr-ink-deep);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.sa-col:hover .sa-city {
  color: var(--clr-gold-mid);
}

/* City index number */
    .sa-city-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(184,149,106,0.5);
  display: block;
  margin-bottom: 0.9rem;
}

/* Thin rule under city name */
    .sa-city-rule {
  width: 100%;
  height: 1px;
  background: rgba(184,149,106,0.2);
  margin-bottom: clamp(0.8rem, 1.5vh, 1.2rem);
}

/* ── Locality list ── */
    .sa-locs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sa-locs li {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 500;
  color: var(--clr-text-warm);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.sa-locs li:hover {
  color: var(--clr-gold-mid);
  transform: translateX(3px);
}

/* Gold dot */
    .sa-locs li::before {
  content: '';
  width: 4px;
  height: 4px;
  min-width: 4px;
  background: var(--clr-gold);
  border-radius: 50%;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sa-locs li:hover::before {
  opacity: 1;
  transform: scale(1.5);
}

/* ── Bottom footnote strip ── */
    .sa-footer {
  margin-top: clamp(2rem, 4vh, 3rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(184,149,106,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: sa-rise 0.6s ease 1.25s forwards;
}

.sa-footer__note {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  color: #7A6355;
  font-style: italic;
}

.sa-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--clr-ink-deep);
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(28,21,16,0.2);
  border-radius: 99px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease,
                  transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}

.sa-footer__cta:hover {
  background: var(--clr-ink-deep);
  color: var(--clr-bg-warm);
  border-color: var(--clr-ink-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,21,16,0.15);
}

.sa-footer__cta svg {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.sa-footer__cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 580px) {

      .sa-grid { grid-template-columns: repeat(2, 1fr); }
      .sa-col:nth-child(3)::before { display: none; }
      .sa-footer { flex-direction: column; align-items: flex-start; }
      .sa-locs { font-size: 0.78rem; line-height: 1.8; }
      .sa-city-rule { margin-bottom: 0.5rem; }

}

@media (max-width: 560px) {

      .sa-section { padding: 2rem 0 1.6rem; }
      .sa-inner { padding: 0 1rem; }
      .sa-header {
        margin-bottom: 0.8rem; gap: 0.6rem;
        align-items: flex-start !important;
        text-align: left !important;
      }
      .sa-kicker { font-size: 0.55rem; margin-bottom: 0.3rem; justify-content: flex-start; }
      .sa-heading {
        font-size: clamp(1.7rem, 8vw, 2.2rem); line-height: 1.05;
        text-align: left !important;
      }
      .sa-tagline {
        font-size: 0.75rem; line-height: 1.4;
        text-align: left !important; max-width: none;
        border-right: none; padding-right: 0;
        border-left: 1.5px solid rgba(184,149,106,0.3); padding-left: 0.8rem;
      }
      .sa-top-rule { margin-bottom: 0.8rem; }

      /* 3-col top row (Delhi, Gurugram, Noida) + 2-col bottom (Faridabad, Ghaziabad) */
      .sa-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem 0.6rem;
      }
      .sa-col { padding: 0; }
      .sa-col + .sa-col::before { display: none; }
      .sa-col::after { display: none; }

      /* Bottom row: 2 cities span into 3-col grid evenly */
      .sa-col:nth-child(4) { grid-column: 1 / 2; }
      .sa-col:nth-child(5) { grid-column: 2 / 3; }

      .sa-city-num { font-size: 0.5rem; margin-bottom: 0.1rem; letter-spacing: 0.12em; }
      .sa-city { font-size: 0.88rem; }
      .sa-city-rule { margin: 0.25rem 0 0.3rem; width: 18px; }
      .sa-locs { font-size: 0.7rem; line-height: 1.55; }
      .sa-locs li { padding: 0.08rem 0 0.08rem 0.65rem; }
      .sa-locs li::before { width: 3px; height: 3px; }

      .sa-footer {
        margin-top: 1rem; padding-top: 0.8rem; gap: 0.5rem;
        flex-direction: column; align-items: flex-start;
        border-top: 1px solid rgba(184,149,106,0.15);
      }
      .sa-footer__note { font-size: 0.75rem; color: #8a7260; }
      .sa-footer__cta {
        font-size: 0.68rem; padding: 0.6rem 1.4rem;
        background: rgba(184,149,106,0.08);
        border-color: rgba(184,149,106,0.35);
      }

}

/* ══════════════════════════════════════════════════════
       MAISON LÉGENDAIRE — Why Us
    ══════════════════════════════════════════════════════ */
    @keyframes ml-rise {
 from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} 
}

@keyframes ml-fadein {
 from{opacity:0} to{opacity:1} 
}

@keyframes ml-rule {
 from{transform:scaleX(0);opacity:0} to{transform:scaleX(1);opacity:1} 
}

@keyframes ml-kenburn {
 from{transform:scale(1.06)} to{transform:scale(1)} 
}

@keyframes ml-shimmer {

      0%,100% { background-position: -300% center; }
      50%     { background-position: 300% center; }
    
}

.ml-section {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #F0E6D3;
}

/* ──────────────────────────────────────
       LEFT PANEL — Gallery Image
    ────────────────────────────────────── */
    .ml-image-panel {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
}

/* The actual image — slow Ken Burns */
    .ml-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: ml-kenburn 14s cubic-bezier(0.16,1,0.3,1) forwards;
  transform-origin: center;
}

/* Rich bottom gradient — fades image to dark */
    .ml-image-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,14,10,0.88) 0%, rgba(20,14,10,0.3) 38%, transparent 65%),
        linear-gradient(to right, rgba(20,14,10,0.15) 0%, transparent 40%);
  z-index: 2;
}

/* Inset gold frame — luxury gallery feel */
    .ml-frame {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(212,169,106,0.45);
  z-index: 3;
  pointer-events: none;
}

/* Frame corner accents */
    .ml-frame::before, .ml-frame::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--clr-gold-bright);
  border-style: solid;
}

.ml-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.ml-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* Vertical brand label — rotated left edge */
    .ml-vert-label {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(212,169,106,0.6);
  white-space: nowrap;
  z-index: 4;
  opacity: 0;
  animation: ml-fadein 1s ease 1.2s forwards;
}

/* Bottom stat — large and dramatic */
    .ml-image-stat {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 4;
  opacity: 0;
  animation: ml-rise 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}

.ml-image-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--clr-bg-warm);
  line-height: 1;
  letter-spacing: -0.05em;
  display: block;
}

.ml-image-stat__sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(212,169,106,0.75);
  display: block;
  margin-top: 0.4rem;
}

/* Thin gold line above stat */
    .ml-image-stat::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(212,169,106,0.6);
  margin: 0 auto 0.9rem;
}

/* ──────────────────────────────────────
       RIGHT PANEL — Content
    ────────────────────────────────────── */
    .ml-content-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 4vh, 5rem) clamp(3rem, 6%, 6rem) clamp(3rem, 4vh, 5rem) clamp(2.5rem, 5%, 5rem);
  position: relative;
  background: #F7F1E6;
}

/* Decorative large circle — top right */
    .ml-content-panel::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(184,149,106,0.1);
  pointer-events: none;
}

/* Grain overlay on right panel */
    .ml-content-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Everything inside is above the decorative elements */
    .ml-content-panel > * {
  position: relative;
  z-index: 1;
}

/* ── Kicker ── */
    .ml-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #7A5420;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: ml-rise 0.7s ease 0.1s forwards;
}

.ml-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--clr-gold-mid);
  flex-shrink: 0;
}

/* ── Main heading ── */
    .ml-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 2.9vw, 3.2rem);
  font-weight: 500;
  color: var(--clr-ink-deep);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 0;
  opacity: 0;
  animation: ml-rise 0.75s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

.ml-heading__line {
  display: block;
}

.ml-heading em {
  font-style: italic;
  color: var(--clr-gold);
  display: block;
}

/* ── Animated gold rule ── */
    .ml-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-gold) 0%, rgba(184,149,106,0.25) 65%, transparent 100%);
  margin: clamp(1rem, 2.2vh, 1.6rem) 0;
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  animation: ml-rule 1s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}

/* ── 2×3 Reasons grid ── */
    .ml-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

.ml-cell {
  padding: clamp(0.75rem, 1.6vh, 1.1rem) clamp(0.8rem, 1.4vw, 1.2rem);
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  animation: ml-rise 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
}

.ml-cell:nth-child(1) {
  animation-delay: 0.45s;
}

.ml-cell:nth-child(2) {
  animation-delay: 0.54s;
}

.ml-cell:nth-child(3) {
  animation-delay: 0.63s;
}

.ml-cell:nth-child(4) {
  animation-delay: 0.72s;
}

.ml-cell:nth-child(5) {
  animation-delay: 0.81s;
}

.ml-cell:nth-child(6) {
  animation-delay: 0.90s;
}

/* Grid borders — each cell */
    .ml-cell {
  border-bottom: 1px solid rgba(184,149,106,0.16);
}

.ml-cell:nth-child(odd) {
  border-right: 1px solid rgba(184,149,106,0.16);
}

.ml-cell:nth-child(5),
    .ml-cell:nth-child(6) {
  border-bottom: none;
}

/* Left gold accent strip on hover */
    .ml-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--clr-gold-bright), var(--clr-gold-mid));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

.ml-cell:nth-child(even)::before {
  left: auto;
  right: 0;
}

.ml-cell:hover::before {
  transform: scaleY(1);
}

/* Warm wash on hover */
    .ml-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,149,106,0.04);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ml-cell:hover::after {
  opacity: 1;
}

.ml-cell > * {
  position: relative;
  z-index: 1;
}

/* Cell number — large italic ghost */
    .ml-cell__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(150,113,62,0.72);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.2rem;
  transition: color 0.3s ease;
}

.ml-cell:hover .ml-cell__num {
  color: var(--clr-gold);
}

/* Cell title */
    .ml-cell__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-weight: 600;
  color: var(--clr-ink-deep);
  line-height: 1.15;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.ml-cell:hover .ml-cell__title {
  color: #3D2010;
}

/* Cell body */
    .ml-cell__body {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.875rem, 1.0vw, 0.9375rem);
  font-weight: 400;
  color: #4A3526;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

/* ── Responsive ── */
    @media (max-width: 960px) {

      .ml-section { height: auto; max-height: none; flex-direction: column; }
      .ml-image-panel { flex: 0 0 45vh; }
      .ml-content-panel { padding: 3rem 5%; }
      .ml-grid { grid-template-columns: 1fr; }

}

@media (max-width: 580px) {


      /* ── Section ── */
      .ml-section {
        min-height: auto;
        background: #F7F1E6;
        flex-direction: column;
      }

      /* ── Image: tall cinematic strip ── */
      .ml-image-panel {
        flex-basis: 42vh;
        min-height: 240px;
      }
      .ml-image-panel::before {
        background:
          linear-gradient(to top, rgba(20,14,10,0.88) 0%, rgba(20,14,10,0.3) 50%, transparent 80%);
      }
      .ml-frame { inset: 1rem; }
      .ml-vert-label { display: none; }

      /* Stat: large and centred */
      .ml-image-stat {
        left: 0; right: 0;
        bottom: 1.8rem;
        text-align: center;
      }
      .ml-image-stat::before { margin: 0 auto 0.8rem; }
      .ml-image-stat__num { font-size: clamp(3rem, 14vw, 4rem); }
      .ml-image-stat__sub { font-size: 0.52rem; letter-spacing: 0.28em; }

      /* ── Content panel: clean, no card overlap ── */
      .ml-content-panel {
        margin: 0;
        padding: 2.2rem 1.4rem 2.8rem;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid rgba(184,149,106,0.2);
      }
      .ml-content-panel::before {
        top: -180px; right: -180px;
        width: 320px; height: 320px;
      }

      /* ── Kicker ── */
      .ml-kicker {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.6rem;
        letter-spacing: 0.22em;
      }
      .ml-kicker::before { width: 20px; }

      /* ── Heading ── */
      .ml-heading {
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: 0.92;
        letter-spacing: -0.045em;
        max-width: none;
      }
      .ml-heading__line { display: block; }
      .ml-heading em { margin-top: 0.4rem; max-width: none; }

      /* ── Rule ── */
      .ml-rule { margin: 1.3rem 0 1.6rem; }

      /* ── Grid: single column rows ── */
      .ml-grid {
        grid-template-columns: 1fr;
        gap: 0;
      }

      /* ── Cell: clean row with left gold accent ── */
      .ml-cell {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.1rem 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(184,149,106,0.14);
        border-radius: 0;
        backdrop-filter: none;
        box-shadow: none;
      }
      .ml-cell:nth-child(6) { border-bottom: none; }
      .ml-cell:nth-child(odd) { border-right: none; }
      .ml-cell:nth-child(5) { border-bottom: 1px solid rgba(184,149,106,0.14); }

      /* Number: gold badge on the left */
      .ml-cell__num {
        flex-shrink: 0;
        width: 2rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.85rem;
        font-style: italic;
        font-weight: 500;
        color: var(--clr-gold-mid);
        background: rgba(184,149,106,0.1);
        border-radius: 50%;
        margin-bottom: 0;
        letter-spacing: 0;
        margin-top: 0.1rem;
      }
      .ml-cell:hover .ml-cell__num {
        background: rgba(184,149,106,0.2);
        color: #7A5420;
      }

      /* Text block */
      .ml-cell__text {
        flex: 1;
        min-width: 0;
      }
      .ml-cell__title {
        font-size: 1rem;
        line-height: 1.15;
        max-width: none;
        margin-bottom: 0.3rem;
      }
      .ml-cell__body {
        font-size: 0.83rem;
        line-height: 1.58;
        max-width: none;
        margin-top: 0;
      }

      /* Gold accent line on left side of the whole cell row */
      .ml-cell::before {
        display: none;
      }
      .ml-cell::after {
        display: none;
      }

}

@media (max-width: 560px) {

      /* ── Content panel: tighter padding ── */
      .ml-content-panel {
        padding: 1.6rem 1rem 1.8rem;
      }

      /* ── Kicker ── */
      .ml-kicker { margin-bottom: 0.6rem; }

      /* ── Heading ── */
      .ml-heading {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
      }

      /* ── Rule ── */
      .ml-rule { margin: 1rem 0 1.2rem; }

      /* ── Cells: compact rows ── */
      .ml-cell {
        gap: 0.6rem;
        padding: 0.7rem 0;
      }

      .ml-cell__num {
        width: 1.6rem;
        height: 1.6rem;
        font-size: 0.75rem;
      }

      .ml-cell__title {
        font-size: 0.92rem;
        margin-bottom: 0.15rem;
      }
      .ml-cell__body {
        font-size: 0.78rem;
        line-height: 1.48;
      }

      /* ── Disclaimer paragraph ── */
      .ml-content-panel > p:last-child {
        margin-top: 1.2rem !important;
        padding: 0.6rem 0.8rem !important;
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
      }
}

/* ══ WHO NEEDS — PORTRAIT GALLERY ══ */
    .pg-section {
  position: relative;
  background: #F5EDE0;
  overflow: hidden;
}

/* Subtle noise grain overlay */
    .pg-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── Top header band ── */
    .pg-header {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem) clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  border-bottom: 1px solid rgba(168,114,42,0.18);
}

.pg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(140, 88, 28, 0.92);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: pg-up 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
}

.pg-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(140,88,28,0.5);
  flex-shrink: 0;
}

.pg-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #17100A;
  margin: 0;
  opacity: 0;
  animation: pg-up 1s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

.pg-heading em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  color: #9A6018;
  font-size: 1.12em;
  letter-spacing: -0.025em;
}

.pg-header__right {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-bottom: 0.4rem;
}

.pg-intro {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.74;
  color: rgba(40, 26, 12, 0.74);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 28rem;
  margin: 0;
  opacity: 0;
  animation: pg-up 0.85s cubic-bezier(0.16,1,0.3,1) 0.38s forwards;
}

.pg-count-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  animation: pg-up 0.8s ease 0.52s forwards;
}

.pg-count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: rgba(168,114,42,0.28);
  letter-spacing: -0.04em;
}

.pg-count-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(120, 78, 26, 0.6);
  line-height: 1.5;
}

/* ── Portrait grid ── */
    .pg-grid {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 6vw, 7rem) clamp(4rem, 7vw, 8rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.4rem;
}

/* Each portrait card */
    .pg-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(52px) scale(0.96);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
        transform 0.85s cubic-bezier(0.16,1,0.3,1);
}

/* Staggered reveal */
    .pg-card:nth-child(1) {
  transition-delay: 0s;
}

.pg-card:nth-child(2) {
  transition-delay: 0.08s;
}

.pg-card:nth-child(3) {
  transition-delay: 0.16s;
}

.pg-card:nth-child(4) {
  transition-delay: 0.24s;
}

.pg-card:nth-child(5) {
  transition-delay: 0.32s;
}

.pg-card:nth-child(6) {
  transition-delay: 0.40s;
}

.pg-card.pg-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Variable heights for visual rhythm */
    .pg-card:nth-child(1),
    .pg-card:nth-child(3),
    .pg-card:nth-child(5) {
  height: 520px;
}

.pg-card:nth-child(2),
    .pg-card:nth-child(4),
    .pg-card:nth-child(6) {
  height: 440px;
}

/* Image */
    .pg-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}

.pg-card:hover .pg-card__img, .pg-card.pg-card--active .pg-card__img {
  transform: scale(1.06);
}

/* Gradient overlay — always present, darkens more on hover */
    .pg-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
          rgba(12,7,4,0.88) 0%,
          rgba(12,7,4,0.42) 42%,
          rgba(12,7,4,0.08) 72%,
          transparent 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.pg-card:hover .pg-card__veil, .pg-card.pg-card--active .pg-card__veil {
  background: linear-gradient(0deg,
          rgba(12,7,4,0.94) 0%,
          rgba(12,7,4,0.58) 52%,
          rgba(12,7,4,0.2) 80%,
          transparent 100%);
}

/* Warm gold tint strip at top on hover */
    .pg-card__veil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C8922A, rgba(200,146,42,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}

.pg-card:hover .pg-card__veil::before, .pg-card.pg-card--active .pg-card__veil::before {
  transform: scaleX(1);
}

/* Content overlaid on image */
    .pg-card__content {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* Ghost Roman numeral — top right */
    .pg-card__num {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 2;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: rgba(255,240,210,0.14);
  letter-spacing: -0.06em;
  transition: color 0.4s ease, transform 0.4s ease;
  user-select: none;
}

.pg-card:hover .pg-card__num, .pg-card.pg-card--active .pg-card__num {
  color: rgba(200,148,60,0.38);
  transform: scale(1.08) translateY(-3px);
}

.pg-card__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,168,88,0.88);
  font-weight: 400;
}

.pg-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: #FAF3E8;
  letter-spacing: -0.025em;
  margin: 0;
}

/* Body text — hidden by default, slides up on hover */
    .pg-card__text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  line-height: 1.68;
  color: rgba(250,240,220,0.76);
  font-weight: 400;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1),
        opacity 0.45s ease 0.08s,
        margin-top 0.4s ease;
}

.pg-card:hover .pg-card__text, .pg-card.pg-card--active .pg-card__text {
  max-height: 8rem;
  opacity: 1;
  margin-top: 0.5rem;
}

/* Gold hairline border on card hover */
    .pg-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,148,60,0);
  transition: border-color 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.pg-card:hover::after, .pg-card.pg-card--active::after {
  border-color: rgba(200,148,60,0.32);
}

/* Keyframes */
    @keyframes pg-up {

      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    
}

/* ── Responsive ── */
    @media (max-width: 1000px) {

      .pg-grid { grid-template-columns: repeat(2, 1fr); }
      .pg-card:nth-child(5),
      .pg-card:nth-child(6) { height: 420px; }
    
}

@media (max-width: 720px) {

      .pg-header { grid-template-columns: 1fr; gap: 2rem; }
      .pg-header__right { padding-bottom: 0; }
    
}

@media (max-width: 580px) {

      .pg-grid { grid-template-columns: 1fr; gap: 1rem; }
      .pg-card,
      .pg-card:nth-child(odd),
      .pg-card:nth-child(even) { height: 280px; }
      .pg-card:nth-child(5),
      .pg-card:nth-child(6) { display: block; height: 280px; }

}

/* ══ AURIC LATTICE — luxury SVG ornaments ══ */

    @keyframes pg-draw {

      to { stroke-dashoffset: 0; }
    
}

@keyframes pg-fade-luxe {

      from { opacity: 0; }
      to   { opacity: 1; }
    
}

@keyframes pg-breathe-diamond {

      0%, 100% { opacity: 0.62; transform: translate(-50%, -50%) scale(1); }
      50%       { opacity: 1;    transform: translate(-50%, -50%) scale(1.055); }
    
}

/* Background woven lattice */
    .pg-deco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  animation: pg-fade-luxe 3.5s ease 1.4s forwards;
}

/* Corner ornaments */
    .pg-deco-corner {
  position: absolute;
  pointer-events: none;
  width: clamp(66px, 5.8vw, 90px);
  height: clamp(66px, 5.8vw, 90px);
}

.pg-deco-corner--tl {
  top: clamp(1rem, 2vw, 2.2rem);
  left: clamp(1.5rem, 4.5vw, 5rem);
}

.pg-deco-corner--tr {
  top: clamp(1rem, 2vw, 2.2rem);
  right: clamp(1.5rem, 4.5vw, 5rem);
}

/* L-bracket draw-on */
    .pg-draw-l {
  stroke-dasharray: 250;
  stroke-dashoffset: 250;
  animation: pg-draw 1.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.pg-draw-l2 {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  animation: pg-draw 1.7s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}

.pg-deco-corner--tr .pg-draw-l {
  animation-delay: 0.6s;
}

.pg-deco-corner--tr .pg-draw-l2 {
  animation-delay: 0.8s;
}

/* Corner diamond */
    .pg-draw-corner-dia {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: pg-draw 0.65s ease 2.25s forwards;
}

.pg-deco-corner--tr .pg-draw-corner-dia {
  animation-delay: 2.5s;
}

/* Tick marks */
    .pg-deco-tick {
  opacity: 0;
  animation: pg-fade-luxe 0.45s ease 2.1s forwards;
}

.pg-deco-corner--tr .pg-deco-tick {
  animation-delay: 2.35s;
}

/* Center diamond */
    .pg-deco-center {
  position: absolute;
  top: clamp(5rem, 8.5vw, 9.5rem);
  left: 50%;
  transform: translate(-50%, 0);
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  animation: pg-fade-luxe         0.6s  ease             2.8s forwards,
        pg-breathe-diamond   5.5s  ease-in-out      3.5s infinite;
}

.pg-draw-dia-o {
  stroke-dasharray: 116;
  stroke-dashoffset: 116;
  animation: pg-draw 1.55s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

.pg-draw-dia-i {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: pg-draw 1.2s cubic-bezier(0.16,1,0.3,1) 1.55s forwards;
}

.pg-deco-centredot {
  opacity: 0;
  animation: pg-fade-luxe 0.4s ease 2.75s forwards;
}

@media (max-width: 640px) {

      .pg-deco-corner { display: none; }
      .pg-deco-center { top: 2.5rem; width: 28px; height: 28px; }

}

/* ══════════════════════════════════════════════════════════════════
   RECENT JOBS — THE LEDGER
   Natural-height cards, vertically centred inside 100svh section.
   ══════════════════════════════════════════════════════════════════ */

/* Section: full viewport, gold ribbon, warm grain */
.rj-section {
  position: relative;
  height: auto;
  min-height: 100svh;
  background: #F5F0E8;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.rj-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #B8924A 20%, #D4AC68 50%, #B8924A 80%, transparent 100%);
  z-index: 10;
}

.rj-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.028'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ── Wrap ── */
.rj-wrap {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ══ LEFT: The Spine — full height sidebar ══ */
.rj-spine {
  background: #EDE4D2;
  border-right: 1px solid rgba(184,146,74,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  animation: rj-slide-r 0.75s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}

.rj-spine::before {
  content: '';
  position: absolute;
  top: 1.75rem; left: 1.75rem;
  width: 20px; height: 20px;
  border-top: 1.5px solid #B8924A;
  border-left: 1.5px solid #B8924A;
}

.rj-spine::after {
  content: '';
  position: absolute;
  bottom: 1.75rem; right: 1.75rem;
  width: 20px; height: 20px;
  border-bottom: 1.5px solid #B8924A;
  border-right: 1.5px solid #B8924A;
}

.rj-spine__bg-num {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: 11rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(184,146,74,0.07);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.rj-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #B8924A;
  margin-bottom: 1.5rem;
  display: block;
}

.rj-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 2.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.18;
  color: #1C1510;
  margin: 0 0 1.5rem;
}

.rj-heading em {
  font-style: italic;
  color: #8A5E35;
  display: block;
}

.rj-spine__rule {
  width: 2.5rem;
  height: 1.5px;
  background: linear-gradient(90deg, #B8924A, rgba(184,146,74,0.3));
  margin-bottom: 1.5rem;
}

.rj-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  line-height: 1.8;
  color: #5C4433;
  margin: 0 0 2rem;
}

.rj-spine__stat {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.rj-stat__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(184,146,74,0.65);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rj-stat__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7A6050;
  line-height: 1.6;
}

/* ══ RIGHT: Card grid ══ */
.rj-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  padding: 0;
  gap: 0;
}

/* ── Individual card ── */
.rj-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(184,146,74,0.15);
  background: #FFFDF9;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rj-card:last-child { border-right: none; }

.rj-card:hover {
  background: #FFFEFA;
  box-shadow: inset 0 0 0 1px rgba(184,146,74,0.12);
}

/* ── Image ── */
.rj-card__img-wrap {
  position: relative;
  height: clamp(210px, 33vh, 290px);
  flex-shrink: 0;
  overflow: hidden;
}

.rj-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.rj-card:hover .rj-card__img { transform: scale(1.05); }

.rj-card__img-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(255,253,249,0.35) 68%,
    rgba(255,253,249,0.78) 84%,
    #FFFDF9 100%
  );
  pointer-events: none;
}

/* Badge row over image — top-anchored so cream gradient at bottom stays clean */
.rj-card__badge {
  position: absolute;
  top: 0.85rem; left: 1.25rem; right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.rj-card__job-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

.rj-card__badge-rule {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.rj-card__location {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* Gold separator */
.rj-card__separator {
  height: 2px;
  background: linear-gradient(90deg, #B8924A 0%, rgba(184,146,74,0.15) 100%);
  flex-shrink: 0;
}

/* ── Card body ── */
.rj-card__body {
  padding: 1.1rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rj-card__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 600;
  color: #1C1510;
  line-height: 1.32;
  margin: 0;
}

.rj-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.rj-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  background: rgba(184,146,74,0.1);
  color: #7A5028;
  border: 1px solid rgba(184,146,74,0.28);
  border-radius: 2px;
}

/* Service scope meta line */
.rj-card__scope {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9A7850;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.rj-card__scope-dot {
  color: #B8924A;
  font-size: 0.65rem;
  line-height: 1;
}

/* Thin rule between tags/scope and problem */
.rj-card__body-rule {
  width: 100%;
  height: 1px;
  background: rgba(184,146,74,0.12);
  flex-shrink: 0;
}

.rj-card__problem {
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  line-height: 1.72;
  color: #4A3425;
  margin: 0;
}

.rj-card__problem strong {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-style: italic;
  color: #1C1008;
}

/* Process section — methodology between problem and result */
.rj-card__process {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.6rem 0.9rem;
  border-left: 2px solid rgba(184,146,74,0.3);
  background: rgba(184,146,74,0.04);
}

.rj-card__process-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8924A;
}

.rj-card__process-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.74rem;
  line-height: 1.68;
  color: #5C4433;
  font-style: italic;
  margin: 0;
}

/* Result box — visual hero of the card */
.rj-card__result {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.75rem 1rem;
  background: rgba(184,146,74,0.13);
  border-left: 3px solid #B8924A;
}

.rj-result-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8A6020;
  white-space: nowrap;
}

.rj-result-text {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  line-height: 1.65;
  color: #2E1E10;
  font-weight: 500;
  margin: 0;
}

/* ══ Ghost cards — removed (cards now natural height) ══ */
.rj-card__ghost { display: none; }

/* ══ Load animations ══ */
@keyframes rj-rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rj-slide-r {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

.rj-card:nth-child(1) { animation: rj-rise 0.65s cubic-bezier(0.16,1,0.3,1) 0.2s both; }
.rj-card:nth-child(2) { animation: rj-rise 0.65s cubic-bezier(0.16,1,0.3,1) 0.32s both; }
.rj-card:nth-child(3) { animation: rj-rise 0.65s cubic-bezier(0.16,1,0.3,1) 0.44s both; }

/* ══ Responsive ══ */
@media (max-width: 1023px) {
  .rj-section { height: auto; }
  .rj-cards {
    grid-template-columns: 1fr;
    padding: 0;
    align-content: start;
    align-items: start;
  }
  .rj-card {
    border-right: none;
    border-bottom: 1px solid rgba(184,146,74,0.12);
  }
  .rj-card__img-wrap { height: 220px; }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .rj-card__body { padding: 0.85rem 1.1rem 1rem; gap: 0.45rem; }
}

@media (min-width: 1024px) and (max-height: 680px) {
  .rj-card__img-wrap { height: clamp(160px, 26vh, 220px); }
  .rj-card__body { padding: 0.85rem 1.2rem 1rem; gap: 0.45rem; }
  .rj-card__problem { font-size: 0.72rem; line-height: 1.62; }
  .rj-card__process-text { font-size: 0.7rem; }
  .rj-result-text { font-size: 0.74rem; }
}
