/* ============================================================
   SECTIONS — Lumè Nail Spa & Beauty Bar
   Styles for each homepage section: trust strip, about,
   services grid, gallery, testimonials, Instagram, visit-us.
   ============================================================ */

/* ═══════════════════════════════════════════════════════════════
   1. TRUST STRIP
   ═══════════════════════════════════════════════════════════════ */

.trust-strip {
  background-color: var(--color-white);
  padding-block: 80px; /* Generous padding */
  border-bottom: 1px solid var(--color-border);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 768px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    column-gap: 20px;
  }
}

@media (min-width: 1024px) {
  .trust-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0; /* Remove gap so we can use dividers precisely */
  }
}

/* ═══════════════════════════════════════════════════════════════
   2. ABOUT / INTRO
   ═══════════════════════════════════════════════════════════════ */

.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

.about-intro__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__text h2 {
  margin-bottom: var(--space-md);
}

.about-intro__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.about-intro__text .section-label {
  margin-bottom: var(--space-md);
}

/* Gold line under heading */
.about-intro__text .divider {
  margin: var(--space-md) 0 var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════
   3. SERVICES GRID
   ═══════════════════════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Make the last card span full width when odd number on 2-col */
@media (min-width: 640px) and (max-width: 1023px) {
  .services-grid .card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   4. GALLERY PREVIEW
   ═══════════════════════════════════════════════════════════════ */

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery-preview__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-preview__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-preview__item:hover img {
  transform: scale(1.08);
}

/* Overlay on hover */
.gallery-preview__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 36, 34, 0);
  transition: background var(--transition-base);
}

.gallery-preview__item:hover::after {
  background: rgba(46, 36, 34, 0.25);
}

/* Zoom icon on hover */
.gallery-preview__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 2;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  opacity: 0;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
  pointer-events: none;
}

.gallery-preview__item:hover .gallery-preview__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-preview__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ═══════════════════════════════════════════════════════════════
   5. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.testimonials__wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: var(--space-xl);
  transition: transform var(--transition-slow);
}

.testimonials__track .testimonial {
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .testimonials__track .testimonial {
    flex: 0 0 calc((100% - var(--space-xl) * 2) / 3);
  }
}

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testimonials__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--color-white);
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast);
  cursor: pointer;
}

.testimonials__btn:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
}

.testimonials__btn svg {
  width: 18px;
  height: 18px;
}

.testimonials__pause {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.testimonials__pause:hover {
  color: var(--color-primary);
}

/* Dots */
.testimonials__dots {
  display: flex;
  gap: var(--space-sm);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color var(--transition-fast);
}

.testimonials__dot--active {
  background-color: var(--color-primary);
  width: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   6. INSTAGRAM FEED
   ═══════════════════════════════════════════════════════════════ */

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .instagram__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.instagram__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram__item:hover img {
  transform: scale(1.1);
}

.instagram__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 36, 34, 0.6) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram__item:hover::after {
  opacity: 1;
}

.instagram__icon {
  position: absolute;
  bottom: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram__item:hover .instagram__icon {
  opacity: 1;
}

.instagram__icon svg {
  width: 20px;
  height: 20px;
}

.instagram__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════
   7. VISIT US (MAP + HOURS + CONTACT)
   ═══════════════════════════════════════════════════════════════ */

.visit-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .visit-us__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.visit-us__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 350px;
}

.visit-us__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

.visit-us__details h3 {
  margin-bottom: var(--space-lg);
}

.visit-us__hours {
  width: 100%;
  margin-bottom: var(--space-xl);
}

.visit-us__hours td {
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-border);
}

.visit-us__hours td:first-child {
  font-weight: var(--weight-medium);
  padding-right: var(--space-xl);
}

.visit-us__hours tr:last-child td {
  border-bottom: none;
}

.visit-us__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════
   8. COOKIE CONSENT BANNER
   ═══════════════════════════════════════════════════════════════ */

/* Moved to cookie-banner.css */

/* ═══════════════════════════════════════════════════════════════
   MOBILE TRUST STRIP — Parisian Atelier Editorial Redesign
   All rules below are mobile-ONLY (@media max-width: 768px).
   Desktop styles above are completely untouched.
   ═══════════════════════════════════════════════════════════════ */

/* Tile entrance animation state classes — mobile only */
@media (max-width: 768px) {
  .feature-tile-hidden {
    opacity: 0;
    transform: translateY(16px);
  }
}

.feature-tile-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Mobile section header: hidden on desktop */
@media (min-width: 769px) {
  .trust-strip__header { display: none; }
}

@media (max-width: 768px) {

  /* === MOBILE PREMIUM REDESIGN START === */
  .trust-strip {
    background: #FFFFFF;
    padding: 80px 0 88px 0; /* Generous breathing room */
    width: 100%;
    position: relative;
    overflow: hidden;
    border: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Ambient grain texture — 1% on white for surgical surgical precision */
  .trust-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Mobile section header ── */
  .trust-strip__header {
    display: block;
    padding: 0 32px 48px 32px; /* More whitespace */
    position: relative;
    z-index: 1;
  }

  .trust-strip__eyebrow {
    font-family: -apple-system, sans-serif;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #8B7355; /* Premium muted taupe/gold */
    margin-bottom: 12px;
    font-weight: 600;
  }

  .trust-strip__heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 34px; /* Slightly larger */
    line-height: 1.1; /* Tighten line-height */
    color: #111111; /* Apple deep black */
    margin: 0;
    margin-right: 20px; /* Proper horizontal margin */
  }

  .trust-strip__rule {
    width: 0; /* Start 0 for animation */
    height: 1px;
    background: #C9A96E; /* Warm gold */
    margin-top: 20px;
    border: none;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .trust-strip__rule.is-revealed {
    width: 44px;
  }

  .trust-strip .container {
    padding: 0;
    max-width: 100%;
    position: relative;
    z-index: 1;
  }

  /* ── 2×2 editorial grid ── */
  .trust-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Hairline faint gold borders for ultra luxury */
    border-top: 1px solid rgba(201, 169, 110, 0.15);
  }

  .icon-label {
    padding: 36px 24px 32px 24px; /* Tap-friendly padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: transparent;
    text-align: left;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    transition: background 0.3s ease;
  }
  
  /* Vertical center divider using faint gold gradient */
  .icon-label:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.25), transparent);
  }

  /* Top border highlight / inner glow */
  .icon-label::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 110, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
  }
  .icon-label.is-revealed::before {
    opacity: 1;
  }

  .icon-label:active {
    background: #FAFAF8; /* Soft pearl active state */
  }

  /* ── Icon container ── */
  .icon-label__icon {
    position: relative;
    color: #111111; /* Black icons */
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    box-shadow: none;
    flex-shrink: 0;
  }
  
  /* Solid full gold circle behind icon */
  .icon-label__icon::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #C9A84C;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
  }
  .icon-label.is-revealed .icon-label__icon::before {
    opacity: 1;
  }

  .icon-label__icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.2px; /* Sharper stroke for white bg */
    stroke: currentColor;
    fill: none;
    z-index: 1;
    position: relative;
    /* Subtle scale/fade transition on entrance */
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .icon-label.is-revealed .icon-label__icon svg {
    opacity: 1;
    transform: scale(1);
  }

  .icon-label__text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.35;
    color: #111111; /* Deep black text */
  }

  .trust-strip__micro {
    font-family: -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #888888; /* Premium silver/grey */
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* Scroll Reveal Momentum Animation */
  .trust-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .trust-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Stagger */
  .icon-label:nth-child(1) { transition-delay: 100ms; }
  .icon-label:nth-child(2) { transition-delay: 200ms; }
  .icon-label:nth-child(3) { transition-delay: 300ms; }
  .icon-label:nth-child(4) { transition-delay: 400ms; }
  
  /* === MOBILE PREMIUM REDESIGN END === */

}
/* ── End mobile trust strip ── */


/* ═══════════════════════════════════════════════════════════════
   MOBILE ABOUT / WELCOME SECTION — Editorial Luxury Redesign
   All rules below are mobile-ONLY (@media max-width: 768px).
   Desktop styles above are completely untouched.
   ═══════════════════════════════════════════════════════════════ */

/* Scroll entrance animation states — applied globally (mobile + desktop) */
.about-hidden {
  opacity: 0;
  transform: translateY(18px);
}

.about-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Staggered children: each inherits transition but uses its own inline transition-delay */
.about-visible .section-label,
.about-visible h2,
.about-visible .divider,
.about-visible p,
.about-visible .about-intro__cta {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 768px) {

  /* ── Section wrapper ── */
  #about-intro {
    padding: 0 0 56px 0;
    overflow: hidden;
  }

  /* Kill container padding so image bleeds edge-to-edge */
  #about-intro > .container {
    padding: 0;
    max-width: 100%;
  }

  /* Kill grid gap on mobile — layout is single column, tightly controlled */
  #about-intro .about-intro {
    gap: 0;
  }

  /* ── Image container — full bleed, zero radius ── */
  .about-intro__image {
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    aspect-ratio: unset;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .about-intro__image img {
    width: 100%;
    height: 62vw;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }

  /* ── Gold hairline thread — photo to text seam ── */
  .about-intro__hairline {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.35), transparent);
    margin: 0;
    border: none;
    border-radius: 0;
  }

  /* ── Text content block ── */
  .about-intro__text {
    padding: 36px 24px 0 24px;
  }

  /* ── Eyebrow label ── */
  .about-intro__text .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.8);
    margin-bottom: 16px;
    display: block;
    /* kill any terracotta/rust color from global styles */
    border: none;
  }

  /* ── Heading — impossibly thin, large ── */
  .about-intro__text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #1C1410;
    margin: 0 0 20px 0;
  }

  /* ── Gold rule ── */
  .about-intro__text .divider {
    width: 36px;
    height: 1px;
    background: #C9A84C;
    border: none;
    border-radius: 0;
    margin: 0 0 24px 0;
    display: block;
    box-shadow: none;
  }

  /* ── Body paragraphs ── */
  .about-intro__text p {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: rgba(28, 20, 16, 0.72);
    margin-bottom: 16px;
  }

  .about-intro__text p:last-of-type {
    margin-bottom: 32px;
  }

  /* ── "Meet the Team" CTA button — sharp, editorial, inline ── */
  .about-intro__cta {
    display: inline-block !important;
    padding: 15px 32px !important;
    border: 1px solid #1C1410 !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.38em !important;
    text-transform: uppercase !important;
    color: #1C1410 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    width: auto !important;
    max-width: none !important;
    margin-top: 0 !important;
    transition: background 0.3s ease, color 0.3s ease !important;
    /* kill any pill radius from .btn global styles */
  }

  .about-intro__cta:active {
    background: #1C1410 !important;
    color: #FAF7F4 !important;
  }

}
/* ── End mobile about section ── */

/* ═══════════════════════════════════════════════════════════════
   ABOUT ENRICHING (3-Photo Design)
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   ABOUT ENRICHING (3-Photo Design)
   ═══════════════════════════════════════════════════════════════ */
.about-enriching {
  background-color: #FAF7F4; /* Cream background */
  padding: 100px 20px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  overflow: hidden;
}

.enriching-badge {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 6px 16px 6px 6px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 32px;
  /* Entrance animation prep */
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.enriching-badge-avatars {
  display: flex;
  margin-right: 12px;
}

.enriching-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -12px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.enriching-avatar:first-child { margin-left: 0; z-index: 3; }
.enriching-avatar:nth-child(2) { z-index: 2; }
.enriching-avatar:nth-child(3) { z-index: 1; }

#about-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #1C1410;
}

.enriching-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300;
  color: #1C1410;
  line-height: 1.15;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
  /* Entrance animation prep */
  transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.enriching-masonry {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 48px;
  height: clamp(400px, 60vh, 600px);
  /* Entrance animation prep */
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.enriching-col {
  flex: 1;
  max-width: 280px;
  position: relative;
}

.enriching-col img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.enriching-col-left { transform: translateY(-30px); }
.enriching-col-center { transform: translateY(30px); }
.enriching-col-right { transform: translateY(-10px); }

.enriching-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4542;
  max-width: 680px;
  margin: 0 auto 40px auto;
  font-weight: 300;
  padding: 0 16px;
  /* Entrance animation prep */
  transition: opacity 0.6s ease 0.3s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.enriching-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
  /* Entrance animation prep */
  transition: opacity 0.6s ease 0.4s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.enriching-btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Brand Palette: Terracotta/Gold (#C9A84C) */
.enriching-btn--solid {
  background-color: #C9A84C;
  color: #FAF7F4;
  border: 1px solid #C9A84C;
}
.enriching-btn--solid:hover {
  background-color: #1C1410;
  border-color: #1C1410;
  color: #FAF7F4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28,20,16,0.15);
}

.enriching-btn--outline {
  background-color: transparent;
  color: #C9A84C;
  border: 1px solid #C9A84C;
}
.enriching-btn--outline:hover {
  background-color: #C9A84C;
  color: #FAF7F4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201,168,76,0.15);
}

/* Base state for reveal animations */
.about-enriching .reveal:not(.revealed) {
  opacity: 0;
  transform: translateY(20px);
}
.about-enriching .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width: 768px) {
  .about-enriching { 
    padding: 60px 16px; 
  }
  .enriching-headline {
    margin-bottom: 32px;
  }
  .enriching-masonry { 
    gap: 12px; 
    height: 380px; 
    margin: 0 8px 40px 8px; /* Extra horizontal margin on mobile so it doesn't flush */
  }
  .enriching-col-left { transform: translateY(-15px); }
  .enriching-col-center { transform: translateY(15px); }
  .enriching-col-right { transform: translateY(-5px); }
  
  .enriching-actions {
    flex-direction: column;
    gap: 12px;
  }
  .enriching-btn {
    width: 100%;
  }
}
