/* ============================================================
   HOME PAGE — index.css
   Warm Premium Artisan Redesign
   ============================================================ */

/* ─── HERO ─────────────────────────────────────────────────── */

/*
  Self-contained hero:
  ─ position:relative keeps the hero in normal document flow.
  ─ The artisan image is physically inside .hero and CANNOT
    bleed into any section below — it disappears completely
    once the user scrolls past the 100vh hero.
  ─ All sections below sit on a clean ivory background.
*/

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Main canvas — ivory below the hero ────────────────────── */
/* Belt-and-suspenders: ensure absolutely no hero image bleeds through */
#homepage-main {
  background: #F8F5EF;
  position: relative; /* stacking context */
}

/* Sections after hero stack above and slide over it */
.content-stack {
  position: relative;
  z-index: 2;
  background: #F8F5EF;
}
/* The hero is self-contained. Its bottom edge is a clean horizontal
   line — sections below begin on solid ivory immediately. */

/* ── Background Media ─ Cinematic Two-Video System ──────── */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #080604; /* deep black base */
  overflow: hidden;
}

/* Fallback static image (mobile / no-video) */
.hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* INTRO VIDEO — plays once, then fades out */
.hero-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.hero-intro-video--done {
  opacity: 0;
  pointer-events: none;
}

/* FINAL FRAME VIDEO — pre-loaded, frozen on last frame */
.hero-final-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-final-video--visible {
  opacity: 1;
}

/* Mobile: hide both videos, show fallback image */
@media (max-width: 768px) {
  .hero-intro-video,
  .hero-final-video {
    display: none !important;
  }
  .hero-fallback-img {
    animation: hero-zoom 24s ease-in-out infinite alternate;
  }
}

/* Hero entrance animation — no JS required */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-zoom {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.01) translateX(-0.4%); }
}

/* ── Dark Overlay (40–45%) ───────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3; /* above both videos */
  background: rgba(6, 5, 4, 0.42);
}

/* ── HERO CONTENT: hidden initially, fades in after intro ─── */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto;           /* centered horizontally */
  text-align: center;
  /* Hidden until JS reveals it */
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s,
              transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.hero-content--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow label — centered, letter-spaced */
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Headline — centered editorial serif */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

/* Subheadline — centered, clean sans */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  color: rgba(245, 240, 232, 0.78);
  line-height: 1.85;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 48px;
}

/* ── CTA BUTTONS ──────────────────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary — dark charcoal, ivory text, pill shape */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 42px;
  background: #1e1810;
  color: #f2ece0;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid rgba(242, 236, 224, 0.18);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
  transition:
    background   0.4s var(--ease),
    box-shadow   0.4s var(--ease),
    transform    0.22s var(--ease),
    color        0.3s var(--ease);
}
.hero-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.hero-btn-primary:hover {
  background: #2c2318;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px);
  color: #ecdcb0;
}
.hero-btn-primary:hover::before { opacity: 1; }
.hero-btn-primary:active { transform: translateY(0); }

/* Secondary – transparent with white border */
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: transparent;
  color: #f5f0e8;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 1.5px solid rgba(245, 240, 232, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    background    0.4s var(--ease),
    border-color  0.4s var(--ease),
    box-shadow    0.4s var(--ease),
    transform     0.22s var(--ease);
}
.hero-btn-ghost:hover {
  background: rgba(245, 240, 232, 0.12);
  border-color: rgba(245, 240, 232, 0.75);
  box-shadow: 0 0 0 1px rgba(245,240,232,0.18), 0 6px 24px rgba(0,0,0,0.18);
  transform: translateY(-2px);
  color: #fff;
}
.hero-btn-ghost:active { transform: translateY(0); }

/* Scroll indicator — hidden initially, revealed after intro */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245, 240, 232, 0.42);
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  /* Hidden until JS reveals it */
  opacity: 0;
  transition: opacity 1.2s ease 0.6s;
}
.hero-scroll--visible {
  opacity: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(201,168,106,0.6), transparent);
  animation: scroll-pulse 2.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1);   opacity: 0.36; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ── Mobile responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content { max-width: 100%; padding: 0 6%; }
  .hero-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(4, 2, 1, 0.75) 0%,
        rgba(4, 2, 1, 0.65) 100%
      );
  }
  .hero-media img { object-position: 70% center; }
}
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero-subtitle { font-size: 0.92rem; max-width: 100%; margin-bottom: 36px; }
  .hero-scroll { display: none; }
}
@media (max-width: 540px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-btn-primary,
  .hero-btn-ghost  { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   THE HANDS BEHIND THE HERITAGE — Luxury Heritage Cards Section
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ──────────────────────────────────────── */
.hbh-section {
  background: #F5F1E9;
  padding: 100px 5% 110px;
  position: relative;
  overflow: hidden;
}

/* Subtle ivory background texture via pseudo-element */
.hbh-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,106,0.045) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,106,0.035) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative corner motif (top-right) */
.hbh-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 320px; height: 320px;
  background-image: url("data:image/svg+xml,%3Csvg width='320' height='320' viewBox='0 0 320 320' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M160 0 C240 80, 320 80, 320 160' stroke='%23C9A86A' stroke-width='0.4' opacity='0.18' fill='none'/%3E%3Cpath d='M200 0 C280 80, 320 120, 320 200' stroke='%23C9A86A' stroke-width='0.4' opacity='0.12' fill='none'/%3E%3Cpath d='M240 0 C310 70, 320 160, 320 240' stroke='%23C9A86A' stroke-width='0.4' opacity='0.08' fill='none'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hbh-inner {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section header ───────────────────────────────────────── */
.hbh-header {
  text-align: center;
  margin-bottom: 72px;
}

.hbh-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  animation: hbhOrnamentSpin 48s linear infinite;
}

@keyframes hbhOrnamentSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hbh-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  color: #1d1106;
  line-height: 1.06;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hbh-rule {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hbh-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #6f6a63;
  line-height: 1.9;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Four-column card grid ────────────────────────────────── */
.hbh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

/* ── Individual heritage card ─────────────────────────────── */
.hbh-card {
  background: #FFFDF8;
  border-radius: 16px;
  overflow: visible;   /* let medallion overflow downward */
  border: 1px solid rgba(201,168,106,0.18);
  box-shadow:
    0 4px 18px rgba(0,0,0,0.05),
    0 1px 4px rgba(0,0,0,0.04);
  transition:
    transform 0.48s cubic-bezier(0.25,1,0.5,1),
    box-shadow 0.48s cubic-bezier(0.25,1,0.5,1),
    border-color 0.48s;
  display: flex;
  flex-direction: column;
}

.hbh-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 28px 72px rgba(0,0,0,0.10),
    0 4px 16px rgba(0,0,0,0.06);
  border-color: rgba(201,168,106,0.36);
}

/* ── Card photo ───────────────────────────────────────────── */
.hbh-card-photo {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #1a1208;
  border-radius: 15px 15px 0 0;
  flex-shrink: 0;
}

.hbh-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
  filter: brightness(0.90) saturate(1.10);
}

.hbh-card:hover .hbh-card-photo img {
  transform: scale(1.08);
}

/* Subtle warm gradient at bottom of photo for legibility */
.hbh-card-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(20,12,4,0.18));
  pointer-events: none;
}

/* ── Gold medallion icon ──────────────────────────────────── */
.hbh-card-medallion {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F5F1E9;
  border: 1.5px solid rgba(201,168,106,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.09),
    0 0 0 4px #F5F1E9;
  transition: transform 0.38s cubic-bezier(0.25,1,0.5,1), border-color 0.38s;
}

.hbh-card:hover .hbh-card-medallion {
  transform: translateX(-50%) scale(1.1);
  border-color: rgba(201,168,106,0.7);
}

/* ── Card body ────────────────────────────────────────────── */
.hbh-card-body {
  padding: 44px 24px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heritage label — gold italic small-caps */
.hbh-card-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Craft title — large serif */
.hbh-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 400;
  color: #1d1106;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

/* Location — uppercase gold small-caps */
.hbh-card-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.hbh-card-location-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Thin gold rule separator */
.hbh-card-rule {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,106,0.65), transparent);
  margin: 0 auto 20px;
  align-self: center;
}

/* Description */
.hbh-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6f6a63;
  line-height: 1.85;
  font-weight: 300;
  max-width: 260px;
  margin: 0 auto;
}

/* ── CTA button ───────────────────────────────────────────── */
.hbh-cta {
  text-align: center;
}

.hbh-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 52px;
  background: #1d1106;
  color: #F5F1E9;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #1d1106;
  transition:
    background 0.42s var(--ease),
    color 0.42s var(--ease),
    border-color 0.42s var(--ease),
    transform 0.22s var(--ease),
    box-shadow 0.42s var(--ease);
}

.hbh-cta-btn:hover {
  background: transparent;
  color: #1d1106;
  border-color: #1d1106;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(29,17,6,0.12);
}

.hbh-cta-btn svg {
  transition: transform 0.32s var(--ease);
  flex-shrink: 0;
}

.hbh-cta-btn:hover svg {
  transform: translateX(5px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hbh-grid { gap: 16px; }
  .hbh-card-photo { height: 290px; }
}

@media (max-width: 960px) {
  .hbh-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .hbh-card-photo { height: 300px; }
  .hbh-section { padding: 80px 5%; }
}

@media (max-width: 600px) {
  .hbh-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .hbh-card-photo { height: 280px; }
  .hbh-title { letter-spacing: 0.03em; }
  .hbh-cta-btn { padding: 16px 36px; font-size: 0.6rem; }
  .hbh-section { padding: 64px 5% 72px; }
}

/* ─── ARTISAN TRUST STRIP ────────────────────────────────── */
.artisan-trust-strip {
  position: relative; z-index: 10;
  background: var(--bg-alt);
  padding: 70px 5% 60px;
  border-bottom: 1px solid var(--border-warm);
  border-radius: 40px 40px 0 0;
  margin-top: -40px; /* Overlap the sticky hero */
  box-shadow: 0 -12px 40px rgba(0,0,0,0.08); /* Premium shadow for depth */
}
.artisan-trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
}
.ats-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.ats-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-cream); border: 1px solid var(--gold-border);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: transform var(--t-fast); box-shadow: var(--shadow-xs);
}
.ats-item:hover .ats-icon { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold); color: var(--gold-hover); }
.ats-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin: 0; line-height: 1.2; }
.ats-desc { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }
.ats-divider { width: 1px; height: 80px; background: var(--border-warm); margin-top: 10px; }

@media (max-width: 900px) {
  .artisan-trust-strip-inner { flex-wrap: wrap; justify-content: center; gap: 40px 20px; }
  .ats-item { flex: 0 0 40%; }
  .ats-divider { display: none; }
}
@media (max-width: 500px) {
  .ats-item { flex: 0 0 100%; padding: 0 20px; }
  .artisan-trust-strip { padding: 40px 5%; }
}

/* ─── EXPLORE HORIZONTAL CARDS ───────────────────────────── */
.explore-cards-section {
  padding: 80px 0 72px; background: var(--bg); overflow: hidden;
}
.explore-cards-track {
  display: flex; gap: 24px; padding: 0 5% 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: calc(50% - 21vw);
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch; cursor: grab; user-select: none;
}
.explore-cards-track::-webkit-scrollbar { display: none; }
.explore-cards-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.explore-card {
  flex: 0 0 42vw; height: 65vh; min-height: 480px; max-height: 700px;
  scroll-snap-align: center; border-radius: 18px;
  text-decoration: none; display: flex; align-items: flex-end; padding: 44px;
  transform: scale(0.92); opacity: 0.62;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform, opacity; -webkit-user-drag: none;
}
.explore-card:hover { transform: scale(0.95); opacity: 0.78; }
.explore-card.is-active {
  transform: scale(1.04); opacity: 1;
  box-shadow: 0 28px 72px rgba(0,0,0,0.22), 0 0 0 1px rgba(201,168,106,0.2);
}
.explore-card.is-active:hover { transform: scale(1.06) translateY(-4px); }
.explore-card.is-active:active { transform: scale(1.03); transition-duration: 0.12s; }

.explore-card--travel {
  background: linear-gradient(to top, rgba(15,10,5,0.85) 0%, rgba(15,10,5,0.1) 70%),
              url('images/travel-experince-5.jpg') center/cover no-repeat; color: #fff;
}
.explore-card--shop {
  background: linear-gradient(to top, rgba(15,10,5,0.85) 0%, rgba(15,10,5,0.1) 70%),
              url('images/travel-experince-6.jpg') center/cover no-repeat; color: #fff;
}
.explore-card--connect {
  background: linear-gradient(to top, rgba(15,10,5,0.85) 0%, rgba(15,10,5,0.1) 70%),
              url('images/travel-experince-7.jpg') center/cover no-repeat; color: #fff;
}
.explore-card-content { width: 100%; }
.explore-card-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.01em;
}
.explore-card-desc {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  line-height: 1.6; margin-bottom: 36px; max-width: 85%; opacity: 0.88;
}
.explore-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-light);
}
.explore-card-cta svg { transition: transform 0.3s ease; }
.explore-card:hover .explore-card-cta svg { transform: translateX(4px); }

/* ─── ARTISAN SHOP SECTION ───────────────────────────────── */
.artisan-shop-section {
  background:
    linear-gradient(rgba(245,241,234,0.88), rgba(245,241,234,0.88)),
    url('images/floral1_opt.jpg') center/cover no-repeat;
  padding: 88px 0 68px;
  position: relative; overflow: hidden;
}
.artisan-leaf { display: none; }

.artisan-shop-header {
  max-width: 1200px; margin: 0 auto; padding: 0 44px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; position: relative; z-index: 1; margin-bottom: 24px;
}
.artisan-shop-label {
  display: block; font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.artisan-shop-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500;
  color: var(--charcoal); line-height: 1.2; margin: 0;
}
.artisan-shop-heading em { font-style: italic; color: var(--gold-hover); }
.artisan-shop-viewall {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal); text-decoration: none; white-space: nowrap;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid var(--border-warm);
}
.artisan-shop-viewall:hover { color: var(--gold-hover); border-color: var(--gold); }

/* Trust bar */
.artisan-shop-trustbar {
  max-width: 1200px; margin: 0 auto 52px; padding: 0 44px;
  display: flex; align-items: center; gap: 40px;
  position: relative; z-index: 1;
}
.artisan-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.82rem;
  color: var(--text-secondary);
}
.artisan-trust-icon { font-size: 1rem; }

/* Row container */
.artisan-row {
  margin: 0 44px 32px; border-radius: 20px;
  padding: 32px 32px 26px; position: relative; z-index: 1;
  border: 1px solid var(--border-soft);
}
.artisan-row--sage  { background: rgba(248,245,240,0.85); backdrop-filter: blur(8px); }
.artisan-row--peach { background: rgba(255,253,250,0.90); backdrop-filter: blur(8px); }

.artisan-row-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.artisan-row-header-left { display: flex; align-items: center; gap: 14px; }
.artisan-row-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; border: 1px solid var(--border-warm);
  background: #fff;
}
.artisan-row-icon--green { background: #f0f4ed; color: #5a7a4a; }
.artisan-row-icon--peach { background: #fdf0e8; color: var(--gold-hover); }

.artisan-row-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--charcoal); margin: 0 0 2px; }
.artisan-row-sub   { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.artisan-row-viewall {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
}
.artisan-row-viewall:hover { opacity: 0.7; }
.artisan-row-viewall--green { color: var(--charcoal); }
.artisan-row-viewall--peach { color: var(--charcoal); }

/* Scroll track */
.artisan-scroll-wrap { position: relative; }
.artisan-scroll-track {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch; padding: 6px 4px 12px; cursor: grab;
}
.artisan-scroll-track::-webkit-scrollbar { display: none; }
.artisan-scroll-track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

/* Arrows */
.artisan-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--charcoal);
  border: 1px solid var(--border-warm); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  box-shadow: var(--shadow-sm); user-select: none;
}
.artisan-arrow:hover {
  background: var(--charcoal); color: #fff;
  transform: translateY(-50%) scale(1.06); box-shadow: var(--shadow-md);
}
.artisan-arrow--prev { left: -10px; }
.artisan-arrow--next { right: -10px; }
.artisan-arrow--peach:hover { background: var(--gold); color: #fff; }

.artisan-row-footer { margin-top: 22px; text-align: right; padding-right: 8px; }
.artisan-row-footer .artisan-row-viewall {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Product card */
.artisan-card {
  flex: 0 0 295px; width: 295px;
  background: var(--card); border-radius: 16px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  overflow: hidden; display: flex; flex-direction: column;
  scroll-snap-align: start;
  transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s, border-color 0.35s;
}
.artisan-card:hover {
  transform: translateY(-7px); box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(201,168,106,0.3);
}
.artisan-card--sm { flex: 0 0 260px; width: 260px; }

.artisan-card--cta {
  background: var(--charcoal-2); color: var(--gold-light);
  border: 1px solid rgba(201,168,106,0.2);
  display: flex; min-height: 380px;
  align-items: center; justify-content: center; text-align: center;
  cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
}
.artisan-card--cta:hover { background: var(--charcoal-3); transform: translateY(-4px); }
.artisan-card-cta-content h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 400; margin: 0; color: var(--gold-light);
}

/* Card image */
.artisan-card-img-wrap {
  position: relative; height: 224px;
  overflow: hidden; background: var(--bg-alt);
}
.artisan-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.artisan-card:hover .artisan-card-img-wrap img { transform: scale(1.05); }

/* Badges */
.artisan-badge {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; z-index: 2;
}
.artisan-badge--best     { background: var(--charcoal); color: #fff; }
.artisan-badge--new      { background: #2f5d50; color: #fff; }
.artisan-badge--trending { background: var(--gold-pale); color: var(--gold-hover); border: 1px solid var(--gold-border); }
.artisan-badge--handmade { background: rgba(0,0,0,0.06); color: var(--text-secondary); border: 1px solid var(--border-warm); }
.artisan-badge--festive  { background: #c26a3d; color: #fff; }

/* Wishlist */
.artisan-wishlist {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(4px);
  border: 1px solid var(--border-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; color: var(--text-muted);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.artisan-wishlist:hover { background: #fff; color: var(--gold-hover); border-color: var(--gold-border); }
.artisan-wishlist svg { width: 15px; height: 15px; }

/* Card body */
.artisan-card-body {
  padding: 16px 18px 18px; display: flex; flex-direction: column; flex-grow: 1; gap: 6px;
}
.artisan-card-origin { font-family: var(--font-body); font-size: 0.7rem; color: var(--text-muted); margin: 0; }
.artisan-card-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 500;
  color: var(--charcoal); margin: 0; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.artisan-card-rating { display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.artisan-stars { color: var(--gold); font-size: 0.72rem; }
.artisan-rating-count { font-size: 0.7rem; color: var(--text-muted); }
.artisan-card-price-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-soft);
}
.artisan-price { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--gold-hover); }
.artisan-orig  { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; }
.artisan-atc {
  margin-left: auto; width: 36px; height: 36px; border-radius: 50%;
  background: var(--charcoal); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.2s; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.14);
}
.artisan-atc:hover { background: var(--gold); transform: scale(1.1); box-shadow: var(--shadow-terra); }
.artisan-atc svg { width: 16px; height: 16px; }

.artisan-footer-text {
  text-align: center; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-muted); margin: 24px 44px 0; position: relative; z-index: 1;
  font-style: italic;
}

/* Artisan responsive */
@media (max-width: 1024px) {
  .artisan-row { margin: 0 24px 24px; padding: 24px 20px; }
  .artisan-card { flex: 0 0 262px; width: 262px; }
}
@media (max-width: 768px) {
  .artisan-shop-section { padding: 56px 0 40px; overflow: visible; }
  .artisan-shop-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .artisan-shop-trustbar { padding: 0 20px; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
  .artisan-row { margin: 0 12px 20px; padding: 18px 14px; }
  .artisan-row-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .artisan-arrow { display: none; }
  .artisan-card { flex: 0 0 75vw; width: 75vw; }
  .artisan-card-img-wrap { height: 180px; }
  .artisan-footer-text { margin: 16px 20px 0; }
  .artisan-scroll-wrap { display: block; }
  .artisan-scroll-track {
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 10px 40px; gap: 8vh; overflow-x: visible; scroll-snap-type: none;
  }
  .artisan-scroll-track .artisan-card {
    position: sticky; width: 100%; max-width: 100%; flex: none;
    scroll-snap-align: none; height: auto; margin: 0;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
  }
  .artisan-scroll-track .artisan-card:nth-child(n+5):not(.artisan-card--cta) { display: none !important; }
  .artisan-scroll-track .artisan-card:hover { transform: none; }
  .artisan-scroll-track .artisan-card:nth-child(1) { top: 60px; z-index: 10; }
  .artisan-scroll-track .artisan-card:nth-child(2) { top: 80px; z-index: 11; }
  .artisan-scroll-track .artisan-card:nth-child(3) { top: 100px; z-index: 12; }
  .artisan-scroll-track .artisan-card:nth-child(4) { top: 120px; z-index: 13; }
  .artisan-scroll-track .artisan-card .artisan-card-img-wrap { height: 340px; }
  .artisan-scroll-track .artisan-card.artisan-card--cta { height: 200px; top: 140px; z-index: 14; }
}
@media (max-width: 480px) { .artisan-card { flex: 0 0 82vw; width: 82vw; } }
@media (max-width: 1024px) { .explore-card { flex: 0 0 62vw; height: 60vh; padding: 32px; } }
@media (max-width: 768px) {
  .explore-cards-section { padding: 56px 0 48px; }
  .explore-cards-track { gap: 16px; padding: 0 4% 8px; }
  .explore-card { flex: 0 0 82vw; height: 55vh; min-height: 400px; padding: 28px; border-radius: 16px; }
  .explore-card-desc { font-size: 0.94rem; max-width: 100%; margin-bottom: 28px; }
  .explore-card:hover { transform: scale(0.92); opacity: 0.62; }
  .explore-card.is-active { transform: scale(1.03); }
  .explore-card.is-active:hover { transform: scale(1.03); }
}

/* ─── EXPERIENCE GRID ────────────────────────────────────── */
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.experience-card {
  border-radius: var(--r-md); overflow: hidden;
  background: var(--card); border: 1px solid var(--border-soft); box-shadow: var(--shadow-card);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.experience-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.experience-card-img { height: 300px; overflow: hidden; position: relative; }
.experience-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.experience-card:hover .experience-card-img img { transform: scale(1.05); }
.experience-card-body { padding: 26px 28px 30px; }
.experience-card-meta { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-hover); margin-bottom: 10px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.experience-card-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--charcoal); line-height: 1.2; margin-bottom: 10px; }
.experience-card-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.experience-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.experience-card-price { font-family: var(--font-display); font-size: 1.1rem; color: var(--charcoal); font-weight: 500; }
.experience-card-price span { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }

/* ─── SPLIT SECTION ──────────────────────────────────────── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.split-panel { position: relative; overflow: hidden; cursor: pointer; }
.split-panel-img { position: absolute; inset: 0; }
.split-panel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.split-panel:hover .split-panel-img img { transform: scale(1.06); }
.split-panel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,10,5,0.75) 0%, rgba(15,10,5,0.18) 60%, transparent); transition: background var(--t-mid); }
.split-panel:hover .split-panel-overlay { background: linear-gradient(to top, rgba(15,10,5,0.88) 0%, rgba(15,10,5,0.3) 60%, transparent); }
.split-panel-content { position: absolute; bottom: 48px; left: 44px; right: 44px; color: #f8f5f0; }
.split-panel-tag { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.split-panel-tag::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(201,168,106,0.5); }
.split-panel-name { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 400; line-height: 1.15; margin-bottom: 14px; }
.split-panel-desc { font-size: 0.88rem; color: rgba(248,245,240,0.7); line-height: 1.65; margin-bottom: 24px; max-width: 340px; }
.split-panel-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-light); border-bottom: 1px solid rgba(201,168,106,0.4); padding-bottom: 3px; transition: border-color var(--t-fast), gap var(--t-fast); }
.split-panel:hover .split-panel-link { border-color: var(--gold-light); gap: 14px; }

/* ─── STORY SECTION ──────────────────────────────────────── */
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 640px; align-items: stretch; }
.story-img-wrap { position: relative; overflow: hidden; }
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.story-section:hover .story-img-wrap img { transform: scale(1.04); }
.story-text-panel { background: var(--bg-alt); border-left: 1px solid var(--border-warm); padding: 80px 7%; display: flex; flex-direction: column; justify-content: center; }
.story-text-panel blockquote { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-style: italic; font-weight: 300; color: var(--charcoal); line-height: 1.5; margin: 28px 0 36px; padding-left: 20px; border-left: 2px solid var(--gold-border); }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.story-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--gold-hover); line-height: 1; margin-bottom: 6px; }
.story-stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--r-md); padding: 32px 28px; box-shadow: var(--shadow-xs); transition: transform var(--t-mid), box-shadow var(--t-mid); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-quote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--charcoal); line-height: 1.65; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border-warm); font-family: var(--font-display); font-size: 1rem; color: var(--gold-hover); display: flex; align-items: center; justify-content: center; font-weight: 500; }
.testimonial-name { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.testimonial-location { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.cta-band { text-align: center; padding: var(--section-pad) 5%; background: var(--bg-cream); border-top: 1px solid var(--border-warm); }
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.newsletter-form { display: flex; gap: 0; margin: 36px auto 14px; max-width: 460px; border: 1px solid var(--border-warm); border-radius: var(--r-full); overflow: hidden; background: var(--card); transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.newsletter-form:focus-within { border-color: var(--gold-border); box-shadow: 0 0 0 3px var(--gold-pale); }
.newsletter-input { flex: 1; padding: 15px 24px; border: none; outline: none; background: transparent; font-size: 0.88rem; font-family: var(--font-body); color: var(--charcoal); }
.newsletter-input::placeholder { color: var(--text-light); }
.newsletter-form .btn { border-radius: var(--r-full); margin: 4px; padding: 11px 24px; }
.newsletter-note { font-size: 0.7rem; color: var(--text-muted); }

/* ─── SECTION CTA ROW ────────────────────────────────────── */
.section-cta-row { text-align: center; margin-top: 56px; }

/* ─── SHOP CARDS ─────────────────────────────────────────── */
.shop-cards-section { padding: 80px 0 72px; background: var(--surface); border-top: 1px solid var(--border-warm); }
.shop-cards-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 0 5%; margin-bottom: 32px; }
.shop-cards-tag { display: block; font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.shop-cards-title { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 500; color: var(--charcoal); line-height: 1.05; margin: 0; }
.shop-cards-title em { font-style: italic; font-weight: 300; color: var(--gold-hover); }
.shop-cards-viewall { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; border-bottom: 1px solid var(--border-warm); padding-bottom: 2px; transition: color 0.2s; white-space: nowrap; margin-bottom: 4px; }
.shop-cards-viewall:hover { color: var(--gold-hover); border-color: var(--gold); }
.shop-cards-track { display: flex; gap: 20px; padding: 0 5% 12px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; -ms-overflow-style: none; cursor: grab; user-select: none; }
.shop-cards-track::-webkit-scrollbar { display: none; }
.shop-card { flex: 0 0 240px; background: var(--card); border-radius: 14px; border: 1px solid var(--border-soft); box-shadow: var(--shadow-xs); overflow: hidden; scroll-snap-align: start; transition: transform 0.35s cubic-bezier(0.25,1,0.5,1), box-shadow 0.35s; -webkit-user-drag: none; }
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.shop-card-img { position: relative; height: 220px; background: var(--bg-alt); overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.shop-card:hover .shop-card-img img { transform: scale(1.04); }
.shop-card-badge { position: absolute; top: 10px; left: 10px; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; pointer-events: none; }
.shop-card-badge--save { background: var(--gold-pale); color: var(--gold-hover); border: 1px solid var(--gold-border); }
.shop-card-badge--best { background: var(--charcoal); color: #fff; }
.shop-card-badge--new  { background: #eef2ea; color: #515f45; border: 1px solid #c5d0ba; }
.shop-card-body { padding: 14px 16px 18px; }
.shop-card-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.shop-card-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; }
.shop-card-count { font-size: 0.65rem; color: var(--text-muted); }
.shop-card-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.shop-card-origin { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 10px; }
.shop-card-price-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.shop-card-price    { font-size: 1rem; font-weight: 700; color: var(--gold-hover); }
.shop-card-original { font-size: 0.76rem; color: var(--text-light); text-decoration: line-through; }
.shop-card-off { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--gold-pale); color: var(--gold-hover); border: 1px solid var(--gold-border); padding: 2px 6px; border-radius: 4px; }
.shop-card-atc { width: 100%; padding: 10px; background: var(--charcoal); color: #fff; border: none; border-radius: 7px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: var(--font-body); transition: background 0.2s, transform 0.15s; }
.shop-card-atc:hover { background: var(--gold); }
.shop-card-atc:active { transform: translateY(1px); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .experience-grid { grid-template-columns: repeat(2,1fr); }
  .story-section { grid-template-columns: 1fr; }
  .story-img-wrap { height: 440px; }
  .story-text-panel { border-left: none; border-top: 1px solid var(--border-warm); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { min-height: 380px; }
}
@media (max-width: 768px) {
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card-img { height: 260px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .story-text-panel { padding: 48px 6%; }
  .newsletter-form { flex-direction: column; border-radius: var(--r-md); }
  .newsletter-form .btn { border-radius: var(--r-full); margin: 0; padding: 15px; }
  .shop-cards-section { padding: 56px 0 48px; }
  .shop-cards-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .shop-card { flex: 0 0 200px; }
  .shop-card-img { height: 180px; }
}
@media (max-width: 540px) {
  .story-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   MOKSHITA — PREMIUM HOMEPAGE SECTIONS
   ══════════════════════════════════════════════════════════════ */

/* ─── SHARED DESIGN TOKENS ────────────────────────────────── */
.mk-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.mk-tag--light { color: var(--gold-light); }

.mk-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mk-heading em { font-style: italic; color: var(--gold-hover); }
.mk-heading--light { color: #f5f0e8; }
.mk-heading--light em { color: var(--gold-light); }

.mk-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

.mk-body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 480px;
}
.mk-body--light { color: rgba(245,240,232,0.75); }

.mk-divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-border);
  margin: 28px 0;
}

/* Primary buttons (ivory) */
.mk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: linear-gradient(130deg, #ecdcb0 0%, #c9a86a 100%);
  color: #1a0f00;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,106,0.28);
  transition: background 0.35s, box-shadow 0.35s, transform 0.2s;
}
.mk-btn-primary:hover {
  background: linear-gradient(130deg, #f5e6bc 0%, #d9b46e 100%);
  box-shadow: 0 8px 32px rgba(201,168,106,0.45);
  transform: translateY(-2px);
  color: #1a0f00;
}

/* Outline button (light on dark) */
.mk-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: #f5f0e8;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  border: 1.5px solid rgba(245,240,232,0.45);
  transition: background 0.35s, border-color 0.35s, transform 0.2s;
}
.mk-btn-outline-light:hover {
  background: rgba(245,240,232,0.12);
  border-color: rgba(245,240,232,0.8);
  transform: translateY(-2px);
  color: #fff;
}

/* ─── SECTION 1: VALUES ────────────────────────────────────── */
.values-section {
  background: #F8F5EF;
  padding: 110px 5% 100px;
  position: relative;
  z-index: 1;
  /* No margin-top overlap needed — hero is now normal flow */
  /* Subtle top shadow creates a clean intentional curtain transition */
  box-shadow: 0 -1px 0 0 rgba(201,168,106,0.12);
}
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.values-header .mk-subtext { margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  background: #fff;
  border: 1px solid rgba(201,168,106,0.15);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  border-color: rgba(201,168,106,0.35);
}
.value-card-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: #fdf8f0;
  border: 1px solid rgba(201,168,106,0.2);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  transition: background 0.35s, border-color 0.35s;
}
.value-card:hover .value-card-icon {
  background: #f9f0df;
  border-color: rgba(201,168,106,0.5);
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.value-card-desc {
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── SECTION 2: MISSION ───────────────────────────────────── */
.mission-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  background: #fff;
}
.mission-image {
  position: relative;
  overflow: hidden;
}
.mission-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.mission-section:hover .mission-image img { transform: scale(1.04); }
.mission-image-caption {
  position: absolute;
  bottom: 24px; left: 28px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
}
.mission-text {
  padding: 90px 8%;
  background: #F8F5EF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 32px 0 36px;
  padding-left: 22px;
  border-left: 2px solid var(--gold-border);
}
.mission-quote footer {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
}

/* ─── SECTION 3: ARTISAN STORY ─────────────────────────────── */
.artisan-story-section {
  background: var(--charcoal-2);
  padding: 110px 5%;
}
.artisan-story-inner { max-width: 1200px; margin: 0 auto; }
.artisan-story-header {
  text-align: center;
  margin-bottom: 72px;
}
.artisan-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.artisan-story-portrait {
  position: relative;
}
.artisan-story-portrait img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 580px;
  filter: brightness(0.92) saturate(1.05);
}
.artisan-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.artisan-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,106,0.3);
  border-radius: 9999px;
  padding: 6px 16px;
  background: rgba(201,168,106,0.06);
}
.artisan-story-intro {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.artisan-story-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 28px;
}
.artisan-story-body {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(245,240,232,0.68);
  line-height: 1.9;
}

/* ══════════════════════════════════════════════════════════════
   CURATED COLLECTIONS — Two-Row Luxury Heritage Gallery
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ──────────────────────────────────────── */
.col-section {
  position: relative;
  background: #F8F5EF;
  padding: 110px 5% 120px;
  overflow: hidden;
}

/* ── Floral background system ─────────────────────────────── */
.col-floral-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.col-floral-svg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 280px;
  height: 100%;
}

.col-floral-svg--left  { left: 0; }
.col-floral-svg--right { right: 0; }

/* Radial ivory vignette — fades floral toward center */
.col-floral-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 100% at 50% 50%,
      #F8F5EF 30%,
      rgba(248,245,239,0.8) 55%,
      rgba(248,245,239,0.3) 75%,
      transparent 100%);
  pointer-events: none;
}

/* ── Inner container ──────────────────────────────────────── */
.col-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Section header ───────────────────────────────────────── */
.col-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 80px;
}

.col-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.col-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #1d1106;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.col-heading em {
  font-style: italic;
  color: var(--gold-hover);
  font-weight: 300;
}

.col-subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Three-card row ───────────────────────────────────────── */
.col-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;    /* stagger works via translateY */
}

/* ── Row divider ornament ─────────────────────────────────── */
.col-row-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 72px 0;
}

/* ── Individual card ──────────────────────────────────────── */
.col-card {
  background: #FFFDF8;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201,168,106,0.14);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.055),
    0 1px 6px rgba(0,0,0,0.035);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.5s cubic-bezier(0.25,1,0.5,1),
    box-shadow 0.5s cubic-bezier(0.25,1,0.5,1),
    border-color 0.5s;
  will-change: transform;
}

/* Side cards sit 25px lower than center → elevation illusion */
.col-card--side   { transform: translateY(25px); }
.col-card--center { transform: translateY(0px); }

/* Hover: both card types lift from their base position */
.col-card--side:hover {
  transform: translateY(10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.095), 0 4px 16px rgba(0,0,0,0.05);
  border-color: rgba(201,168,106,0.3);
}
.col-card--center:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.11), 0 6px 20px rgba(0,0,0,0.06);
  border-color: rgba(201,168,106,0.32);
}

/* ── Card image ───────────────────────────────────────────── */
.col-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #1a1208;
  flex-shrink: 0;
}

.col-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25,1,0.5,1);
  filter: brightness(0.88) saturate(1.12);
}

.col-card:hover .col-card-img img {
  transform: scale(1.07);
}

/* Subtle gradient overlay at image bottom */
.col-card-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(20,12,4,0.22));
  pointer-events: none;
}

/* ── Card body ────────────────────────────────────────────── */
.col-card-body {
  padding: 30px 28px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Region label — gold uppercase */
.col-card-region {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Craft title — large serif */
.col-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  color: #1d1106;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

/* Thin gold rule */
.col-card-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,168,106,0.7), transparent);
  margin-bottom: 16px;
}

/* Description */
.col-card-story {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.82;
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}

/* CTA link */
.col-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1d1106;
  margin-top: auto;
  transition: color 0.28s, gap 0.28s;
}

.col-card:hover .col-card-link {
  color: var(--gold-hover);
}

.col-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1);
}

.col-card:hover .col-arrow {
  transform: translateX(5px);
}

/* ── CTA button ───────────────────────────────────────────── */
.col-cta {
  text-align: center;
  margin-top: 20px;
}

.col-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 54px;
  background: #1d1106;
  color: #F8F5EF;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid #1d1106;
  transition:
    background 0.42s var(--ease),
    color      0.42s var(--ease),
    border-color 0.42s var(--ease),
    transform  0.22s var(--ease),
    box-shadow 0.42s var(--ease);
}

.col-cta-btn:hover {
  background: transparent;
  color: #1d1106;
  border-color: #1d1106;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(29,17,6,0.12);
}

.col-cta-btn svg {
  transition: transform 0.32s var(--ease);
  flex-shrink: 0;
}

.col-cta-btn:hover svg { transform: translateX(5px); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .col-card-img { height: 280px; }
  .col-row { gap: 24px; }
}

@media (max-width: 860px) {
  /* Horizontal scroll on tablet/mobile */
  .col-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 5%;
    gap: 20px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .col-row::-webkit-scrollbar { display: none; }

  .col-card {
    flex: 0 0 72vw;
    max-width: 380px;
    scroll-snap-align: center;
    border-radius: 20px;
  }

  /* Reset stagger on mobile */
  .col-card--side,
  .col-card--center { transform: none !important; }
  .col-card--side:hover,
  .col-card--center:hover { transform: translateY(-8px) !important; }

  .col-card-img { height: 260px; }
  .col-row-divider { margin: 40px 0; }
  .col-section { padding: 80px 5% 90px; }
}

@media (max-width: 540px) {
  .col-card { flex: 0 0 84vw; }
  .col-card-img { height: 240px; }
  .col-heading { letter-spacing: -0.01em; }
  .col-cta-btn { padding: 16px 36px; font-size: 0.6rem; }
  .col-header { margin-bottom: 56px; }
  .col-section { padding: 64px 5% 72px; }
}


/* ─── SECTION 5: IMPACT ────────────────────────────────────── */
.impact-section {
  background: var(--charcoal-2);
  padding: 110px 5%;
}
.impact-inner { max-width: 1200px; margin: 0 auto; }
.impact-header {
  text-align: center;
  margin-bottom: 80px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(201,168,106,0.15);
  border-radius: 20px;
  overflow: hidden;
}
.impact-stat {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(201,168,106,0.1);
  transition: background 0.35s;
}
.impact-stat:last-child { border-right: none; }
.impact-stat:hover { background: rgba(201,168,106,0.04); }
.impact-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.impact-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5f0e8;
  margin-bottom: 16px;
}
.impact-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.7;
}

/* ─── SECTION 6: EXPERIENCES ───────────────────────────────── */
.experiences-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.experiences-bg {
  position: absolute;
  inset: 0;
}
.experiences-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
.experiences-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(4,2,1,0.88) 0%,
    rgba(4,2,1,0.72) 40%,
    rgba(4,2,1,0.35) 70%,
    transparent 100%
  );
}
.experiences-content {
  position: relative;
  z-index: 5;
  padding: 100px 7%;
  max-width: 700px;
}
.experiences-heading {
  font-size: clamp(2.2rem, 4.5vw, 4rem) !important;
  margin-bottom: 24px !important;
}
.experiences-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.exp-pill {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  border: 1px solid rgba(245,240,232,0.28);
  border-radius: 9999px;
  padding: 8px 20px;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.exp-pill:hover {
  background: rgba(245,240,232,0.1);
  border-color: rgba(245,240,232,0.55);
}

/* ─── SECTION 7: TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: #fff;
  padding: 110px 5%;
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-mk {
  background: #F8F5EF;
  border: 1px solid rgba(201,168,106,0.15);
  border-radius: 20px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.testimonial-mk:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}
.testimonial-mk-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
}
.testimonial-mk-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
}
.testimonial-mk-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,106,0.15);
}
.testimonial-mk-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-mk-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.testimonial-mk-loc {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── SECTION 8: NEWSLETTER ────────────────────────────────── */
.newsletter-section {
  background: #F8F5EF;
  padding: 110px 5%;
  border-top: 1px solid var(--border-warm);
}
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
}
.newsletter-form-mk {
  display: flex;
  gap: 0;
  border: 1px solid rgba(201,168,106,0.3);
  border-radius: 9999px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 14px;
}
.newsletter-form-mk:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,106,0.1);
}
.newsletter-input-mk {
  flex: 1;
  padding: 16px 28px;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
}
.newsletter-input-mk::placeholder { color: var(--text-light); }
.newsletter-form-mk .mk-btn-primary {
  border-radius: 9999px;
  margin: 4px;
  padding: 12px 28px;
  font-size: 0.65rem;
}
.newsletter-note-mk {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-stat { border-bottom: 1px solid rgba(201,168,106,0.1); }
  .impact-stat:nth-child(2) { border-right: none; }
  .impact-stat:nth-child(3) { border-right: 1px solid rgba(201,168,106,0.1); border-bottom: none; }
  .impact-stat:last-child { border-right: none; border-bottom: none; }
  .artisan-story-layout { grid-template-columns: 1fr; gap: 48px; }
  .artisan-story-portrait img { max-height: 420px; object-fit: cover; }
}
@media (max-width: 900px) {
  .mission-section { grid-template-columns: 1fr; }
  .mission-image { height: 420px; }
  .mission-text { padding: 64px 6%; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-section { padding: 80px 5% 72px; }
  .artisan-story-section { padding: 80px 5%; }
  .collections-section { padding: 80px 5%; }
  .impact-section { padding: 80px 5%; }
  .experiences-content { padding: 80px 6%; }
  .testimonials-section { padding: 80px 5%; }
  .newsletter-section { padding: 80px 5%; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 32px 24px; }

  .impact-grid { grid-template-columns: 1fr; }
  .impact-stat { border-right: none; border-bottom: 1px solid rgba(201,168,106,0.1); }
  .impact-stat:last-child { border-bottom: none; }
  .newsletter-form-mk { flex-direction: column; border-radius: 16px; }
  .newsletter-form-mk .mk-btn-primary { border-radius: 12px; margin: 0; padding: 16px; }
  .experiences-content { padding: 64px 5%; }
  .experiences-heading { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; }
}



/* ══════════════════════════════════════════════════════════════
   CRAFT DISCOVERY — Luxury Cultural Discovery Strip
   Inspired by: Aman Resorts, Airbnb Experiences, editorial travel
   ══════════════════════════════════════════════════════════════ */

.craft-discovery {
  position: relative;
  z-index: 2; /* slides over sticky hero */
  /* Rounded top corners — premium magazine page-turn feel */
  border-radius: 28px 28px 0 0;
  /* Elevated shadow casts back onto the hero as section emerges */
  box-shadow: 0 -12px 60px rgba(0, 0, 0, 0.22), 0 -2px 12px rgba(0, 0, 0, 0.08);
  /* Layered heritage background */
  background:
    radial-gradient(ellipse 70% 85% at 50% 54%,
      rgba(212,180,120,0.12) 0%,
      rgba(212,180,120,0.04) 45%,
      transparent 72%),
    radial-gradient(ellipse 90% 55% at 50% 0%,
      rgba(244,239,230,0.55) 0%,
      transparent 100%),
    radial-gradient(ellipse 60% 30% at 50% 100%,
      rgba(236,230,218,0.35) 0%,
      transparent 100%),
    #F8F5EF;
  padding: 120px 5% 140px;
  overflow: hidden;
}

/* Very subtle heritage textile diamond pattern at 2% opacity.
   Inspired by traditional Indian block-print textile grids.
   Barely perceptible — adds parchment-like tactile depth. */
.craft-discovery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M24 3 L45 24 L24 45 L3 24 Z' fill='none' stroke='%23916b20' stroke-width='0.7'/%3E%3Ccircle cx='24' cy='24' r='1.4' fill='%23916b20'/%3E%3Ccircle cx='0' cy='0' r='1' fill='%23916b20'/%3E%3Ccircle cx='48' cy='0' r='1' fill='%23916b20'/%3E%3Ccircle cx='0' cy='48' r='1' fill='%23916b20'/%3E%3Ccircle cx='48' cy='48' r='1' fill='%23916b20'/%3E%3C/svg%3E");
  background-size: 48px 48px;
  opacity: 0.022;        /* 2.2% — visible only up close, elegant from distance */
  pointer-events: none;
  z-index: 0;
}

.craft-discovery-inner {
  max-width: 1380px;
  margin: 0 auto;
  position: relative; /* ensures content sits above ::before pattern */
  z-index: 1;
}

/* ── Section Header ─────────────────────────────────────────── */
.cd-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 80px;
}
.cd-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  display: block;
  opacity: 1;
}
.cd-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 2.75rem);
  font-weight: 300;
  color: #1d1106;
  line-height: 1.15;
  letter-spacing: -0.018em;
  margin: 0 0 16px;
}
.cd-heading em {
  font-style: italic;
  color: var(--gold-hover);
  font-weight: 300;
}
.cd-sub {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-weight: 300;
  margin: 0;
  opacity: 0.9;
}

/* ── Curved Card Strip ──────────────────────────────────────── */
.cd-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  overflow: visible;
  padding-bottom: 60px;
  margin-bottom: 16px;
  align-items: start;
}

/* ── Destination Card ───────────────────────────────────────── */
.cd-dest-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(201,168,106,0.16);
  /* Resting shadow lifts all cards off the ivory page */
  box-shadow: 0 4px 18px rgba(29,17,6,0.07),
              0 1px 4px rgba(29,17,6,0.05);
  transition: transform 0.4s ease,
              box-shadow 0.4s ease,
              border-color 0.4s ease;
  cursor: pointer;
  will-change: transform;
}

/* ── Arc: gentle smile curve per nth-child ───────────────────── */
.cd-strip .cd-dest-card:nth-child(1) { transform: translateY(40px); }
.cd-strip .cd-dest-card:nth-child(2) { transform: translateY(20px); }
.cd-strip .cd-dest-card:nth-child(3) {
  transform: translateY(0px);
  box-shadow: 0 10px 36px rgba(29,17,6,0.14), 0 2px 8px rgba(29,17,6,0.07);
  border-color: rgba(201,168,106,0.28);
}
.cd-strip .cd-dest-card:nth-child(4) {
  transform: translateY(0px);
  box-shadow: 0 10px 36px rgba(29,17,6,0.14), 0 2px 8px rgba(29,17,6,0.07);
  border-color: rgba(201,168,106,0.28);
}
.cd-strip .cd-dest-card:nth-child(5) { transform: translateY(20px); }
.cd-strip .cd-dest-card:nth-child(6) { transform: translateY(40px); }

/* ── Hover: lift -8px from arc base ─────────────────────────── */
.cd-strip .cd-dest-card:nth-child(1):hover {
  transform: translateY(32px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}
.cd-strip .cd-dest-card:nth-child(2):hover {
  transform: translateY(12px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}
.cd-strip .cd-dest-card:nth-child(3):hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}
.cd-strip .cd-dest-card:nth-child(4):hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}
.cd-strip .cd-dest-card:nth-child(5):hover {
  transform: translateY(12px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}
.cd-strip .cd-dest-card:nth-child(6):hover {
  transform: translateY(32px);
  box-shadow: 0 16px 44px rgba(29,17,6,0.11);
  border-color: rgba(201,168,106,0.30);
}

/* ── Image area ──────────────────────────────────────────────── */
.cd-dest-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
}
.cd-dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.cd-dest-card:hover .cd-dest-img img {
  transform: scale(1.03);
}

/* ── Text body ───────────────────────────────────────────────── */
.cd-dest-body {
  padding: 20px 20px 24px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cd-dest-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: #120d06;         /* near-black dark brown — strong, rich */
  line-height: 1.25;
  margin: 0;
  transition: color 0.3s ease;
}
.cd-dest-card:hover .cd-dest-name {
  color: var(--gold-hover);
}
.cd-dest-loc {
  font-family: var(--font-body);
  font-size: 0.6rem;      /* smaller — clearly secondary */
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(100,80,55,0.55);  /* muted warm tone, not competing */
  margin: 0;
}

/* ── CTA Row ─────────────────────────────────────────────────── */
.cd-cta-row {
  text-align: center;
  padding-top: 16px;
}
.cd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  /* Filled charcoal — strong CTA contrast */
  color: #F8F5EF;
  background: #1d1106;
  text-decoration: none;
  padding: 17px 46px;
  border: 1.5px solid #1d1106;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(29,17,6,0.18);
  transition: background 0.35s ease, border-color 0.35s ease,
              color 0.35s ease, letter-spacing 0.35s ease,
              box-shadow 0.35s ease;
}
.cd-cta-btn:hover {
  background: #2e1d0c;
  border-color: #2e1d0c;
  color: var(--gold-light);
  letter-spacing: 0.30em;
  box-shadow: 0 8px 28px rgba(29,17,6,0.28);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .cd-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding-bottom: 0;
    overflow: hidden;
  }
  .cd-strip .cd-dest-card:nth-child(1),
  .cd-strip .cd-dest-card:nth-child(2),
  .cd-strip .cd-dest-card:nth-child(3),
  .cd-strip .cd-dest-card:nth-child(4),
  .cd-strip .cd-dest-card:nth-child(5),
  .cd-strip .cd-dest-card:nth-child(6) { transform: none; }
  .cd-strip .cd-dest-card:nth-child(1):hover,
  .cd-strip .cd-dest-card:nth-child(2):hover,
  .cd-strip .cd-dest-card:nth-child(3):hover,
  .cd-strip .cd-dest-card:nth-child(4):hover,
  .cd-strip .cd-dest-card:nth-child(5):hover,
  .cd-strip .cd-dest-card:nth-child(6):hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(29,17,6,0.11);
    border-color: rgba(201,168,106,0.30);
  }
  .cd-cta-row { padding-top: 0; }
  .craft-discovery { padding: 90px 5% 100px; }
  .cd-header { margin-bottom: 52px; }
}
@media (max-width: 800px) {
  .cd-strip {
    grid-template-columns: repeat(6, 200px);
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    gap: 14px;
  }
  .cd-strip::-webkit-scrollbar { display: none; }
  .cd-dest-card { scroll-snap-align: start; }
  .craft-discovery { padding: 80px 5% 90px; }
  .cd-header { margin-bottom: 44px; max-width: 100%; }
  .cd-heading { font-size: clamp(1.55rem, 5.5vw, 2rem); }
}
@media (max-width: 480px) {
  .cd-strip { grid-template-columns: repeat(6, 180px); }
}
