/* ======================================
   RESET & VARIABLES
====================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #B8935A;
  --gold-lt:     #D4B896;
  --gold-dk:     #8B6E40;
  --dark:        #1C1A17;
  --dark2:       #2C2A26;
  --cream:       #FAF7F3;
  --cream2:      #F0EBE3;
  --warm:        #6B6560;
  --light:       #A09890;
  --border:      #EDE6DD;
  --white:       #FFFFFF;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
  --r:           4px;
  --rl:          8px;
  --sh:          0 2px 16px rgba(28,26,23,.08);
  --shm:         0 8px 40px rgba(28,26,23,.13);
  --tr:          .3s ease;
}



/* === IMAGE LOADING STATES === */
.img-wrap, .cat-card, .prod-imgw, .lifestyle, .look-card,
.whyus-img, .collection-banner, .slide, .gal-item, .mega-img {
  background: #e8e0d4;
  position: relative;
}
.img-wrap::before, .cat-card::before, .prod-imgw::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e8e0d4 25%, #f0ebe3 50%, #e8e0d4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  z-index: 0;
  pointer-events: none;
}
img.loaded + .img-shimmer { display: none; }
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
img { position: relative; z-index: 1; transition: opacity 0.3s; }
img:not([src]) { opacity: 0; }

html  { scroll-behavior: smooth; }
body  { font-family: var(--sans); background: var(--white); color: var(--dark); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button{ cursor: pointer; font-family: var(--sans); border: none; }
ul    { list-style: none; }

/* ======================================
   UTILITIES
====================================== */
.eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.sec-title {
  font-family: var(--serif); font-size: clamp(28px,4vw,44px);
  font-weight: 400; line-height: 1.15; color: var(--dark);
}
.sec-title em { font-style: italic; color: var(--gold); }

.btn-gold {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: background var(--tr), transform .2s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }

.btn-dark {
  background: var(--dark); color: var(--white);
  padding: 14px 32px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 500; border-radius: var(--r);
  transition: background var(--tr); display: inline-block;
}
.btn-dark:hover { background: var(--gold); }

.btn-ghost-w {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  padding: 14px 32px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 400; border-radius: var(--r);
  transition: all var(--tr); display: inline-block;
}
.btn-ghost-w:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.view-all {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); border-bottom: 1px solid var(--dark);
  padding-bottom: 3px; transition: color .2s, border-color .2s;
}
.view-all:hover { color: var(--gold); border-color: var(--gold); }

/* ======================================
   ANNOUNCE BAR
====================================== */
.announce {
  background: var(--dark); padding: 10px 0;
  overflow: hidden; position: relative; z-index: 1010;
}
.announce-track {
  display: flex; white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.announce-track:hover { animation-play-state: paused; }
.announce-item {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #C0B8AC; padding: 0 52px; flex-shrink: 0;
}
.announce-item span { color: var(--gold); margin: 0 4px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======================================
   HEADER
====================================== */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh); }
.hdr {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
}

/* Logo */
.logo {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  letter-spacing: 3px; color: var(--dark); white-space: nowrap;
}
.logo span { color: var(--gold); }

/* Nav */
.nav { display: flex; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 18px; height: 72px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--warm); font-weight: 400; white-space: nowrap;
  transition: color var(--tr);
}
.nav-link:hover { color: var(--dark); }
.nav-link .ti-chevron-down { font-size: 13px; transition: transform .25s; }
.nav-item:hover .ti-chevron-down { transform: rotate(180deg); }

/* Standard dropdown */
.dropdown {
  position: absolute; top: calc(100% + 1px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 210px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--rl);
  box-shadow: var(--shm);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown ul { padding: 10px 0; }
.dropdown li a {
  display: block; padding: 10px 22px;
  font-size: 13px; color: var(--warm);
  transition: color .15s, padding-left .15s, background .15s;
}
.dropdown li a:hover {
  color: var(--dark); padding-left: 28px; background: var(--cream);
}
.dropdown-badge {
  font-size: 9px; background: var(--gold); color: #fff;
  padding: 2px 7px; border-radius: 2px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-left: 8px; vertical-align: 1px;
}
.dd-divider { height: 1px; background: var(--border); margin: 6px 14px; }

/* Mega dropdown */
.mega {
  position: absolute; top: calc(100% + 1px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 720px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--rl);
  box-shadow: var(--shm);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 200; overflow: hidden;
}
.nav-item:hover .mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 200px;
}
.mega-col { padding: 26px 22px; }
.mega-col + .mega-col { border-left: 1px solid var(--border); }
.mega-col-ttl {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.mega-col a {
  display: block; padding: 7px 0; font-size: 13px; color: var(--warm);
  transition: color .15s;
}
.mega-col a:hover { color: var(--dark); }
.mega-img { padding: 0; position: relative; overflow: hidden; }
.mega-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.mega-img:hover img { transform: scale(1.05); }
.mega-img-label {
  position: absolute; bottom: 18px; left: 18px;
  font-family: var(--serif); font-size: 17px;
  color: #fff; font-weight: 400;
}

/* Header actions */
.hdr-actions { display: flex; align-items: center; gap: 6px; }
.hdr-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--warm); font-size: 19px;
  transition: all var(--tr); position: relative;
}
.hdr-icon:hover { background: var(--cream); color: var(--dark); }
.cart-dot {
  position: absolute; top: 6px; right: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); font-size: 9px; font-weight: 600;
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.search-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; height: 38px;
  border: 1px solid var(--border); border-radius: 24px;
  background: var(--cream); font-size: 12px; color: var(--warm);
  transition: border-color var(--tr);
}
.search-pill:hover { border-color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: transparent; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ======================================
   HERO SLIDER
====================================== */
.hero {
  position: relative; overflow: hidden;
  height: calc(100vh - 102px); /* subtract header(72) + announce(30) */
  min-height: 520px;
  max-height: 820px;
  background: var(--dark);
}
@media (max-width: 640px) {
  .hero { height: 78vh; min-height: 480px; max-height: 680px; }
}

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .9s ease; pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

.slide-img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; z-index: 1; position: relative;
}

.slide-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(15,12,9,.88) 0%,
    rgba(15,12,9,.70) 40%,
    rgba(15,12,9,.20) 70%,
    rgba(15,12,9,.05) 100%
  );
}

.slide-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; padding: 0 8%;
}

.slide-text { max-width: 600px; position: relative; z-index: 4; }
.slide.active .slide-eyebrow { animation: slideUp .7s .1s both; }
.slide.active .slide-h1      { animation: slideUp .7s .25s both; }
.slide.active .slide-desc    { animation: slideUp .7s .4s both; }
.slide.active .slide-btns    { animation: slideUp .7s .55s both; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 22px;
}
.slide-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--gold);
}

.slide-h1 {
  font-family: var(--serif); font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 300; color: #fff; line-height: 1.08; margin-bottom: 20px;
}
.slide-h1 em { font-style: italic; color: var(--gold-lt); }

.slide-desc {
  font-size: 15px; color: rgba(255,255,255,.68);
  line-height: 1.85; margin-bottom: 38px;
  max-width: 420px; font-weight: 300;
}

.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.slider-counter {
  position: absolute; top: 28px; right: 8%;
  font-family: var(--serif); font-size: 13px; color: rgba(255,255,255,.55);
  z-index: 10; letter-spacing: 1px;
}
.slider-counter strong { font-size: 20px; color: #fff; }

.slider-arrows {
  position: absolute; bottom: 36px; right: 8%;
  display: flex; gap: 8px; z-index: 10;
}
.sl-arr {
  width: 50px; height: 50px;
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--r);
  background: transparent; color: #fff; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tr);
}
.sl-arr:hover { background: var(--gold); border-color: var(--gold); }

.slider-dots {
  position: absolute; bottom: 50px; left: 8%;
  display: flex; gap: 8px; z-index: 10;
}
.sdot {
  width: 28px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.3); border: none;
  cursor: pointer; transition: all .35s;
}
.sdot.active { background: var(--gold); width: 48px; }

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.18); overflow: hidden;
}
.scroll-line::after {
  content: ''; display: block;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollAnim 1.6s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.scroll-lbl {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}

/* ======================================
   TRUST BAR
====================================== */
.trust { background: var(--cream2); border-bottom: 1px solid var(--border); }
.trust-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 24px; color: var(--gold);
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-ttl { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.trust-sub { font-size: 11px; color: var(--warm); }

/* ======================================
   SECTION SHELL
====================================== */
.sec { padding: 80px 48px; }
.sec-cream { background: var(--cream); }
.sec-dark  { background: var(--dark2); }
.sec-inner { max-width: 1400px; margin: 0 auto; }

.sec-hdr {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px;
}
.sec-hdr-l .eyebrow { margin-bottom: 10px; }

/* ======================================
   CATEGORY MOSAIC
====================================== */
.mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 16px;
}
.cat-card {
  position: relative; overflow: hidden;
  border-radius: var(--rl); cursor: pointer;
}
.cat-card:first-child { grid-row: span 2; }
.cat-card:last-child  { grid-column: span 1; }
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.cat-card:hover img { transform: scale(1.07); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,.7) 0%, transparent 55%);
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,9,.82) 0%, rgba(15,12,9,.15) 60%, transparent 100%);
}
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; }
.cat-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: #fff; display: block; margin-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.cat-count {
  font-size: 11px; color: rgba(255,255,255,.72);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.cat-arrow {
  position: absolute; bottom: 20px; right: 18px;
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; background: rgba(255,255,255,.12);
  opacity: 0; transform: translateX(-8px); transition: all .3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(15,12,9,.9) 0%, rgba(15,12,9,.3) 60%, rgba(15,12,9,.1) 100%);
}

/* ======================================
   PRODUCTS GRID
====================================== */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.prod-card {
  background: var(--white); border-radius: var(--rl);
  overflow: hidden; transition: box-shadow var(--tr);
}
.prod-card:hover { box-shadow: var(--shm); }
.prod-imgw {
  position: relative; height: 270px; overflow: hidden;
}
.prod-imgw img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.prod-card:hover .prod-imgw img { transform: scale(1.06); }

.prod-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 10px; border-radius: 2px;
  font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500;
}
.badge-new  { background: var(--gold);    color: #fff; }
.badge-sale { background: var(--dark);    color: #fff; }
.badge-hot  { background: #C0392B; color: #fff; }

.prod-wish {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--warm); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .25s, transform .25s, background .2s, color .2s;
}
.prod-card:hover .prod-wish { opacity: 1; transform: translateY(0); }
.prod-wish:hover { background: var(--gold); color: #fff; }
.prod-wish.active { background: var(--gold); color: #fff; opacity: 1; transform: translateY(0); }

.prod-qadd {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--dark); color: #fff; padding: 13px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; transform: translateY(100%); transition: all .3s;
}
.prod-card:hover .prod-qadd { opacity: 1; transform: translateY(0); }
.prod-qadd:hover { background: var(--gold); }

.prod-info { padding: 18px 18px 22px; }
.prod-cat {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.prod-name {
  font-family: var(--serif); font-size: 17px;
  font-weight: 500; color: var(--dark); margin-bottom: 10px;
}
.prod-stars { color: var(--gold); font-size: 12px; }
.prod-rev   { font-size: 11px; color: var(--light); margin-left: 5px; }
.prod-foot  {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 12px;
}
.prod-price { font-size: 16px; font-weight: 500; }
.prod-old   {
  font-size: 13px; color: var(--light);
  text-decoration: line-through; margin-left: 8px;
}
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 15px; height: 15px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.1);
  cursor: pointer; transition: transform .2s;
}
.swatch:hover { transform: scale(1.25); }

/* ======================================
   LIFESTYLE BANNER (Big Image)
====================================== */
.lifestyle {
  position: relative; height: 620px; overflow: hidden;
}
.lifestyle img {
  width: 100%; height: 100%; object-fit: cover;
}
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,26,23,.78) 42%, rgba(28,26,23,.05));
}
.lifestyle-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; padding: 0 8%;
}
.lifestyle-text { max-width: 500px; }
.lifestyle-text .eyebrow { margin-bottom: 18px; }
.lifestyle-text h2 {
  font-family: var(--serif); font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.lifestyle-text h2 em { font-style: italic; color: var(--gold-lt); }
.lifestyle-text p {
  font-size: 15px; color: rgba(255,255,255,.65);
  line-height: 1.9; margin-bottom: 34px; font-weight: 300;
}
.stats { display: flex; gap: 36px; margin-bottom: 38px; }
.stat-n {
  font-family: var(--serif); font-size: 38px;
  font-weight: 300; color: #fff; line-height: 1;
}
.stat-l {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: 4px;
}

/* ======================================
   LOOKBOOK (3 big images)
====================================== */
.lookbook-grid {
  display: grid; grid-template-columns: 1fr 1.35fr 1fr;
  gap: 18px; align-items: center;
}
.look-card {
  position: relative; overflow: hidden;
  border-radius: var(--rl); cursor: pointer;
}
.look-card img {
  width: 100%; height: 440px; object-fit: cover; display: block;
  transition: transform .65s ease;
}
.look-card:nth-child(2) img { height: 520px; }
.look-card:hover img { transform: scale(1.05); }
.look-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,12,9,.78) 0%, rgba(15,12,9,.1) 55%, transparent 100%);
  transition: background .35s;
}
.look-card:hover .look-ov {
  background: linear-gradient(to top, rgba(15,12,9,.88) 0%, rgba(15,12,9,.3) 55%, transparent 100%);
}
.look-info {
  position: absolute; bottom: 26px; left: 26px; right: 26px;
  color: #fff;
  transition: transform .35s;
}
.look-card:hover .look-info { transform: translateY(-4px); }
.look-n {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 6px;
}
.look-ttl {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  margin-bottom: 10px;
}
.look-shop {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px; transition: border-color .2s, color .2s;
}
.look-shop:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

/* ======================================
   WHY US (Split — big image + content)
====================================== */
.whyus { overflow: hidden; }
.whyus-grid { display: grid; grid-template-columns: 1fr 1fr; }
.whyus-img {
  position: relative; min-height: 620px; overflow: hidden;
}
.whyus-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s;
}
.whyus-img:hover img { transform: scale(1.04); }
.whyus-badge {
  position: absolute; bottom: 36px; left: 36px;
  background: var(--gold); padding: 18px 24px; border-radius: var(--r);
}
.whyus-badge-n {
  font-family: var(--serif); font-size: 32px; color: #fff; font-weight: 300;
}
.whyus-badge-l {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.whyus-content {
  background: var(--dark); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.whyus-content .eyebrow { margin-bottom: 16px; }
.whyus-content h2 {
  font-family: var(--serif); font-size: clamp(28px,3vw,44px);
  font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.whyus-content h2 em { font-style: italic; color: var(--gold-lt); }
.whyus-content > p {
  font-size: 14px; color: rgba(255,255,255,.5);
  line-height: 1.95; margin-bottom: 44px; font-weight: 300;
}
.why-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 44px; }
.why-item { display: flex; gap: 18px; }
.why-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid rgba(184,147,90,.4);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; color: var(--gold); font-size: 21px;
}
.why-ttl { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 5px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.75; }

/* ======================================
   MATERIALS / COLLECTION BANNER
====================================== */
.collection-banner {
  position: relative; height: 540px; overflow: hidden;
}
.collection-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.coll-overlay {
  position: absolute; inset: 0;
  background: rgba(28,26,23,.52);
}
.coll-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 24px;
}
.coll-content .eyebrow { margin-bottom: 18px; }
.coll-content h2 {
  font-family: var(--serif); font-size: clamp(34px,5vw,62px);
  font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.coll-content h2 em { font-style: italic; color: var(--gold-lt); }
.coll-content p {
  font-size: 15px; color: rgba(255,255,255,.65);
  max-width: 520px; line-height: 1.85; margin-bottom: 36px; font-weight: 300;
}

/* ======================================
   TESTIMONIALS
====================================== */
.testi { text-align: center; }
.testi-hdr { margin-bottom: 56px; }
.testi-hdr .eyebrow { margin-bottom: 12px; }
.testi-slides { overflow: hidden; }
.testi-track { display: flex; transition: transform .55s ease; }
.testi-card { min-width: 100%; padding: 0 80px; }
.testi-q {
  font-family: var(--serif); font-size: 88px; font-weight: 300;
  color: var(--gold); opacity: .25; line-height: .4; margin-bottom: 28px;
}
.testi-txt {
  font-family: var(--serif); font-size: clamp(18px,2.5vw,26px);
  font-weight: 300; font-style: italic; color: var(--dark);
  line-height: 1.65; margin-bottom: 36px;
}
.testi-auth {
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.testi-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { font-size: 13px; color: var(--gold); margin-bottom: 4px; }
.testi-name { font-size: 13px; font-weight: 500; }
.testi-loc  { font-size: 11px; color: var(--warm); letter-spacing: .5px; }
.testi-nav  { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.tdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .3s, transform .3s;
}
.tdot.active { background: var(--gold); transform: scale(1.35); }

/* ======================================
   GALLERY / INSTAGRAM
====================================== */
.gallery-hdr { text-align: center; padding: 72px 48px 44px; }
.gallery-hdr .eyebrow { margin-bottom: 12px; }
.gallery-hdr p { font-size: 14px; color: var(--warm); margin-top: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.gal-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .55s;
}
.gal-item:hover img { transform: scale(1.1); }
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(28,26,23,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov i { font-size: 28px; color: #fff; }

/* ======================================
   NEWSLETTER
====================================== */
.newsletter { background: var(--cream2); }
.nl-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.nl-inner .eyebrow { margin-bottom: 16px; }
.nl-inner h2 {
  font-family: var(--serif); font-size: clamp(26px,4vw,40px);
  font-weight: 400; color: var(--dark); margin-bottom: 14px;
}
.nl-inner p {
  font-size: 14px; color: var(--warm); line-height: 1.8; margin-bottom: 36px;
}
.nl-form {
  display: flex; border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; background: var(--white);
}
.nl-input {
  flex: 1; padding: 16px 20px; border: none;
  font-size: 14px; font-family: var(--sans); outline: none; background: transparent;
}
.nl-input::placeholder { color: var(--light); }
.nl-btn {
  background: var(--dark); color: #fff; padding: 16px 28px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; white-space: nowrap; transition: background var(--tr);
}
.nl-btn:hover { background: var(--gold); }
.nl-note { font-size: 11px; color: var(--light); margin-top: 14px; }

/* ======================================
   FOOTER
====================================== */
.footer { background: var(--dark2); color: #fff; }
.footer-top {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 48px 40px;
}
.ft-logo {
  font-family: var(--serif); font-size: 24px;
  font-weight: 600; letter-spacing: 3px; margin-bottom: 18px;
}
.ft-logo span { color: var(--gold); }
.ft-desc {
  font-size: 13px; color: rgba(255,255,255,.42);
  line-height: 1.9; margin-bottom: 28px; max-width: 280px;
}
.socials { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.45); font-size: 16px;
  transition: all var(--tr); background: transparent;
}
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }
.ft-col-ttl {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 20px;
}
.ft-links { display: flex; flex-direction: column; gap: 11px; }
.ft-links a {
  font-size: 13px; color: rgba(255,255,255,.42);
  transition: color var(--tr);
}
.ft-links a:hover { color: #fff; }

.footer-bot {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1400px; margin: 0 auto;
  padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-copy { font-size: 12px; color: rgba(255,255,255,.28); }
.payments { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,.08); padding: 4px 11px;
  border-radius: 3px; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.38);
}

/* ======================================
   MOBILE BOTTOM NAV (App feel)
====================================== */
.mob-bottom {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 900; background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(28,26,23,.1);
}
.mob-bottom-inner { display: flex; justify-content: space-around; }
.mob-tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 10px; background: transparent; color: var(--warm);
  font-family: var(--sans); font-size: 10px; letter-spacing: .5px;
  transition: color .2s; position: relative;
}
.mob-tab.active { color: var(--gold); }
.mob-tab i { font-size: 21px; }
.mob-cart-badge {
  position: absolute; top: 0; right: 6px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--gold); font-size: 8px; font-weight: 600;
  color: #fff; display: flex; align-items: center; justify-content: center;
}

/* ======================================
   MOBILE NAV PANEL
====================================== */
.mob-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(28,26,23,.5);
  opacity: 0; visibility: hidden; transition: all .3s;
}
.mob-overlay.open { opacity: 1; visibility: visible; }
.mob-panel {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--white); z-index: 1200;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mob-overlay.open .mob-panel { transform: translateX(0); }
.mob-ph {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mob-ph-logo {
  font-family: var(--serif); font-size: 22px;
  font-weight: 600; letter-spacing: 2px;
}
.mob-ph-logo span { color: var(--gold); }
.mob-close-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; font-size: 16px; cursor: pointer;
}
.mob-nav-body { padding: 0 0 48px; }
.mob-sec-ttl {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; padding: 18px 24px 6px;
}
.mob-nav-a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--dark); cursor: pointer;
  transition: background .15s;
}
.mob-nav-a:hover { background: var(--cream); }
.mob-nav-a i { font-size: 14px; color: var(--warm); transition: transform .3s; }
.mob-nav-a.sub-open i.ti-chevron-down { transform: rotate(180deg); }
.mob-sub {
  background: var(--cream); overflow: hidden;
  max-height: 0; transition: max-height .35s ease;
}
.mob-sub.open { max-height: 400px; }
.mob-sub a {
  display: block; padding: 11px 36px;
  font-size: 13px; color: var(--warm);
  border-bottom: 1px solid var(--border); transition: color .15s;
}
.mob-sub a:hover { color: var(--dark); }


/* ======================================
   SEARCH MODAL
====================================== */
.search-modal {
  position: fixed; inset: 0; z-index: 2000;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.search-modal.open { opacity: 1; visibility: visible; }
.search-modal-bg {
  position: absolute; inset: 0;
  background: rgba(15,12,9,.6); backdrop-filter: blur(6px);
}
.search-box {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--white);
  transform: translateY(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 40px rgba(15,12,9,.18);
}
.search-modal.open .search-box { transform: translateY(0); }
.search-top {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
}
.search-inp-wrap {
  flex: 1; display: flex; align-items: center; gap: 12px;
  border-bottom: 2px solid var(--dark); padding-bottom: 6px;
}
.search-inp-wrap i { font-size: 20px; color: var(--warm); }
.search-inp {
  flex: 1; border: none; outline: none; font-size: 20px;
  font-family: var(--serif); font-weight: 300; color: var(--dark);
  background: transparent; caret-color: var(--gold);
}
.search-inp::placeholder { color: var(--light); font-size: 18px; }
.search-close-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--warm); cursor: pointer;
  transition: all .2s; flex-shrink: 0;
}
.search-close-btn:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.search-body { max-width: 860px; margin: 0 auto; padding: 0 28px 28px; }
.search-section-ttl {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px; margin-top: 18px;
}
.search-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.search-tag {
  padding: 7px 16px; border: 1px solid var(--border); border-radius: 24px;
  font-size: 12px; color: var(--warm); cursor: pointer; background: transparent;
  transition: all .2s; font-family: var(--sans);
}
.search-tag:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.search-results { display: none; }
.search-results.show { display: block; }
.s-result {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer;
  transition: background .15s;
}
.s-result:last-child { border-bottom: none; }
.s-result:hover { background: var(--cream); margin: 0 -10px; padding: 10px 10px; border-radius: 6px; }
.s-result-img {
  width: 54px; height: 54px; border-radius: 4px; object-fit: cover;
  background: var(--cream2); flex-shrink: 0;
}
.s-result-name { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.s-result-cat { font-size: 11px; color: var(--warm); letter-spacing: .5px; }
.s-result-price { font-size: 14px; font-weight: 500; margin-left: auto; flex-shrink: 0; }
.search-no-result { text-align: center; padding: 28px 0; color: var(--warm); font-size: 14px; display: none; }

/* ======================================
   LOGIN MODAL
====================================== */
.auth-modal {
  position: fixed; inset: 0; z-index: 2100;
  opacity: 0; visibility: hidden; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.auth-modal.open { opacity: 1; visibility: visible; }
.auth-modal-bg {
  position: absolute; inset: 0;
  background: rgba(15,12,9,.65); backdrop-filter: blur(6px);
}
.auth-box {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 12px;
  width: 100%; max-width: 440px;
  transform: scale(.94) translateY(16px);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
  overflow: hidden; box-shadow: 0 24px 80px rgba(15,12,9,.22);
}
.auth-modal.open .auth-box { transform: scale(1) translateY(0); }
.auth-top {
  background: var(--dark); padding: 32px 36px 24px;
  text-align: center; position: relative;
}
.auth-logo { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: 2px; color: #fff; }
.auth-logo span { color: var(--gold); }
.auth-tagline { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 6px; letter-spacing: .5px; }
.auth-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: rgba(255,255,255,.6); font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
}
.auth-close:hover { border-color: #fff; color: #fff; }
.auth-tabs {
  display: flex; border-bottom: 1px solid var(--border);
}
.auth-tab {
  flex: 1; padding: 14px; text-align: center;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--warm); cursor: pointer; background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all .25s; font-family: var(--sans); font-weight: 500;
}
.auth-tab.active { color: var(--dark); border-bottom-color: var(--gold); }
.auth-body { padding: 28px 32px 32px; }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-field { margin-bottom: 18px; }
.auth-label {
  display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--warm); font-weight: 500; margin-bottom: 7px;
}
.auth-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--r); font-size: 14px; font-family: var(--sans);
  color: var(--dark); outline: none; transition: border-color .2s, box-shadow .2s;
  background: var(--cream);
}
.auth-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,90,.12); background: var(--white); }
.auth-input-wrap { position: relative; }
.auth-eye {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: transparent; border: none; color: var(--warm); cursor: pointer; font-size: 16px;
}
.auth-forgot { text-align: right; margin-top: -10px; margin-bottom: 18px; }
.auth-forgot a { font-size: 12px; color: var(--gold); }
.auth-btn {
  width: 100%; padding: 15px; background: var(--dark); color: #fff;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; border-radius: var(--r); border: none; cursor: pointer;
  font-family: var(--sans); transition: background .25s;
  position: relative; overflow: hidden;
}
.auth-btn:hover { background: var(--gold); }
.auth-btn.loading::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  animation: authLoad .6s ease infinite alternate;
}
@keyframes authLoad { from { opacity: .6; } to { opacity: 1; } }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: var(--light); font-size: 12px;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.auth-social { display: flex; gap: 10px; }
.auth-soc-btn {
  flex: 1; padding: 11px; border: 1.5px solid var(--border); border-radius: var(--r);
  background: transparent; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 12px; color: var(--dark); cursor: pointer;
  font-family: var(--sans); transition: border-color .2s, background .2s;
}
.auth-soc-btn:hover { border-color: var(--dark); background: var(--cream); }
.auth-soc-btn i { font-size: 18px; }
.auth-soc-btn.google i { color: #DB4437; }
.auth-soc-btn.phone  i { color: var(--gold); }
.auth-note { font-size: 11px; color: var(--light); text-align: center; margin-top: 16px; line-height: 1.7; }
.auth-toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark); color: #fff; padding: 12px 24px; border-radius: 6px;
  font-size: 13px; z-index: 3000; opacity: 0; transition: all .4s;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.auth-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.auth-toast.gold { background: var(--gold); }

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hdr { padding: 0 24px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .search-pill span { display: none; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat-card:first-child { grid-row: auto; grid-column: span 2; height: 260px; }
  .cat-card { height: 220px; }
  .cat-card:last-child { grid-column: span 2; }
  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-img { min-height: 380px; }
  .whyus-content { padding: 52px 40px; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lookbook-grid .look-card:last-child { display: none; }
  .look-card:nth-child(2) { margin: 0; }
  .look-card img, .look-card:nth-child(2) img { height: 360px; }
  .sec { padding: 60px 28px; }
  .gallery-hdr { padding: 56px 28px 36px; }
}

@media (max-width: 640px) {
  .announce { display: none; }
  .hdr { padding: 0 16px; height: 62px; }
  .logo { font-size: 22px; }
  .search-pill { display: none; }
  .hero { height: 90svh; min-height: 520px; }
  .slide-content { padding: 0 6%; }
  .slider-dots { left: 6%; bottom: 96px; }
  .slider-arrows { right: 6%; bottom: 84px; }
  .slider-counter { display: none; }
  .scroll-ind { display: none; }
  .slide-desc { font-size: 13px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .mosaic { grid-template-columns: 1fr; }
  .cat-card { height: 220px; }
  .cat-card:first-child, .cat-card:last-child { grid-column: auto; height: 240px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-imgw { height: 190px; }
  .prod-name { font-size: 15px; }
  .lifestyle { height: 500px; }
  .lifestyle-content { padding: 0 6%; }
  .stats { gap: 22px; }
  .stat-n { font-size: 30px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .look-card:nth-child(2) { display: none; }
  .look-card img { height: 300px; }
  .testi-card { padding: 0 20px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .nl-form { flex-direction: column; }
  .nl-btn { padding: 14px; text-align: center; }
  .footer-top { grid-template-columns: 1fr; padding: 40px 20px 28px; }
  .footer-bot { padding: 18px 20px; flex-direction: column; gap: 14px; text-align: center; }
  .payments { justify-content: center; }
  .sec-hdr { flex-direction: column; align-items: flex-start; gap: 14px; }
  body { padding-bottom: 72px; }
  .mob-bottom { display: block; }
  .collection-banner { height: 440px; }
}