:root {
    --cream: #f6f2ea;
    --ink: #0c0c0d;
    --muted: rgba(0, 0, 0, .60);
    --gold: #b7862b;
    --line: rgba(0, 0, 0, .10);
}

a{
  text-decoration:none;
  /* color:inherit; */
}

.product-media-link{
  display:block;
  text-decoration:none;
  color:inherit;
}


/* keeping your hero styling (same as before) */
/* HERO height smaller */
.hero{
  height: 62vh;              /* change this value as you like (50vh–70vh) */
  min-height: 590px;         /* keeps it nice on small screens */
  position: relative;
  overflow: hidden;
  background:#000;
}

.hero-bg{
  position:absolute;
  inset:0;
  background-image:url(../img/hero.jpg);
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

/* overlay was missing position absolute */
.hero-overlay{
  position:absolute;
  inset:0;
  /* background: linear-gradient(90deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .22) 40%, rgba(0, 0, 0, .10) 100%); */
}

/* Text + buttons should go BELOW (near bottom), not center */
.hero-inner{
  position:relative;
  z-index:2;
  height: 62vh;              /* match .hero height */
  min-height: 620px;         /* match .hero min-height */
  display:flex;
  align-items:flex-end;      /* pushes content down */
  justify-content:center;    /* keeps it centered horizontally */
  text-align:center;
  padding: 40px 12px 70px;   /* bottom padding controls how low it sits */
}


.hero-kicker {
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: 1;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    margin-bottom: 18px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .35);
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    border-radius: 0;
    padding: 12px 22px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-hero-light {
    background: #fff;
    border: 1px solid #fff;
    color: #111;
}

.btn-hero-light:hover {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .92);
    color: #111;
}

.btn-hero-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .9);
    color: #fff;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .95);
    color: #fff;
}


/* ===== Top moving strip (icons + text marquee) ===== */
.mini-marquee {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 36px;
    align-items: center;
    padding: 14px 0;
    width: max-content;
    animation: marquee 22s linear infinite;
}

.mini-marquee:hover .marquee-track {
    animation-play-state: paused;
    /* hover stop */
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* track duplicated, so -50% works */
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    user-select: none;
    color: var(--muted);
    letter-spacing: .10em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.marquee-item img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .10));
}

/* ===== Shop Collections ===== */

/* ===== Shop Collections ===== */
.shop-collections {
  background: #fff;
  padding: 56px 0;
}

.shop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.shop-title {
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 34px);
  margin: 0;
}

/* ? Top arrows like image-2 (minimal) */
.shop-arrows {
  display: flex;
  gap: 18px;
  align-items: center;
}

.arrow-btn2 {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  padding: 6px;
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: transform .15s ease, opacity .15s ease;
  opacity: .55;
}

.arrow-btn2:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.arrow-btn2 svg {
  width: 34px;     /* bigger like image-2 */
  height: 34px;
  opacity: 1;
}

/* ? Horizontal row (NO scrollbar visible, NO bottom bar) */
.collections-row {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0;          /* remove the space that makes bar feel visible */
  scrollbar-width: none;      /* Firefox hide */
  -ms-overflow-style: none;   /* IE/Edge hide */
}
.collections-row::-webkit-scrollbar {
  display: none;              /* Chrome/Safari hide */
}

/* ? Card look like image-2 */
.collection-card {
  flex: 0 0 auto;
  width: min(315px, 86vw);
  background: #efe9dd;
  border: 1px solid rgba(0, 0, 0, .06);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.collection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
}

.collection-img {
  width: 100%;
  height:460px;
  object-fit: cover;
  display: block;
  /* padding: 34px; */
  background: #efe9dd;
}

/* ? Bottom text + plain arrow (no gradient strip, no round button) */
.card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 18px;
  background: transparent;  /* remove strip */
}

.card-label {
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  color: #8a6a2b;           /* warm gold-brown like image-2 */
}

/* arrow becomes plain icon */
.card-mini-arrow {
  width: auto;
  height: auto;
  border: 0;
  background: transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: transform .2s ease, opacity .2s ease;
  opacity: .75;
  color: #8a6a2b;
}
.collection-card:hover .card-mini-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.card-mini-arrow svg {
  width: 22px;
  height: 22px;
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .collection-img { height: 460px; }
  .shop-collections { padding: 40px 0; }
}

@media (max-width: 575px) {
  .collection-img { height: 380px; padding: 22px; }
}


/* Right side white space remove (keep left padding) */
.shop-collections .container {
    max-width: 100%;
    padding-left: 5% !important;
    padding-right: 0 !important;
}

/* row ko right edge tak le jao */
.collections-row{
  padding-right: 20px;           /* optional small breathing space (0 bhi kar sakte ho) */
}

/* If still gap due to section padding */
.shop-collections{
  padding-right: 0 !important;
}

.collections-row{
  scroll-padding-right: 0;
}


/* ================================
   SECTION: Split Collections (2 tiles)
================================ */
.split-collections {
    background: #fff;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 78vh;
}

.split-card {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.split-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.split-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .20) 55%, rgba(0, 0, 0, 0) 100%);
}

.split-content {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 11%;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.split-title {
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(1.7rem, 3.4vw, 3.2rem);
    margin: 0 0 10px 0;
}

.split-sub {
    margin: 0 0 18px 0;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: none;
    opacity: .92;
}

.split-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 12px 22px;
    background: #fff;
    color: #111;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .9);
    text-decoration: none;
}

.split-btn:hover {
    background: rgba(255, 255, 255, .92);
    color: #111;
}

/* Responsive */
@media (max-width: 991px) {
    .split-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-card {
        min-height: 420px;
    }

    .split-content {
        bottom: 10%;
    }
}

/* ================================
   SECTION: Video Background (Ring)
================================ */
.video-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    background: #0b0f12;
}

.video-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(.95) contrast(.95);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .18);
}

.video-center {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 70px 12px;
    color: #fff;
}

.v-kicker {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 10px;
}

.v-title {
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    margin: 0 0 22px 0;
}

.v-ring {
    width: min(300px, 65vw);
    height: auto;
    margin: 0 auto 22px auto;
    opacity: .96;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .30));
}

.v-sub {
    font-size: 13px;
    letter-spacing: .12em;
    opacity: .92;
    margin-bottom: 20px;
    text-transform: none;
}

.v-link {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: none;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 255, 255, .65);
}

.v-link:hover {
    border-bottom-color: rgba(255, 255, 255, .95);
}


/* ================================
   SECTION: Seasonal Markdowns (overlay on bg image)
================================ */
.seasonal {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #3b0c0f;
}

.seasonal .seasonal-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.seasonal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(115, 16, 20, 0.78);
    /* red overlay like screenshot */
}

.seasonal-inner {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: grid;
    align-items: center;
    padding: 70px 0;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.seasonal-left h2 {
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: .95;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    margin: 0;
}

.seasonal-right h3 {
    color: #fff;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    margin: 0 0 14px 0;
}

.seasonal-right p {
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    letter-spacing: .08em;
    line-height: 1.7;
    margin: 0 0 22px 0;
    max-width: 520px;
}

.seasonal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 12px 20px;
    background: #fff;
    color: #111;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
}

.seasonal-btn:hover {
    background: rgba(255, 255, 255, .92);
    color: #111;
}

/* Responsive */
@media(max-width: 991px) {
    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .seasonal-right {
        text-align: left;
    }

    .seasonal-inner {
        padding: 55px 0;
    }
}

@media(max-width: 575px) {
    .seasonal {
        min-height: 60vh;
    }

    .seasonal-inner {
        min-height: 60vh;
        padding: 40px 6px 0 22px;
    }
}


/* ================================
   SECTION: New Arrivals Slider
   - horizontal slider
   - hover swap image
================================ */
.arrivals {
    background: #fff;
    padding: 56px 0;
}

.arrivals-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.arrivals-title {
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(22px, 2.4vw, 34px);
    margin: 0;
}

.shopall-link {
    display: inline-block;
    margin-top: 10px;
    color: rgba(0, 0, 0, .75);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .06em;
    border-bottom: 2px solid rgba(0, 0, 0, .22);
    padding-bottom: 6px;
    width: fit-content;
}

.shopall-link:hover {
    border-bottom-color: rgba(0, 0, 0, .55);
}

.arrivals-arrows {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    padding-right: 60px;
}

.arrivals-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .14);
    background: transparent;
    display: grid;
    place-items: center;
    transition: .2s ease;
}

.arrivals-btn:hover {
    background: rgba(0, 0, 0, .04);
}

.arrivals-btn svg {
    width: 18px;
    height: 18px;
    opacity: .6;
}

.arrivals-row {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 2px 12px 2px;
}

.arrivals-row::-webkit-scrollbar {
    height: 10px;
}

.arrivals-row::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 999px;
}

.arrivals-row::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .06);
    border-radius: 999px;
}

.product-card {
    flex: 0 0 auto;
    width: min(365px, 88vw);
    /* big like screenshot */
    scroll-snap-align: start;
    position: relative;
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, .30);
    background: rgba(255, 255, 255, .85);
    padding: 3px 6px;
}

.product-media {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: opacity .18s ease;
}

/* Hover swap (default: show primary, on hover show alt) */
.product-img.alt {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-img.primary {
    opacity: 0;
}

.product-card:hover .product-img.alt {
    opacity: 1;
}

/* Quick view */
.quick-view {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: transform .22s ease;
    background: rgba(255, 255, 255, .86);
    border-top: 1px solid rgba(0, 0, 0, .08);
    text-align: center;
    padding: 12px 10px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-meta {
    padding-top: 18px;
    text-align: center;
}

.product-name {
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .68);
    margin-bottom: 6px;
    font-weight: 700;
}

.product-price {
    font-size: 14px;
    letter-spacing: .08em;
    color: rgba(0, 0, 0, .85);
}

/* Responsive */
@media(max-width: 991px) {
    .product-img {
        height: 440px;
    }

    .arrivals {
        padding: 44px 0;
    }
}

@media(max-width: 575px) {
    .product-img {
        height: 360px;
    }

    .arrivals-row {
        gap: 18px;
    }
}


/* ? Right side full-bleed, left padding same */
.arrivals .container {
    max-width: 100%;
    padding-right: 0px !important;
    padding-left: 5% !important;
}

/* ? slider row ko right edge tak le jao */
.arrivals-row{
  padding-right: 0 !important;   /* row ka right padding remove */
  margin-right: 0 !important;
}

/* ? (Optional) if last card cut ho rahi ho, little safe space */
.arrivals-row::after{
  content:"";
  flex: 0 0 18px;               /* small breathing space at end */
}

/* hide scrollbar (but scroll still works) */
.arrivals-row{
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.arrivals-row::-webkit-scrollbar{
  display: none;                /* Chrome/Safari */
}


/* ================================
   SECTION: Editorial 2-image grid
================================ */
.editorial-2 {
    background: #f6f2ea;
    padding: 56px 0 30px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.editorial-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.editorial-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    background: #eee;
}

.editorial-img-one {
    width: 100%;
    height: 760px;
    object-fit: cover;
    background: #eee;
}

.editorial-title {
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(18px, 2.1vw, 28px);
    margin: 0;
    color: rgba(0, 0, 0, .8);
}

.editorial-btn {
    width: fit-content;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, .35);
    background: transparent;
    color: rgba(0, 0, 0, .8);
    padding: 8px 14px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 10px;
    text-decoration: none;
}

.editorial-btn:hover {
    background: rgba(0, 0, 0, .04);
    color: rgba(0, 0, 0, .9);
}

/* Responsive */
@media (max-width: 991px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-img {
        height: 440px;
    }
}

@media (max-width: 575px) {
    .editorial-2 {
        padding: 42px 0 20px;
    }

    .editorial-img {
        height: 360px;
    }
}


/* ================================
   SECTION: Bazaar Marquee + 3 Tiles
================================ */
.bazaar-strip {
    background: #1f1411;
    color: rgba(255, 255, 255, .88);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .10);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.bazaar-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    padding: 14px 0;
    animation: bazaarMove 18s linear infinite;
}

.bazaar-strip:hover .bazaar-track {
    animation-play-state: paused;
}

@keyframes bazaarMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.bazaar-item {
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: .92;
    user-select: none;
}

.bazaar-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    letter-spacing: .18em;
    opacity: .95;
}

.feature-tiles {
  background: #fff;
  padding: 54px 0 40px;
  overflow-x: hidden; 
}

.feature-tiles .container{
  max-width: 1300px;
  padding-left: 16px;
  padding-right: 16px;
}

.tiles-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
  gap: 25px;
  align-items: start;
}

.tile{
  position: relative;
  overflow: hidden;
  background: #eee;
  width: 100%;          
  min-width: 0;        
  height: 520px;
}


.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .20) 55%, rgba(0, 0, 0, 0) 100%);
}


@media (max-width: 991px){
  .tiles-grid{
    grid-template-columns: 1fr;
  }
  .tile{
    height: 520px;
  }
}

@media (max-width: 575px){
  .tile{
    height: 440px;
  }
}
.tile-content {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 10%;
    z-index: 2;
    color: #fff;
}

.tile-kicker {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .9;
    font-weight: 800;
    margin-bottom: 6px;
}

.tile-title {
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    margin: 0 0 14px 0;
}

.tile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    padding: 12px 18px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
}

.tile-btn:hover {
    background: rgba(255, 255, 255, .92);
    color: #111;
}

.section-divider {
    border-top: 1px solid rgba(0, 0, 0, .14);
    margin-top: 42px;
}

/* Responsive */
@media(max-width: 1199px) {
    .tile {
        height: 560px;
    }
}

@media(max-width: 991px) {
    .tiles-grid {
        grid-template-columns: 1fr;
    }

    .tile {
        height: 520px;
    }
}

@media(max-width: 575px) {
    .tile {
        height: 440px;
    }
}

/* ================================
   SECTION: Before/After Compare Slider
================================ */
.compare-section {
    background: #fff;
    /* padding: 70px 0; */
    /* border-top: 1px solid rgba(0, 0, 0, .14); */
    /* border-bottom: 1px solid rgba(0, 0, 0, .14); */
}

.compare-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.compare-box {
    position: relative;
    width: 100%;
    height: min(560px, 90vh);
    overflow: hidden;
    background: #eee;
}

/* BOTH images pinned same */
.compare-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* important */
    user-select: none;
    /* no selection */
    -webkit-user-drag: none;
    /* prevent drag ghost */
    pointer-events: none;
    /* important: images never catch drag */
}

/* overlay is only a mask (width changes) */
.compare-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

/* top image pinned to BOX, not overlay */
.compare-overlay .compare-img.top {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* match base exactly */
}


.compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
    transform: translateX(-1px);
    z-index: 4;
}

/* knob button */
.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .18);
    background: rgba(255, 255, 255, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: grab;
    z-index: 5;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.compare-handle:active {
    cursor: grabbing;
}

.compare-handle .chev {
    font-weight: 900;
    color: rgba(0, 0, 0, .55);
    font-size: 18px;
    line-height: 1;
}

/* Right content */
.compare-copy h2 {
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, .85);
}

.compare-copy p {
    margin: 0 0 22px 0;
    color: rgba(0, 0, 0, .72);
    font-size: 14px;
    letter-spacing: .08em;
    line-height: 1.75;
    max-width: 520px;
}

.compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 0;
    background: #8a6a24;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 11px;
}

.compare-btn:hover {
    background: #75581e;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .compare-wrap {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .compare-box {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .compare-section {
        padding: 48px 0;
    }

    .compare-box {
        height: 340px;
    }
}


/* ================================
   SECTION: Exclusive Capsule
================================ */
.capsule{
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.12);
}

.capsule-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
}

.capsule-media{
  position: relative;
  overflow:hidden;
  background:#ddd;
}
.capsule-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.capsule-panel{
  background: #f6f2ea;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px;
}

.capsule-inner{
  text-align:center;
  max-width: 520px;
}

.capsule-icon{
  width: 68px;
  height: auto;
  margin: 0 auto 20px;
  display:block;
}

.capsule-kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.capsule-title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: rgba(0,0,0,.78);
}

.capsule-sub{
  margin: 0 0 22px;
  color: rgba(0,0,0,.65);
  letter-spacing: .08em;
  font-size: 14px;
}

.capsule-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 0;
  background: #8a6a24;
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}
.capsule-btn:hover{ background: #75581e; color:#fff; }

/* Responsive */
@media(max-width: 991px){
  .capsule-grid{ grid-template-columns: 1fr; min-height: unset; }
  .capsule-media{ height: 52vh; }
  .capsule-panel{ padding: 34px 16px; }
}


/* ================================
   Gold Marquee Strip
================================ */
.gold-strip{
  background: #a98c45; /* gold bar */
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.gold-track{
  display:flex;
  align-items:center;
  gap: 26px;
  width: max-content;
  padding: 14px 0;
  animation: goldMove 16s linear infinite;
  white-space: nowrap;
}

.gold-strip:hover .gold-track{ animation-play-state: paused; }

@keyframes goldMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.gold-item{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .95;
}

.gold-dot{
  opacity: .9;
  font-size: 16px;
}


/* ================================
   SECTION: London Split
================================ */
.london-split{
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.london-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
}

.london-left{
  background: #f6f2ea;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 44px;
}

.london-inner{
  text-align:center;
  max-width: 640px;
}

.london-icon{
  width: 120px;
  height:auto;
  display:block;
  margin: 0 auto 18px;
}

.london-kicker{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.london-title{
  margin: 0 0 16px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  color: rgba(0,0,0,.78);
}

.london-text{
  margin: 0 auto 26px;
  max-width: 640px;
  color: rgba(0,0,0,.66);
  letter-spacing: .08em;
  font-size: 14px;
  line-height: 1.8;
}

.london-actions{
  display:flex;
  gap: 16px;
  justify-content:center;
  flex-wrap: wrap;
}

.london-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 0;
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 11px;
}

.london-btn.primary{
  background:#8a6a24;
  color:#fff;
}
.london-btn.primary:hover{ background:#75581e; color:#fff; }

.london-btn.outline{
  border: 1px solid rgba(0,0,0,.35);
  color: rgba(0,0,0,.78);
  background: transparent;
}
.london-btn.outline:hover{ background: rgba(0,0,0,.04); }

.london-right{
  background:#ddd;
  overflow:hidden;
}
.london-right img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Responsive */
@media(max-width: 991px){
  .london-grid{ grid-template-columns: 1fr; min-height: unset; }
  .london-right{ height: 52vh; }
  .london-left{ padding: 34px 16px; }
}

/* ================================
   SECTION: Brand Note (disclaimer)
================================ */
.brand-note{
  padding: 58px 0 30px;
  background:#fff;
  text-align:center;
}
.note-inner{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px;
}
.note-icon{
  width: 60px;
  height:auto;
  display:block;
  margin: 0 auto 10px;
}
.note-mini{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.60);
  margin-bottom: 20px;
}
.note-text{
  margin:0;
  color: rgba(0,0,0,.72);
  letter-spacing: .08em;
  font-size: 14px;
  line-height: 1.9;
}
.note-link{
  color:#8a6a24;
  text-decoration: underline;
  font-weight: 800;
}
.note-rule{
  margin: 42px auto 0;
  width: min(1200px, 95vw);
  height: 1px;
  background: rgba(0,0,0,.18);
}


/* ================================
   SECTION: Shop The Look
================================ */
.shop-look{
  background:#fff;
  padding: 52px 0 28px;
}
.shop-look-wrap{
  width: min(1200px, 92vw);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items:center;
}

/* Left image */
.look-media{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 720px;
  overflow: hidden;
  background:#eee;
}
.look-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
}

/* Hotspots */
.hotspot{
  position:absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(0,0,0,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
  transform: translate(-50%, -50%);
  cursor:pointer;
}
.hotspot::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
  opacity:.9;
}
.hotspot.is-active{
  background:#fff;
  border-color:#000;
}
.hotspot.is-active::after{
  border-color: rgba(0,0,0,.25);
}

/* Right panel */
.look-side{
  text-align:center;
}
.look-head h3{
  margin:0;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 22px;
  color: rgba(0,0,0,.82);
}
.look-more{
  display:inline-block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(0,0,0,.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding-bottom: 2px;
}

/* Card + arrows */
.look-card-wrap{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 40px 1fr 40px;
  align-items:center;
  gap: 18px;
}

.nav-arrow{
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 30px;
  color: rgba(0,0,0,.55);
  cursor:pointer;
}
.nav-arrow:hover{ color: rgba(0,0,0,.85); }

.look-card{
  border: 1px solid rgba(0,0,0,.30);
  padding: 18px;
  background:#fff;
}
.look-card-frame{
  width: 100%;
  aspect-ratio: 1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.look-card-frame img{
  width: 86%;
  height: 86%;
  object-fit: contain;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
}
.look-prod-meta{
  padding-top: 10px;
}
.look-prod-name{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.75);
}
.look-prod-price{
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(0,0,0,.70);
}
.look-quick{
  margin-top: 12px;
  display:inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,.35);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.8);
  text-decoration:none;
}
.look-quick:hover{ background: rgba(0,0,0,.04); }

.look-count{
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(0,0,0,.55);
}

/* .shop-look-rule{
  margin: 52px auto 0;
  width: min(1100px, 92vw);
  height: 1px;
  background: rgba(0,0,0,.18);
} */

/* Responsive */
@media(max-width: 991px){
  .shop-look-wrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .look-card-wrap{
    grid-template-columns: 40px 1fr 40px;
    max-width: 420px;
    margin-left:auto;
    margin-right:auto;
  }
  .look-media{
    aspect-ratio: 4/5;
  }
}

/* ================================
   THE JOURNAL
================================ */
.journal{
  background:#fff;
  padding: 40px 0 18px;
}
.journal-wrap{
  width: min(1200px, 92vw);
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,.18);
  padding-top: 30px;
}
.journal-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.journal-title{
  margin:0;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(0,0,0,.85);
}
.journal-viewall{
  display:inline-block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .10em;
  color: rgba(0,0,0,.65);
  text-decoration:none;
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding-bottom: 3px;
}

.journal-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:start;
}

/* card */
.journal-card{
  position: relative;
  min-height: 420px;
}
.journal-img{
  width: 62%;
  aspect-ratio: 4/3;
  overflow:hidden;
  background:#eee;
}
.journal-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* floating white text box */
.journal-float{
  position:absolute;
  top: 56px;
  right: 0;
  width: 66%;
  background:#fff;
  padding: 26px 26px 22px;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}
.journal-float h3{
  margin:0 0 8px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(0,0,0,.85);
}
.journal-date{
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(0,0,0,.55);
  margin-bottom: 14px;
}
.journal-float p{
  margin:0 0 18px;
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: .06em;
  color: rgba(0,0,0,.70);
}
.journal-read{
  display:inline-block;
  font-size: 13px;
  letter-spacing: .10em;
  color: rgba(0,0,0,.70);
  text-decoration:none;
  border-bottom: 1px solid rgba(0,0,0,.35);
  padding-bottom: 3px;
}

/* responsive journal */
@media(max-width: 991px){
  .journal-grid{ grid-template-columns: 1fr; gap: 42px; }
  .journal-img{ width: 70%; }
  .journal-float{
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: -36px;
  }
}
@media(max-width: 520px){
  .journal-img{ width: 100%; }
  .journal-float{ margin-top: 12px; box-shadow:none; border:1px solid rgba(0,0,0,.12); }
}


/* ================================
   OUR STORY
================================ */
.our-story{
  background:#fff;
}

.story-hero{
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 72px 16px;
}
.story-overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.22);
}
.story-content{
  position: relative;
  z-index: 2;
  text-align:center;
  max-width: 820px;
  color:#fff;
}
.story-content h2{
  margin:0 0 18px;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.story-content p{
  margin:0 auto 24px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .10em;
  color: rgba(255,255,255,.92);
}
.story-btn{
  display:inline-flex;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color:#fff;
  text-decoration:none;
}
.story-btn:hover{ background: rgba(255,255,255,.10); }

/* bottom features */
.story-features{
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 42px 0 64px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align:center;
}
.story-feat img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 14px;
  opacity: .85;
}
.story-feat h4{
  margin:0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0,0,0,.65);
}
.story-feat p{
  margin:0;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: .08em;
  color: rgba(0,0,0,.60);
}

/* responsive story */
@media(max-width: 991px){
  .story-content h2{ font-size: 40px; }
  .story-features{ grid-template-columns: 1fr; gap: 26px; padding: 34px 0 54px; }
}
@media(max-width: 520px){
  .story-hero{ min-height: 440px; }
  .story-content h2{ font-size: 32px; }
}


/* =========================
   HERO cinematic zoom + staged content (UPDATED)
========================= */

/* Start a bit bigger, then zoom-out */
.hero-bg{
  transform: scale(1.24);
  will-change: transform;
}

/* zoom-out on load */
.hero.hero-loaded .hero-bg{
  animation: heroKenBurns 1.35s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes heroKenBurns{
  0%   { transform: scale(1.24); }
  100% { transform: scale(1.03); }
}

/* staged reveal: kicker -> title -> buttons (bottom up) */
.hero-kicker,
.hero-title,
.hero-actions{
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
}

.hero.hero-loaded .hero-kicker,
.hero.hero-loaded .hero-title,
.hero.hero-loaded .hero-actions{
  animation: fadeUpHero 760ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes fadeUpHero{
  from{ opacity:0; transform: translateY(18px); }
  to  { opacity:1; transform: translateY(0); }
}


/* =========================
   REVEAL SYSTEM (UPDATED)
   - Text/buttons bottom->up
   - Cards bottom->up (stagger)
   - Images zoom-out on reveal
========================= */

.reveal .reveal-item{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1),
              transform 920ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible .reveal-item{
  opacity: 1;
  transform: translateY(0);
}

/* Cards feel heavier */
.reveal .reveal-card{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(.2,.8,.2,1),
              transform 980ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible .reveal-card{
  opacity: 1;
  transform: translateY(0);
}

/* Keep hover lift working after reveal */
.reveal.is-visible .reveal-card:hover{
  transform: translateY(-2px);
}

/* =========================
   IMAGE ZOOM-OUT REVEAL
   - for all images (img-reveal)
   - and for card media (zoom-media)
========================= */

/* generic images */
.reveal img.img-reveal{
  opacity: 0;
  transform: scale(1.14);
  transition: opacity 800ms cubic-bezier(.2,.8,.2,1),
              transform 1200ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible img.img-reveal{
  opacity: 1;
  transform: scale(1);
}

/* card media: apply to product-media div OR images/videos */
.reveal .zoom-media{
  transform: scale(1.10);
  transition: transform 1200ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.reveal.is-visible .zoom-media{
  transform: scale(1);
}

/* Optional: little depth when section is visible */
.reveal.reveal-zoom.is-visible{
  /* keep it subtle (no layout shift) */
}

/* =========================
   Reduced motion support
========================= */
@media (prefers-reduced-motion: reduce) {
  .hero.hero-loaded .hero-bg{
    animation: none !important;
    transform: none !important;
  }
  .hero-kicker, .hero-title, .hero-actions{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal .reveal-item,
  .reveal .reveal-card{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal img.img-reveal,
  .reveal .zoom-media{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   FIX PACK (paste at END of index.css)
   Goal: match reference screenshots + responsive all devices
========================================================= */

/* ---------- Common container feel (like screenshots) ---------- */
.editorial-2 .container,
.compare-section .container,
.feature-tiles .container {
  max-width: 1220px;
}

/* =========================================================
   SECTION: Editorial 2-image grid (Sculpted / From Dawn...)
   Match: big clean cream area, strong headings, nice spacing
========================================================= */
.editorial-2{
  background: #f6f2ea;
  padding: 70px 0 40px;
}

.editorial-grid{
  gap: 44px;
  align-items: start;
}

.editorial-card{
  gap: 18px;
}

.editorial-img-one{
  height: clamp(520px, 68vh, 820px);
  object-fit: cover;
}

.editorial-img{
  height: clamp(360px, 46vh, 520px);
  object-fit: cover;
}

.editorial-title{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.08;
  color: rgba(0,0,0,.82);
  margin-top: 6px;
}

.editorial-btn{
  margin-top: 6px;
  border: 1px solid rgba(0,0,0,.35);
  padding: 10px 16px;
  font-size: 10px;
  letter-spacing: .16em;
}

/* Editorial responsive */
@media (max-width: 991px){
  .editorial-2{ padding: 52px 0 26px; }
  .editorial-img-one{ height: 520px; }
  .editorial-img{ height: 420px; }
}
@media (max-width: 575px){
  .editorial-img-one{ height: 460px; }
  .editorial-img{ height: 340px; }
}


/* =========================================================
   SECTION: Feature tiles (3 tiles Flora/Einai/Entelechy)
   Match: clean grid, same heights, overlay bottom-left
========================================================= */
.feature-tiles{
  padding: 64px 0 46px;
}

.tiles-grid{
  gap: 28px;
}

.tile{
  height: clamp(420px, 58vh, 560px);
  border: 1px solid rgba(0,0,0,.10);
}

.tile-content{
  left: 9%;
  right: 9%;
  bottom: 10%;
}

.tile-kicker{
  font-size: 11px;
  letter-spacing: .20em;
}

.tile-title{
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.02;
}

.tile-btn{
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: .16em;
}

/* tiles responsive */
@media (max-width: 991px){
  .tile{ height: 520px; }
}
@media (max-width: 575px){
  .tile{ height: 420px; }
}


/* =========================================================
   SECTION: Compare (Two finishes) - before/after slider
   Match: big left image compare + right text centered feel
========================================================= */
.compare-section{
  background: #fff;
  padding: 64px 0;
}

.compare-wrap{
  max-width: 1220px;
  margin: 0 auto;
  gap: clamp(28px, 4vw, 70px);
}

.compare-box{
  height: clamp(340px, 64vh, 620px);
  border: 1px solid rgba(0,0,0,.10);
}

.compare-copy{
  text-align: left;
}

.compare-copy h2{
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.02;
  letter-spacing: .04em;
  color: rgba(0,0,0,.86);
}

.compare-copy p{
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.85;
  color: rgba(0,0,0,.68);
}

.compare-btn{
  padding: 12px 20px;
  letter-spacing: .16em;
}

/* compare responsive */
@media (max-width: 991px){
  .compare-section{ padding: 52px 0; }
  .compare-copy{ text-align: left; }
}
@media (max-width: 575px){
  .compare-section{ padding: 44px 0; }
  .compare-box{ height: 340px; }
}


/* =========================================================
   SECTION: Exclusive Capsule (image left, cream panel right)
========================================================= */
.capsule{
  border-top: 1px solid rgba(0,0,0,.12);
}

.capsule-grid{
  min-height: 78vh;
}

.capsule-panel{
  background: #f6f2ea;
}

.capsule-title{
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: .04em;
}

.capsule-sub{
  line-height: 1.9;
}

/* capsule responsive */
@media (max-width: 991px){
  .capsule-media{ height: 52vh; }
  .capsule-title{ font-size: clamp(30px, 8vw, 46px); }
}


/* =========================================================
   SECTION: Gold Strip (marquee bar)
========================================================= */
.gold-strip{
  background: #a98c45;
  border-top: 0;
  border-bottom: 0;
}

.gold-track{
  padding: 12px 0;
}

.gold-item{
  font-size: 13px;
  letter-spacing: .18em;
}


/* =========================================================
   SECTION: London Split (clean center text + right image)
========================================================= */
.london-grid{
  min-height: 78vh;
}

.london-left{
  background: #f6f2ea;
  padding: clamp(22px, 4vw, 54px);
}

.london-title{
  font-size: clamp(44px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: .04em;
}

.london-text{
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.9;
}

.london-actions{
  margin-top: 10px;
}

/* london responsive */
@media (max-width: 991px){
  .london-right{ height: 50vh; }
  .london-title{ font-size: clamp(36px, 9vw, 56px); }
}


/* =========================================================
   SECTION: Brand Note (disclaimer) - spacing polish
========================================================= */
.brand-note{
  padding: 60px 0 34px;
}

.note-rule{
  width: min(1200px, 92vw);
}


/* =========================================================
   SECTION: Journal (floating white box on image)
========================================================= */
.journal-wrap{
  width: min(1220px, 92vw);
}

.journal-grid{
  gap: clamp(34px, 6vw, 80px);
}

.journal-card{
  min-height: 440px;
}

.journal-img{
  width: 60%;
  border: 1px solid rgba(0,0,0,.10);
}

.journal-float{
  border: 1px solid rgba(0,0,0,.10);
}

.journal-float p{
  line-height: 1.9;
}

/* journal responsive */
@media (max-width: 991px){
  .journal-card{ min-height: unset; }
  .journal-img{ width: 70%; }
  .journal-float{
    border: 1px solid rgba(0,0,0,.12);
  }
}
@media (max-width: 520px){
  .journal-img{ width: 100%; }
  .journal-float{ box-shadow: none; }
}


/* =========================================================
   SECTION: Our Story (hero + 3 features)
========================================================= */
.story-hero{
  min-height: clamp(420px, 72vh, 640px);
}

.story-content h2{
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: .06em;
}

.story-content p{
  font-size: 13px;
  letter-spacing: .10em;
  line-height: 1.9;
}

.story-features{
  width: min(1220px, 92vw);
  gap: 44px;
  padding: 46px 0 70px;
}

.story-feat h4{
  letter-spacing: .18em;
}

/* story responsive */
@media (max-width: 991px){
  .story-features{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 56px;
  }
}

/* =========================
   ANIMATION UPGRADE OVERRIDES
   - smooth scroll reveal
   - text bottom to top
   - cards one by one
   - images zoom in
========================= */

/* Hero background zoom IN (ken burns in) */
.hero-bg{
  transform: scale(1.03);
  will-change: transform;
}

.hero.hero-loaded .hero-bg{
  animation: heroKenBurnsIn 2200ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes heroKenBurnsIn{
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.14); }
}

/* Hero text reveal smoother */
.hero-kicker,
.hero-title,
.hero-actions{
  opacity: 0;
  transform: translateY(22px);
  will-change: transform, opacity;
}

.hero.hero-loaded .hero-kicker,
.hero.hero-loaded .hero-title,
.hero.hero-loaded .hero-actions{
  animation: fadeUpHero 900ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes fadeUpHero{
  from{ opacity:0; transform: translateY(22px); }
  to  { opacity:1; transform: translateY(0); }
}

/* Text reveal (scroll) */
.reveal .reveal-item{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 820ms cubic-bezier(.16,1,.3,1),
    transform 980ms cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible .reveal-item{
  opacity: 1;
  transform: translateY(0);
}

/* Card reveal (one by one) */
.reveal .reveal-card{
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 1100ms cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible .reveal-card{
  opacity: 1;
  transform: translateY(0);
}

/* Keep hover lift after reveal */
.reveal.is-visible .reveal-card:hover{
  transform: translateY(-2px);
}

/* IMAGE zoom IN on reveal */
.reveal img.img-reveal{
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 1400ms cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}

.reveal.is-visible img.img-reveal{
  opacity: 1;
  transform: scale(1.06);
}

/* Card media zoom IN (product-media div, img, video) */
.reveal .zoom-media{
  transform: scale(0.96);
  transition: transform 1500ms cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

.reveal.is-visible .zoom-media{
  transform: scale(1.06);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero.hero-loaded .hero-bg{ animation: none !important; transform: none !important; }
  .hero-kicker, .hero-title, .hero-actions{
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .reveal .reveal-item,
  .reveal .reveal-card,
  .reveal img.img-reveal,
  .reveal .zoom-media{
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================
   HERO: Smooth zoom-in + text one-by-one (FINAL OVERRIDE)
   Paste at END of index.css
========================= */

/* smooth zoom-in on background */
.hero { overflow: hidden; }

.hero-bg{
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
}

/* when page loads */
.hero.hero-loaded .hero-bg{
  animation: heroZoomIn 3200ms cubic-bezier(.16,1,.3,1) both;
}

@keyframes heroZoomIn{
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.16); }
}

/* text one-by-one (opacity 0 -> 1) */
.hero-reveal{
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.hero.hero-loaded .hero-reveal{
  animation: heroFadeUp 900ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes heroFadeUp{
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .hero-bg{ transform: none !important; animation: none !important; }
  .hero-reveal{ opacity: 1 !important; transform: none !important; animation: none !important; }
}



