/* ============================================================
   HOME PAGE — Exclusive Stylesheet
   Extends styles.css  ·  No hover effects · No gradients · No box shadows
   ============================================================ */

html, body { overflow-x: hidden; }

/* ─── PRODUCT IMAGE ──────────────────────────────────────── */
.product-img {
  width        : 100%;
  height       : 100%;
  object-fit   : cover;
  display      : block;
  aspect-ratio : 3 / 4;
}

/* ─── HERO IMAGES ────────────────────────────────────────── */
.hero {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  min-height           : calc(100vh - var(--nav-h));
  border-bottom        : 1px solid var(--border-lt);
}
.hero-left {
  display        : flex;
  flex-direction : column;
  justify-content: flex-end;
  padding        : 80px var(--pad) 80px;
  border-right   : 1px solid var(--border-lt);
}
.hero-season {
  font-size     : 0.68rem;
  font-weight   : 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color         : var(--gold);
  margin-bottom : 20px;
}
.hero-title {
  font-family   : var(--font-serif);
  font-size     : clamp(3.8rem, 7vw, 6.5rem);
  font-weight   : 700;
  line-height   : 1.0;
  color         : var(--text-dark);
  letter-spacing: -0.01em;
}
.hero-title span { font-style: italic; font-weight: 400; }
.hero-line {
  width     : 60px;
  height    : 1.5px;
  background: var(--gold);
  margin    : 32px 0;
}
.hero-sub {
  font-size    : 0.92rem;
  color        : var(--text-body);
  line-height  : 1.8;
  max-width    : 380px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display    : flex;
  align-items: center;
  gap        : 32px;
  margin-top : 56px;
  padding-top: 32px;
  border-top : 1px solid var(--border-lt);
}
.hero-stat-num {
  font-family   : var(--font-serif);
  font-size     : 1.9rem;
  font-weight   : 600;
  color         : var(--text-dark);
  line-height   : 1;
}
.hero-stat-lbl {
  font-size     : 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color         : var(--text-muted);
  margin-top    : 4px;
}
.hero-meta-sep { width: 1px; height: 40px; background: var(--border); }

.hero-right {
  display              : grid;
  grid-template-rows   : 2fr 1fr;
  position             : relative;
}
.hero-main-img {
  position     : relative;
  overflow     : hidden;
  border-bottom: 1px solid var(--border-lt);
  display      : flex;
  align-items  : flex-end;
  padding      : 28px;
  min-height   : 340px;
}
.hero-main-img img {
  position  : absolute;
  inset     : 0;
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.hero-main-img-lbl {
  position      : relative;
  z-index       : 2;
  font-family   : var(--font-serif);
  font-size     : 0.75rem;
  letter-spacing: 0.1em;
  color         : rgba(255,255,255,0.55);
  font-style    : italic;
}
.hero-img-strip { display: grid; grid-template-columns: 1fr 1fr; }
.hero-sub-img {
  position  : relative;
  overflow  : hidden;
  display   : flex;
  align-items: flex-end;
  padding   : 20px;
  min-height: 160px;
}
.hero-sub-img img {
  position  : absolute;
  inset     : 0;
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.hero-sub-img:first-child { border-right: 1px solid var(--border-lt); }
.hero-sub-img-meta {
  position      : relative;
  z-index       : 2;
  font-size     : 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color         : rgba(255,255,255,0.7);
  font-weight   : 500;
}
.hero-tag {
  position  : absolute;
  top       : 28px;
  right     : 28px;
  background: var(--white);
  padding   : 14px 18px;
  border    : 1px solid var(--border-lt);
  z-index   : 10;
}
.hero-tag-top { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.hero-tag-val { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

/* ─── NEW ARRIVALS ───────────────────────────────────────── */
.new-arrivals { padding: 100px 0; background: var(--white); }
.section-head {
  display        : flex;
  align-items    : flex-end;
  justify-content: space-between;
  margin-bottom  : 48px;
}
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.arrivals-head-actions { display: flex; align-items: center; gap: 16px; }
.arrivals-scroll-arrows { display: none; }

/* ─── ALL PRODUCTS ───────────────────────────────────────── */
.all-products { padding: 100px 0; background: var(--bg-section); }
.product-grid-all {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories { padding: 100px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cat-block {
  position    : relative;
  aspect-ratio: 4/5;
  overflow    : hidden;
  display     : flex;
  align-items : flex-end;
  padding     : 32px;
}
.cat-block img {
  position  : absolute;
  inset     : 0;
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.cat-overlay {
  position  : absolute;
  inset     : 0;
  background: rgba(0,0,0,0.44);
  z-index   : 1;
}
.cat-inner { position: relative; z-index: 2; }
.cat-label {
  font-size     : 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : rgba(255,255,255,0.6);
  margin-bottom : 6px;
}
.cat-title {
  font-family : var(--font-serif);
  font-size   : 2rem;
  font-weight : 600;
  color       : var(--white);
  line-height : 1.1;
  margin-bottom: 18px;
}

/* ─── EDITORIAL ──────────────────────────────────────────── */
.editorial {
  display              : grid;
  grid-template-columns: 1fr 1fr;
  min-height           : 620px;
  border-top           : 1px solid var(--border-lt);
  border-bottom        : 1px solid var(--border-lt);
}
.editorial-img {
  position: relative;
  overflow: hidden;
  display : flex;
  align-items: flex-end;
  padding : 48px;
  min-height: 520px;
}
.editorial-img img {
  position  : absolute;
  inset     : 0;
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.editorial-img-overlay {
  position  : absolute;
  inset     : 0;
  background: rgba(0,0,0,0.35);
  z-index   : 1;
}
.editorial-img > span {
  position: relative;
  z-index : 2;
  font-size     : 0.7rem;
  letter-spacing: 0.14em;
  color         : rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.editorial-text {
  display        : flex;
  flex-direction : column;
  justify-content: center;
  padding        : 80px 72px;
  background     : var(--bg-section);
}
.editorial-quote {
  font-family  : var(--font-serif);
  font-size    : 2rem;
  font-weight  : 400;
  font-style   : italic;
  color        : var(--text-dark);
  line-height  : 1.45;
  margin-bottom: 28px;
}
.editorial-author {
  font-size     : 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color         : var(--gold);
  font-weight   : 600;
}
.editorial-body {
  font-size  : 0.9rem;
  color      : var(--text-body);
  line-height: 1.8;
  margin     : 24px 0 36px;
  max-width  : 400px;
}

/* ─── BRAND PILLARS ──────────────────────────────────────── */
.pillars { padding: 100px 0; }
.pillars-grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 2px;
  margin-top           : 48px;
}
.pillar { padding: 48px 40px; background: var(--bg-section); }
.pillar:nth-child(2) { background: var(--white); border: 1px solid var(--border-lt); }
.pillar-num {
  font-family  : var(--font-serif);
  font-size    : 3rem;
  font-weight  : 700;
  color        : var(--gold);
  line-height  : 1;
  margin-bottom: 20px;
  opacity      : 0.4;
}
.pillar-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 14px; }
.pillar-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ─── BLOG ──────────────────────────────────────────────── */
.blog-section { padding: 100px 0; background: var(--bg-section); }
.blog-grid {
  display              : grid;
  grid-template-columns: repeat(3, 1fr);
  gap                  : 32px;
}
.blog-card { background: var(--white); }
.blog-card-img {
  aspect-ratio: 16 / 9;
  overflow    : hidden;
}
.blog-card-img img {
  width     : 100%;
  height    : 100%;
  object-fit: cover;
  display   : block;
}
.blog-card-body { padding: 28px 28px 32px; }
.blog-cat {
  font-size     : 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color         : var(--gold);
  font-weight   : 600;
}
.blog-title {
  font-family  : var(--font-serif);
  font-size    : 1.25rem;
  font-weight  : 600;
  color        : var(--text-dark);
  line-height  : 1.3;
  margin       : 12px 0 14px;
}
.blog-excerpt {
  font-size  : 0.86rem;
  color      : var(--text-body);
  line-height: 1.75;
  margin-bottom: 22px;
}
.blog-link {
  font-size     : 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color         : var(--text-dark);
  font-weight   : 600;
  text-decoration: none;
  border-bottom : 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter { background: var(--black); padding: 90px 0; }
.newsletter-inner {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 60px;
}
.nl-title { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; color: var(--white); line-height: 1.15; }
.nl-title em { font-style: italic; color: var(--gold); }
.nl-sub { font-size: 0.88rem; color: #888; line-height: 1.75; margin-top: 14px; max-width: 360px; }
.nl-form { display: flex; gap: 0; flex: 0 0 440px; }
.nl-input {
  flex      : 1;
  padding   : 16px 18px;
  border    : 1px solid #2e2e2e;
  background: #111;
  color     : var(--white);
  font-size : 0.88rem;
  outline   : none;
}
.nl-input::placeholder { color: #555; }

/* ─── NL SUCCESS MESSAGE ─────────────────────────────────── */
.nl-success {
  color        : var(--gold);
  font-size    : 0.9rem;
  letter-spacing: 0.06em;
  padding      : 16px 0;
}

/* ═══════════════════════════════════════════════════════════
   AESTHETIC ENHANCEMENTS — Visual Upgrade
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ENTRANCE ANIMATION ───────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.hero-season { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.10s both; }
.hero-title  { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.hero-line   { animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.44s both; }
.hero-sub    { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.54s both; }
.hero-ctas   { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.66s both; }
.hero-meta   { animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.80s both; }

/* ─── HERO LAYOUT OVERRIDES ─────────────────────────────── */
.hero-left {
  position: relative;
  overflow: hidden;
}
.hero-left > *:not(.hero-watermark):not(.scroll-hint) {
  position: relative;
  z-index : 1;
}

/* ─── HERO DECORATIVE WATERMARK ─────────────────────────── */
.hero-watermark {
  position      : absolute;
  bottom        : -0.12em;
  left          : -0.05em;
  z-index       : 0;
  font-family   : var(--font-serif);
  font-size     : clamp(160px, 21vw, 295px);
  font-weight   : 700;
  line-height   : 1;
  color         : transparent;
  -webkit-text-stroke: 1px rgba(184, 147, 90, 0.09);
  pointer-events: none;
  user-select   : none;
  letter-spacing: -0.02em;
}

/* ─── HERO ROTATING BADGE ────────────────────────────────── */
.hero-badge {
  position : absolute;
  top      : 22px;
  left     : 22px;
  width    : 82px;
  height   : 82px;
  z-index  : 8;
}
.hero-badge svg {
  width    : 100%;
  height   : 100%;
  animation: rotateBadge 15s linear infinite;
}
.hero-badge svg text {
  font-family   : var(--font-sans);
  font-size     : 9.5px;
  letter-spacing: 1.5px;
  fill          : rgba(255, 255, 255, 0.65);
}
.hero-badge-center {
  position       : absolute;
  inset          : 0;
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-family    : var(--font-serif);
  font-size      : 1.1rem;
  color          : var(--gold);
}
@keyframes rotateBadge {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* ─── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-hint {
  position      : absolute;
  bottom        : 30px;
  right         : 30px;
  display       : flex;
  flex-direction: column;
  align-items   : center;
  gap           : 8px;
  z-index       : 5;
  animation     : heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.0s both;
}
.scroll-hint-label {
  font-size     : 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color         : var(--text-muted);
  writing-mode  : vertical-rl;
}
.scroll-hint-track {
  width     : 1px;
  height    : 52px;
  background: var(--border-lt);
  position  : relative;
  overflow  : hidden;
}
.scroll-hint-track::after {
  content   : '';
  position  : absolute;
  left      : 0;
  top       : -100%;
  width     : 100%;
  height    : 100%;
  background: var(--gold);
  animation : scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 100%;  }
}

/* ─── SCROLL REVEAL SYSTEM ───────────────────────────────── */
[data-reveal] {
  opacity  : 0;
  transform: translateY(36px);
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px);  }
[data-reveal="scale"] { transform: scale(0.95); opacity: 0; }
[data-reveal="fade"]  { transform: none; }
[data-reveal].is-visible {
  opacity  : 1;
  transform: translateY(0) translateX(0) scale(1);
}
[data-delay="100"] { transition-delay: 0.10s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.20s; }
[data-delay="300"] { transition-delay: 0.30s; }
[data-delay="400"] { transition-delay: 0.40s; }
[data-delay="500"] { transition-delay: 0.50s; }

/* ─── ANIMATED SECTION TITLE UNDERLINE ──────────────────── */
.sec-title-ul {
  display : inline-block;
  position: relative;
}
.sec-title-ul::after {
  content   : '';
  position  : absolute;
  bottom    : -4px;
  left      : 0;
  width     : 0;
  height    : 1.5px;
  background: var(--gold);
  transition: width 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
[data-reveal].is-visible .sec-title-ul::after { width: 100%; }

/* ─── MOVING TEXT STRIP ──────────────────────────────────── */
.strip-scroll {
  padding      : 20px 0;
  overflow     : hidden;
  border-top   : 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  background   : var(--bg-section);
}
.strip-scroll-track {
  display    : inline-flex;
  gap        : 52px;
  animation  : stripMove 22s linear infinite;
  white-space: nowrap;
}
.strip-item {
  display    : flex;
  align-items: center;
  gap        : 18px;
  font-family: var(--font-serif);
  font-size  : 1.0rem;
  font-style : italic;
  color      : var(--text-body);
  white-space: nowrap;
}
.strip-gem {
  display      : inline-block;
  width        : 5px;
  height       : 5px;
  background   : var(--gold);
  border-radius: 50%;
  flex-shrink  : 0;
}
@keyframes stripMove {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* ─── PRODUCT CARD HOVER ─────────────────────────────────── */
.product-img-wrap img {
  transition : transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-name { transition: color 0.3s ease; }
.product-card:hover .product-name { color: var(--gold-dark); }

/* quick-add overlay */
.product-quick-add {
  position      : absolute;
  bottom        : 0;
  left          : 0;
  right         : 0;
  width         : 100%;
  background    : rgba(8, 8, 8, 0.8);
  color         : var(--white);
  font-size     : 0.63rem;
  font-weight   : 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding       : 13px;
  text-align    : center;
  transform     : translateY(100%);
  transition    : transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor        : pointer;
  border        : none;
  font-family   : var(--font-sans);
}
.product-card:hover .product-quick-add { transform: translateY(0); }

/* ─── CATEGORY HOVER ─────────────────────────────────────── */
.cat-block img {
  transition : transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.cat-block:hover img         { transform: scale(1.06); }
.cat-overlay                 { transition: background 0.5s ease; }
.cat-block:hover .cat-overlay { background: rgba(0, 0, 0, 0.32); }

/* ─── PILLAR HOVER ACCENT ────────────────────────────────── */
.pillar {
  border-left: 3px solid transparent;
  transition : border-left-color 0.35s ease;
}
.pillar:hover { border-left-color: var(--gold); }

/* ─── EDITORIAL IMAGE HOVER ──────────────────────────────── */
.editorial-img { overflow: hidden; }
.editorial-img img {
  transition : transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.editorial-img:hover img { transform: scale(1.04); }

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  pointer-events: none;
  position      : fixed;
  top           : 0;
  left          : 0;
  border-radius : 50%;
  transform     : translate(-50%, -50%);
  z-index       : 9999;
}
.cursor-dot {
  width     : 6px;
  height    : 6px;
  background: var(--black);
  transition: transform 0.12s ease, background 0.25s ease;
}
.cursor-ring {
  width       : 34px;
  height      : 34px;
  border      : 1px solid rgba(0, 0, 0, 0.28);
  z-index     : 9998;
  transition  : transform 0.18s ease, width 0.35s ease, height 0.35s ease,
                border-color 0.35s ease, opacity 0.35s ease;
  opacity     : 0.55;
}
body.use-cursor        { cursor: none; }
body.use-cursor *      { cursor: none; }
body.use-cursor input,
body.use-cursor textarea { cursor: text; }
body.csr-hover .cursor-dot {
  background: var(--gold);
  transform : translate(-50%, -50%) scale(1.7);
}
body.csr-hover .cursor-ring {
  width       : 54px;
  height      : 54px;
  border-color: var(--gold);
  opacity     : 0.38;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE STYLES - TABLET (max-width: 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 48px var(--pad) 40px;
    border-right: none;
    border-bottom: 1px solid var(--border-lt);
    order: 2;
  }

  .hero-right {
    grid-template-rows: 1fr;
    order: 1;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-meta-sep {
    display: none;
  }

  .hero-main-img {
    min-height: 400px;
  }

  .hero-sub-img {
    min-height: 140px;
  }

  .hero-tag {
    top: 16px;
    right: 16px;
    padding: 10px 14px;
  }

  .hero-watermark {
    font-size: clamp(100px, 25vw, 180px);
  }

  .scroll-hint {
    display: none;
  }

  /* New Arrivals */
  .new-arrivals {
    padding: 60px 0;
  }

  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* Categories */
  .categories {
    padding: 60px 0;
  }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-block {
    aspect-ratio: 1 / 1;
  }

  .cat-title {
    font-size: 1.5rem;
  }

  /* Editorial */
  .editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-img {
    min-height: 360px;
    order: 1;
  }

  .editorial-text {
    padding: 40px var(--pad);
    order: 2;
  }

  .editorial-quote {
    font-size: 1.5rem;
  }

  /* Pillars */
  .pillars {
    padding: 60px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .pillar {
    padding: 32px 24px;
  }

  .pillar:nth-child(2) {
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid var(--border-lt);
  }

  /* Blog */
  .blog-section {
    padding: 60px 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Newsletter */
  .newsletter {
    padding: 60px 0;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .nl-title {
    font-size: 1.8rem;
  }

  .nl-form {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE - HERO SECTION (max-width: 640px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Hero - Simple Mobile Layout */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    order: 2;
    padding: 28px 20px 32px;
    border-right: none;
    border-bottom: 1px solid var(--border-lt);
  }

  .hero-season {
    font-size: 0.6rem;
    margin-bottom: 12px;
    letter-spacing: 0.25em;
    color: var(--gold);
  }

  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
    line-height: 1.1;
  }

  .hero-title span {
    color: var(--gold);
    font-style: italic;
  }

  .hero-line {
    margin: 20px 0;
    width: 45px;
    height: 2px;
    background: var(--gold);
  }

  .hero-sub {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }

  .hero-ctas .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.62rem;
  }

  .hero-meta {
    margin-top: 28px;
    padding-top: 20px;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .hero-meta > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }

  .hero-meta-sep {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--border-lt);
    align-self: center;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .hero-stat-lbl {
    font-size: 0.55rem;
    text-align: center;
  }

  /* Hero Right - Mobile Image Section - FIXED */
  .hero-right {
    order: 1;
    display: block;
  }

  .hero-main-img {
    min-height: 320px;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .hero-main-img img {
    width: 100%;
    height: auto;
    min-height: 320px;
    object-fit: cover;
    display: block;
  }

  .hero-main-img-lbl {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.7);
  }

  .hero-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 50px;
    height: 50px;
    z-index: 10;
  }

  .hero-badge-center {
    font-size: 0.8rem;
  }

  .hero-img-strip {
    display: flex;
    width: 100%;
  }

  .hero-sub-img {
    flex: 1;
    min-height: 90px;
    position: relative;
    overflow: hidden;
  }

  .hero-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-sub-img:first-child {
    border-right: 1px solid var(--border-lt);
  }

  .hero-sub-img-meta {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.7);
  }

  .hero-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    background: var(--white);
  }

  .hero-tag-top {
    font-size: 0.5rem;
  }

  .hero-tag-val {
    font-size: 0.85rem;
  }

  .hero-watermark {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  /* Disable animations on mobile */
  .hero-season,
  .hero-title,
  .hero-line,
  .hero-sub,
  .hero-ctas,
  .hero-meta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* ═══════════════════════════════════════════════════════════
     MOBILE - NEW ARRIVALS SECTION (max-width: 640px)
     ═══════════════════════════════════════════════════════════ */

  .new-arrivals {
    padding: 40px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .sec-eyebrow {
    font-size: 0.58rem;
    color: var(--gold);
  }

  .sec-title {
    font-size: 1.4rem;
  }

  .section-head .btn {
    width: 100%;
    justify-content: center;
  }

  /* Horizontal scroll product grid */
  .product-grid-4 {
    display: flex;
    gap: 14px;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .all-products {
    padding: 40px 0;
  }

  .all-products .section-head .btn {
    display: none;
  }

  .all-products .section-head {
    justify-content: center;
    text-align: center;
  }

  .all-products .container {
    padding: 0;
  }

  .all-products .section-head {
    padding: 0 16px;
  }

  .product-grid-all {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 3px;
  }

  .product-grid-4::-webkit-scrollbar {
    display: none;
  }

  .product-grid-4 .product-card {
    flex: 0 0 68%;
    max-width: 200px;
    scroll-snap-align: start;
  }

  .product-img-wrap {
    aspect-ratio: 3/4;
  }

  .product-badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 0.5rem;
  }

  .product-wish-btn {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }

  .product-quick-add {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-size: 0.55rem;
    transform: translateY(0);
  }

  .product-label {
    font-size: 0.52rem;
    color: var(--text-muted);
  }

  .product-data {
    padding: 12px 10px 10px;
  }

  .product-name {
    font-size: 0.82rem;
  }

  .price-now {
    font-size: 0.8rem;
  }

  /* Ticker */
  .ticker-bar {
    padding: 8px 0;
  }

  .ticker-item {
    font-size: 0.52rem;
  }

  /* Moving Strip */
  .strip-scroll {
    padding: 10px 0;
  }

  .strip-item {
    font-size: 0.7rem;
  }

  /* ═══════════════════════════════════════════════════════════
     MOBILE - SHOP BY CATEGORY (max-width: 640px)
     ═══════════════════════════════════════════════════════════ */

  .categories {
    padding: 36px 0;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .cat-block {
    aspect-ratio: 3/4;
    padding: 20px;
  }

  .cat-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .cat-label {
    font-size: 0.52rem;
  }

  .cat-block .btn {
    padding: 8px 16px;
    font-size: 0.55rem;
  }

  /* ═══════════════════════════════════════════════════════════
     MOBILE - CRAFTED WITH INTENTION (PILLARS) (max-width: 640px)
     ═══════════════════════════════════════════════════════════ */

  .pillars {
    padding: 36px 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .pillar {
    padding: 20px 16px;
  }

  .pillar-num {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .pillar-title {
    font-size: 1rem;
  }

  .pillar-desc {
    font-size: 0.78rem;
  }

  /* ═══════════════════════════════════════════════════════════
     MOBILE - READ OUR STORY (EDITORIAL) (max-width: 640px)
     ═══════════════════════════════════════════════════════════ */

  .editorial {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-img {
    min-height: 220px;
    order: 1;
    position: relative;
  }

  .editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .editorial-text {
    padding: 24px 20px;
    order: 2;
  }

  .editorial-quote {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .editorial-author {
    font-size: 0.58rem;
  }

  .editorial-body {
    font-size: 0.82rem;
    margin: 14px 0 18px;
  }

  .editorial-text .btn {
    width: 100%;
    justify-content: center;
  }

  /* Blog */
  .blog-section {
    padding: 36px 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    border-bottom: 1px solid var(--border-lt);
  }

  .blog-card-body {
    padding: 16px 20px;
  }

  .blog-title {
    font-size: 0.95rem;
  }

  .blog-excerpt {
    font-size: 0.8rem;
  }

  /* Newsletter */
  .newsletter {
    padding: 36px 0;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 20px;
  }

  .nl-title {
    font-size: 1.3rem;
  }

  .nl-form {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nl-input {
    width: 100%;
  }

  .nl-form .btn {
    width: 100%;
  }

  /* Hide cursor on touch devices */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body.use-cursor {
    cursor: auto;
  }

  body.use-cursor * {
    cursor: auto;
  }

  /* ═══════════════════════════════════════════════════════════
     ENHANCED MOBILE STYLES - MORE EYE-CATCHY SECTIONS
     ═══════════════════════════════════════════════════════════ */

  /* ─── ENHANCED HERO SECTION ──────────────────────────────── */
  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 147, 90, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-left {
    order: 2;
    padding: 32px 24px 40px;
    border-right: none;
    border-bottom: 1px solid var(--border-lt);
    background: linear-gradient(180deg, var(--white) 0%, var(--warm-white) 100%);
    position: relative;
    z-index: 2;
  }

  .hero-season {
    font-size: 0.55rem;
    margin-bottom: 14px;
    letter-spacing: 0.28em;
    color: var(--gold);
    position: relative;
    display: inline-block;
    padding-left: 20px;
  }

  .hero-season::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    position: relative;
  }

  .hero-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  }

  .hero-line {
    margin: 24px 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
  }

  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.75;
    margin-bottom: 28px;
    color: var(--text-body);
    position: relative;
    padding-left: 0;
  }

  .hero-ctas {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    position: relative;
    z-index: 1;
  }

  .hero-ctas .btn {
    flex: 1;
    justify-content: center;
    padding: 13px 10px;
    font-size: 0.62rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .hero-ctas .btn-dark {
    background: var(--black);
    border-color: var(--black);
  }

  .hero-ctas .btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .hero-ctas .btn-outline {
    background: transparent;
    border: 1.5px solid var(--text-dark);
  }

  .hero-ctas .btn-outline:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
  }

  .hero-meta {
    margin-top: 32px;
    padding-top: 24px;
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: relative;
  }

  .hero-meta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    right: -24px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-lt) 20%, var(--border-lt) 80%, transparent 100%);
  }

  .hero-meta > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    padding-left: 0;
  }

  .hero-stat-num {
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 600;
  }

  .hero-stat-lbl {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 2px;
    text-align: center;
  }

  .hero-meta-sep {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--border-lt);
    align-self: center;
  }

  /* Hero Right - Enhanced Mobile */
  .hero-right {
    order: 1;
    display: block;
    position: relative;
  }

  .hero-main-img {
    min-height: 380px;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .hero-main-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-main-img img {
    width: 100%;
    height: auto;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .hero-main-img:hover img {
    transform: scale(1.03);
  }

  .hero-main-img-lbl {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 0.58rem;
    color: rgba(255,255,255,0.85);
    z-index: 2;
    padding: 6px 12px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
  }

  .hero-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 58px;
    height: 58px;
    z-index: 10;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }

  .hero-badge-center {
    font-size: 1rem;
    color: var(--gold);
  }

  .hero-badge svg {
    display: none;
  }

  .hero-img-strip {
    display: flex;
    width: 100%;
    position: relative;
  }

  .hero-img-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--border-lt);
    z-index: 2;
  }

  .hero-sub-img {
    flex: 1;
    min-height: 100px;
    position: relative;
    overflow: hidden;
  }

  .hero-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .hero-sub-img:hover img {
    transform: scale(1.05);
  }

  .hero-sub-img:first-child {
    border-right: none;
  }

  .hero-sub-img-meta {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.52rem;
    color: rgba(255,255,255,0.9);
    z-index: 2;
    padding: 4px 10px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    letter-spacing: 0.12em;
  }

  .hero-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 10px 14px;
    background: var(--white);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .hero-tag-top {
    font-size: 0.48rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
  }

  .hero-tag-val {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-dark);
  }

  .hero-watermark {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  /* Disable animations on mobile - keep it simple */
  .hero-season,
  .hero-title,
  .hero-line,
  .hero-sub,
  .hero-ctas,
  .hero-meta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  /* ═══════════════════════════════════════════════════════════
     ENHANCED MOBILE - NEW ARRIVALS SECTION
     ═══════════════════════════════════════════════════════════ */

  .new-arrivals {
    padding: 48px 0 40px;
    background: var(--white);
    position: relative;
  }

  .new-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .new-arrivals .section-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .arrivals-view-all {
    display: none;
  }

  .arrivals-scroll-arrows {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .arrivals-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .arrivals-arrow svg {
    width: 14px;
    height: 14px;
  }

  .arrivals-arrow:active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
  }

  .sec-eyebrow {
    font-size: 0.55rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    padding-left: 16px;
  }

  .sec-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--gold);
  }

  .sec-title {
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
  }

  .sec-title-ul {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
  }

  .sec-title-ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
  }

  .section-head .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.65rem;
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transition: all 0.3s ease;
  }

  .section-head .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  /* Horizontal scroll product grid - Enhanced */
  .product-grid-4 {
    display: flex;
    gap: 16px;
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    position: relative;
  }

  .all-products {
    padding: 48px 0;
  }

  .all-products .section-head .btn {
    display: none;
  }

  .all-products .section-head {
    justify-content: center;
    text-align: center;
    padding: 0 16px;
  }

  .all-products .container {
    padding: 0;
  }

  .product-grid-all {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 3px;
  }

  .product-grid-4::-webkit-scrollbar {
    display: none;
  }

  .product-grid-4 .product-card {
    flex: 0 0 72%;
    max-width: 220px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border-lt);
    transition: all 0.3s ease;
  }

  .product-grid-4 .product-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .product-img-wrap {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
  }

  .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
  }

  .product-badge {
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
    font-weight: 600;
  }

  .product-badge.badge-new {
    background: var(--gold);
    color: var(--white);
  }

  .product-badge.badge-sale {
    background: #c75b5b;
    color: var(--white);
  }

  .product-wish-btn {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .product-wish-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.5;
  }

  .product-wish-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
  }

  .product-wish-btn:hover svg {
    fill: var(--white);
  }

  .product-quick-add {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(8, 8, 8, 0.85);
    color: var(--white);
    transform: translateY(0);
    backdrop-filter: blur(4px);
  }

  .product-label {
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .product-data {
    padding: 12px 12px 12px;
  }

  .product-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .price-now {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .price-was {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
  }

  .price-save {
    font-size: 0.55rem;
    color: #c75b5b;
    margin-left: 6px;
    font-weight: 500;
  }

  /* Ticker enhanced */
  .ticker-bar {
    padding: 10px 0;
    background: var(--black);
    overflow: hidden;
  }

  .ticker-item {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
  }

  .ticker-dot {
    margin: 0 12px;
    color: var(--gold);
  }

  /* Moving Strip enhanced */
  .strip-scroll {
    padding: 14px 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--cream) 100%);
    border-top: 1px solid var(--border-lt);
    border-bottom: 1px solid var(--border-lt);
  }

  .strip-item {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--text-body);
  }

  .strip-gem {
    width: 4px;
    height: 4px;
    background: var(--gold);
  }

  /* ═══════════════════════════════════════════════════════════
     ENHANCED MOBILE - SHOP BY CATEGORY
     ═══════════════════════════════════════════════════════════ */

  .categories {
    padding: 44px 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
  }

  .categories::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(184, 147, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .categories .container {
    position: relative;
    z-index: 1;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px;
  }

  .cat-block {
    aspect-ratio: 4/5;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }

  .cat-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 3;
    pointer-events: none;
  }

  .cat-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .cat-block:hover img {
    transform: scale(1.08);
  }

  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    transition: all 0.4s ease;
  }

  .cat-block:hover .cat-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  }

  .cat-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .cat-label {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    font-weight: 500;
  }

  .cat-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }

  .cat-block .btn {
    padding: 10px 20px;
    font-size: 0.58rem;
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    opacity: 0.95;
    transition: all 0.3s ease;
    align-self: flex-start;
  }

  .cat-block:hover .btn {
    opacity: 1;
    background: var(--gold);
    border-color: var(--gold);
  }

  /* ═══════════════════════════════════════════════════════════
     ENHANCED MOBILE - CRAFTED WITH INTENTION (PILLARS)
     ═══════════════════════════════════════════════════════════ */

  .pillars {
    padding: 48px 0;
    background: var(--white);
    position: relative;
  }

  .pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
    gap: 16px;
    padding: 0 20px;
  }

  .pillar {
    padding: 28px 24px;
    background: var(--bg-section);
    border-left: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pillar:hover {
    background: var(--white);
    border: 1px solid var(--border-lt);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .pillar:hover::before {
    opacity: 1;
  }

  .pillar-num {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
  }

  .pillar-num::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--gold);
  }

  .pillar-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .pillar-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════════════════════════
     ENHANCED MOBILE - READ OUR STORY (EDITORIAL)
     ═══════════════════════════════════════════════════════════ */

  .editorial {
    grid-template-columns: 1fr;
    min-height: auto;
    background: var(--white);
  }

  .editorial-img {
    min-height: 280px;
    order: 1;
    position: relative;
    overflow: hidden;
  }

  .editorial-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .editorial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .editorial-img:hover img {
    transform: scale(1.03);
  }

  .editorial-img > span {
    position: relative;
    z-index: 2;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    padding: 8px 14px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
  }

  .editorial-text {
    padding: 32px 24px;
    order: 2;
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--white) 100%);
    position: relative;
  }

  .editorial-text::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
  }

  .editorial-quote {
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    padding-left: 0;
  }

  .editorial-author {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .editorial-body {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 16px 0 20px;
  }

  .editorial-text .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.65rem;
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transition: all 0.3s ease;
  }

  .editorial-text .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  /* Blog enhanced */
  .blog-section {
    padding: 44px 0;
    background: var(--bg-section);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .blog-card {
    background: var(--white);
    border: 1px solid var(--border-lt);
    transition: all 0.3s ease;
  }

  .blog-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .blog-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.05);
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-cat {
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .blog-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 10px 0 12px;
  }

  .blog-excerpt {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .blog-link {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 3px;
    transition: color 0.3s ease;
  }

  .blog-link:hover {
    color: var(--gold);
  }

  /* Newsletter enhanced */
  .newsletter {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--black) 0%, #151515 100%);
    position: relative;
    overflow: hidden;
  }

  .newsletter::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -50%;
    width: 100%;
    height: 300%;
    background: radial-gradient(ellipse, rgba(184, 147, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }

  .newsletter-inner {
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
  }

  .nl-title {
    font-size: 1.5rem;
    line-height: 1.2;
    position: relative;
  }

  .nl-title em {
    font-style: italic;
    color: var(--gold);
  }

  .nl-sub {
    font-size: 0.82rem;
    color: #999;
    line-height: 1.7;
  }

  .nl-form {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .nl-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.85rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: var(--white);
    transition: border-color 0.3s ease;
  }

  .nl-input:focus {
    border-color: var(--gold);
    outline: none;
  }

  .nl-form .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.65rem;
    background: var(--gold);
    border-color: var(--gold);
    transition: all 0.3s ease;
  }

  .nl-form .btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
  }

  /* Hide cursor on touch devices */
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  body.use-cursor {
    cursor: auto;
  }

  body.use-cursor * {
    cursor: auto;
  }
}
