/* ============================================================
   BOMBAY BAG HOUSE — Light Luxury Edition  (v4.0)
   Direction : Warm ivory & aubergine. Editorial. Antique gold.
   Signature : The luggage tag — used as a recurring card/badge
               silhouette throughout (literal to the subject).
   Fonts     : Fraunces (display serif) + Inter (UI/body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* ---- Core palette (sampled from the BBH logo + product photography) ---- */
  --ivory:        #FBF6EC;   /* page background — warm bone        */
  --ivory-deep:    #F4EBDB;   /* secondary section background       */
  --blush:         #F1E3D6;   /* tertiary / card-alt background     */
  --paper:         #FFFFFF;   /* card surface                       */
  --aubergine:     #631A4F;   /* primary brand dark (logo purple)   */
  --aubergine-600:#551443;
  --aubergine-700: #4A1339;   /* deep accents, CTA band             */
  --aubergine-900: #2B0E22;   /* darkest — footer                   */
  --gold:          #AD8328;   /* antique gold — text/lines on ivory */
  --gold-deep:     #8C6A1F;
  --gold-bright:   #E7B73B;   /* richer gold — small fills on dark  */
  --mocha:         #8B6F5C;   /* secondary neutral from leather     */
  --ink:           #2A2018;   /* body text — warm near-black        */
  --ink-soft:      #6E5F52;   /* secondary text                     */
  --line:          #E3D3C0;   /* hairline borders on ivory          */
  --line-deep:     #D6C1A8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-ui:      'Inter', 'Helvetica Neue', sans-serif;

  --max: 1360px;
  --nav: 92px;

  --ease: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body{
  font-family:var(--font-ui);
  background:var(--ivory);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
button{ cursor:pointer; border:none; background:none; font-family:inherit; }
* { max-width:100%; }


/* ---- Typography ---- */
h1,h2,h3{ font-family:var(--font-display); line-height:1.05; font-weight:500; color:var(--aubergine); }
h1{ font-size:clamp(2.6rem,5.6vw,5rem); font-weight:400; }
h2{ font-size:clamp(1.9rem,3.6vw,3.1rem); }
h3{ font-size:clamp(1.25rem,2.2vw,1.7rem); }
h4{ font-family:var(--font-ui); font-size:.74rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--aubergine); }
p{ font-size:.97rem; line-height:1.75; color:var(--ink-soft); }
em{ font-style:italic; color:var(--gold-deep); }

/* ---- Label — the luggage-tag eyebrow (signature motif #1) ---- */
.label{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.7rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-deep);
}
.label::before{
  content:''; display:inline-block; width:15px; height:10px; flex-shrink:0;
  background:var(--gold);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Cpath d='M0 6 L7 0 H18 a2 2 0 0 1 2 2 v8 a2 2 0 0 1 -2 2 H7 Z'/%3E%3Ccircle cx='14' cy='7' r='1.6' fill='%23000'/%3E%3C/svg%3E");
  mask-repeat:no-repeat; mask-size:contain; mask-position:center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Cpath d='M0 6 L7 0 H18 a2 2 0 0 1 2 2 v8 a2 2 0 0 1 -2 2 H7 Z'/%3E%3Ccircle cx='14' cy='7' r='1.6' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat:no-repeat; -webkit-mask-size:contain; -webkit-mask-position:center;
}
.label.on-dark{ color:var(--gold-bright); }

/* ---- Layout ---- */
.wrap{ max-width:var(--max); margin:0 auto; padding:0 32px; }
.section{ padding:108px 0; }
.section-sm{ padding:64px 0; }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-ui); font-size:.74rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:15px 30px;
  position:relative; overflow:hidden;
  transition:color .35s var(--ease), border-color .35s var(--ease);
  z-index:0; white-space:nowrap;
}
.btn::after{ content:''; position:absolute; inset:0; transform:scaleX(0); transform-origin:right; transition:transform .42s var(--ease); z-index:-1; }
.btn:hover::after{ transform:scaleX(1); transform-origin:left; }
.btn-dark{ background:var(--aubergine); color:var(--ivory); }
.btn-dark::after{ background:var(--aubergine-900); }
.btn-saffron{ background:var(--aubergine); color:var(--ivory); } /* legacy alias kept gold-trimmed */
.btn-saffron::after{ background:var(--gold-deep); }
.btn-outline{ border:1.4px solid var(--aubergine); color:var(--aubergine); background:transparent; }
.btn-outline::after{ background:var(--aubergine); }
.btn-outline:hover{ color:var(--ivory); }
.btn-outline-white{ border:1.4px solid rgba(251,246,236,.55); color:var(--ivory); background:transparent; }
.btn-outline-white::after{ background:var(--ivory); }
.btn-outline-white:hover{ color:var(--aubergine-900); }
.btn-arrow::after{ display:none; }
.btn-arrow{ background:none; color:var(--gold-deep); padding:0; gap:6px; border-bottom:1.4px solid var(--gold); padding-bottom:3px; font-weight:700; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; }
.btn-arrow span{ transition:transform .25s; }
.btn-arrow:hover span{ transform:translateX(4px); }

/* ---- Announcement bar ---- */
.ann-bar{
  background:var(--aubergine-900); color:var(--ivory);
  padding:9px 0; text-align:center;
  font-size:.7rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  position:relative; z-index:1010;
  white-space:nowrap; overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none;
}
.ann-bar::-webkit-scrollbar{ display:none; }
.ann-bar a{ color:var(--gold-bright); border-bottom:1px solid var(--gold-bright); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav{
  position:sticky; top:0; z-index:1000;
  background:rgba(251,246,236,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  height:var(--nav);
  transition:box-shadow .3s, height .3s;
}
.nav.shadow{ box-shadow:0 10px 32px rgba(43,14,34,.08); }
.nav-inner{
  max-width:var(--max); margin:0 auto; padding:0 32px;
  height:100%; display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center; gap:32px;
}
.nav-logo{ display:flex; align-items:center; height:var(--nav); text-decoration:none; flex-shrink:0; }
.nav-logo img{ height:76px; width:auto; display:block; object-fit:contain; }
.nav-logo .l1{ font-family:var(--font-display); font-size:1.4rem; font-weight:500; color:var(--aubergine); line-height:1; }
.nav-logo .l2{ font-size:.58rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep); }

.nav-center{ display:flex; justify-content:center; }
.nav-links{ display:flex; align-items:center; gap:0; }
.nav-item{ position:relative; }
.nav-item > a{
  display:block; padding:0 17px;
  font-size:.74rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink); line-height:var(--nav); white-space:nowrap;
  transition:color .2s;
}
.nav-item > a:hover, .nav-item.active > a{ color:var(--aubergine); }
.nav-item.active > a{ position:relative; }
.nav-item.active > a::after{ content:''; position:absolute; left:17px; right:17px; bottom:30px; height:2px; background:var(--gold); }

.mega-drop{
  position:absolute; top:calc(var(--nav) + 1px); left:50%; transform:translateX(-50%);
  background:var(--paper);
  border:1px solid var(--line); border-top:3px solid var(--gold);
  box-shadow:0 28px 64px rgba(43,14,34,.14);
  min-width:540px; padding:30px;
  display:none; grid-template-columns:1fr 1fr; gap:22px 36px; z-index:200;
}
.nav-item:hover .mega-drop{ display:grid; animation:dropIn .25s var(--ease); }
@keyframes dropIn{ from{opacity:0; transform:translateX(-50%) translateY(-8px);} to{opacity:1; transform:translateX(-50%) translateY(0);} }
.mega-col h5{ font-size:.66rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:11px; padding-bottom:8px; border-bottom:1px solid var(--line); }
.mega-col a{ display:block; padding:5px 0; font-size:.85rem; font-weight:500; color:var(--ink); transition:color .2s, padding-left .2s; }
.mega-col a:hover{ color:var(--aubergine); padding-left:5px; }

.nav-right{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; align-items:center; gap:7px; font-size:.78rem; font-weight:700; color:var(--ink); transition:color .2s; white-space:nowrap; }
.nav-phone svg{ color:var(--gold-deep); }
.nav-phone:hover{ color:var(--aubergine); }
.nav-cta-btn{ background:var(--aubergine); color:var(--ivory); font-size:.7rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:11px 22px; white-space:nowrap; transition:background .2s; }
.nav-cta-btn:hover{ background:var(--aubergine-700); }

.hamburger{ display:none; flex-direction:column; gap:5px; padding:6px; }
.hamburger span{ display:block; width:21px; height:1.5px; background:var(--aubergine); transition:all .3s; }

.mobile-drawer{
  position:fixed; top:0; right:0; bottom:0; width:min(85vw,340px);
  background:var(--ivory); z-index:2000;
  transform:translateX(110%); transition:transform .45s var(--ease);
  display:flex; flex-direction:column; padding:76px 30px 36px;
  border-left:1px solid var(--line);
}
.mobile-drawer.open{ transform:translateX(0); }
.drawer-close{ position:absolute; top:18px; right:22px; font-size:1.4rem; font-weight:300; color:var(--ink-soft); cursor:pointer; padding:8px; }
.mobile-drawer nav{ display:flex; flex-direction:column; gap:0; flex:1; }
.mobile-drawer nav a{ display:block; padding:15px 0; font-size:1.3rem; font-family:var(--font-display); font-weight:500; border-bottom:1px solid var(--line); color:var(--aubergine); transition:color .2s, padding-left .2s; }
.mobile-drawer nav a:hover{ color:var(--gold-deep); padding-left:7px; }
.drawer-footer{ padding-top:28px; display:flex; flex-direction:column; gap:11px; }
.drawer-overlay{ position:fixed; inset:0; background:rgba(43,14,34,.45); z-index:1999; opacity:0; pointer-events:none; transition:opacity .3s; }
.drawer-overlay.open{ opacity:1; pointer-events:all; }

/* ============================================================
   HERO SLIDER  — full-bleed, light-luxury (no dark wash)
   ============================================================ */
.hero{ position:relative; height:92vh; min-height:600px; max-height:980px; overflow:hidden; }
.hero-slider{ position:absolute; inset:0; }
.slider-track{ position:relative; width:100%; height:100%; }
.slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease; }
.slide.active{ opacity:1; }
.slide img{
  width:100%; height:100%; object-fit:cover; object-position:center 38%;
  transform:scale(1.04);
  animation:slowZoom 11s ease-in-out infinite alternate;
}
@keyframes slowZoom{ from{transform:scale(1.04);} to{transform:scale(1.11);} }

/* soft warm gradient — only the bottom third, never a full dark wash */
.hero-gradient{
  position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(to top, rgba(43,14,34,.78) 0%, rgba(43,14,34,.38) 30%, rgba(43,14,34,0) 58%);
}
.hero-vignette-top{
  position:absolute; top:0; left:0; right:0; height:160px; pointer-events:none;
  background:linear-gradient(to bottom, rgba(43,14,34,.22) 0%, transparent 100%);
}

.hero-content{
  position:absolute; left:0; right:0; bottom:0; z-index:3;
  padding:0 32px 56px;
}
.hero-content-inner{ max-width:640px; }
.hero-content .label{ color:var(--gold-bright); margin-bottom:18px; }
.hero-content .label::before{ background:var(--gold-bright); }
.hero-heading{ font-family:var(--font-display); font-weight:400; font-size:clamp(2.4rem,5.4vw,4.6rem); line-height:1.04; color:#fff; margin-bottom:18px; }
.hero-heading em{ color:var(--gold-bright); }
.hero-sub{ font-size:1rem; line-height:1.7; color:rgba(255,255,255,.82); max-width:430px; margin-bottom:30px; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Floating tag badge — signature element, literal luggage tag */
.hero-tag-badge{
  position:absolute; top:40px; right:48px; z-index:3;
  background:var(--ivory); color:var(--aubergine);
  padding:14px 22px 14px 18px;
  font-family:var(--font-ui); font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  box-shadow:0 18px 40px rgba(43,14,34,.28);
  transform:rotate(4deg);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 14px 100%, 0 50%);
  display:flex; align-items:center; gap:8px;
}
.hero-tag-badge::before{ content:''; width:6px; height:6px; border-radius:50%; background:var(--gold-deep); flex-shrink:0; margin-left:4px; }
.hero-tag-badge .num{ font-family:var(--font-display); font-size:1.3rem; color:var(--gold-deep); font-weight:500; margin-right:2px; }

/* dots + arrows */
.slider-dots{ position:absolute; right:32px; bottom:148px; z-index:4; display:flex; gap:9px; }
.sdot{ width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.4); border:none; cursor:pointer; padding:0; transition:all .3s; }
.sdot.active{ background:var(--gold-bright); width:22px; border-radius:4px; }
.sdot:hover{ background:rgba(255,255,255,.75); }
.slider-arrow{
  position:absolute; bottom:80px; z-index:4;
  width:42px; height:42px; border-radius:50%;
  background:rgba(251,246,236,.14); border:1px solid rgba(251,246,236,.4);
  color:#fff; font-size:1rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:all .25s; backdrop-filter:blur(6px);
}
.slider-arrow:hover{ background:var(--gold-bright); border-color:var(--gold-bright); color:var(--aubergine-900); }
.slider-arrow.prev{ right:90px; }
.slider-arrow.next{ right:32px; }
.slider-progress{ position:absolute; bottom:0; left:0; height:2px; background:var(--gold-bright); width:0%; z-index:5; transition:width linear; }

/* Hero stat strip — sits just under hero, on its own band */
.hero-stats{ background:var(--aubergine-900); display:grid; grid-template-columns:repeat(4,1fr); }
.h-stat{ padding:22px 30px; border-right:1px solid rgba(251,246,236,.1); display:flex; align-items:center; gap:14px; }
.h-stat:last-child{ border-right:none; }
.h-stat-num{ font-family:var(--font-display); font-size:2rem; font-weight:500; color:var(--gold-bright); line-height:1; }
.h-stat-label{ font-size:.68rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; color:rgba(251,246,236,.6); }

/* ============================================================
   TICKER  — brand marquee strip (one of the few dark accents)
   ============================================================ */
.ticker{ background:var(--aubergine); overflow:hidden; padding:13px 0; }
.ticker-track{ display:flex; width:max-content; animation:tick 26s linear infinite; }
.ticker-track:hover{ animation-play-state:paused; }
@keyframes tick{ to{ transform:translateX(-50%); } }
.tick-item{ font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(251,246,236,.92); white-space:nowrap; padding:0 30px; display:flex; align-items:center; gap:30px; }
.tick-item::after{ content:'◆'; color:var(--gold-bright); font-size:.5rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sh{ margin-bottom:56px; }
.sh.center{ text-align:center; }
.sh.center .divider-line{ margin:14px auto; }
.sh h2{ margin:10px 0 14px; }
.sh p{ max-width:520px; }
.sh.center p{ margin:0 auto; }
.divider-line{ width:36px; height:2px; background:var(--gold); }

/* ============================================================
   CATEGORY GRID — luggage-tag cards (signature motif #2)
   ============================================================ */
.cat-scroll-wrap{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.cat-card{
  position:relative; overflow:hidden; aspect-ratio:3/3.85;
  background:var(--paper);
  box-shadow:0 2px 18px rgba(43,14,34,.05);
  transition:box-shadow .3s;
}
.cat-card:hover{ box-shadow:0 22px 48px rgba(43,14,34,.16); }
.cat-card img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card-overlay{ position:absolute; inset:0; background:linear-gradient(to top, rgba(43,14,34,.88) 0%, rgba(43,14,34,.05) 48%, transparent 70%); }
.cat-card-tag{
  position:absolute; top:18px; left:18px; z-index:2;
  background:var(--ivory); color:var(--aubergine);
  font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:7px 14px 7px 10px;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
  box-shadow:0 8px 18px rgba(43,14,34,.18);
  display:flex; align-items:center; gap:6px;
}
.cat-card-tag::before{ content:''; width:4px; height:4px; border-radius:50%; background:var(--gold-deep); }
.cat-card-body{ position:absolute; bottom:0; left:0; right:0; padding:24px 22px; color:#fff; }
.cat-card-body h3{ font-size:1.4rem; color:#fff; margin-bottom:5px; font-weight:500; }
.cat-card-body p{ font-size:.8rem; color:rgba(255,255,255,.7); margin-bottom:13px; }
.cat-card-body .btn-arrow{ color:var(--gold-bright); border-color:var(--gold-bright); }
.cat-scroll-hint{ display:none; }

/* ============================================================
   BRAND SHOWCASE — real photography grid
   ============================================================ */
.brand-shot-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.brand-shot{
  position:relative; background:var(--paper); overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:0 2px 14px rgba(43,14,34,.05);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.brand-shot:hover{ transform:translateY(-6px); box-shadow:0 24px 48px rgba(43,14,34,.14); }
.brand-shot img{ width:100%; height:100%; object-fit:cover; }
.brand-shot-label{
  position:absolute; bottom:0; left:0; right:0; padding:12px 14px;
  background:linear-gradient(to top, rgba(43,14,34,.92), transparent);
  color:#fff; font-size:.74rem; font-weight:700; letter-spacing:.04em;
}

/* ============================================================
   BRAND WALL — text pill marquee (kept, retthemed)
   ============================================================ */
.brand-wall{ overflow:hidden; }
.brand-row{ display:flex; width:max-content; border-top:1px solid var(--line); }
.brand-row:last-child{ border-bottom:1px solid var(--line); }
.brand-row-track{ display:flex; animation:brandScroll 22s linear infinite; }
.brand-row:nth-child(2) .brand-row-track{ animation-direction:reverse; animation-duration:27s; }
.brand-row-track:hover{ animation-play-state:paused; }
@keyframes brandScroll{ to{ transform:translateX(-50%); } }
.brand-pill{
  display:flex; align-items:center; justify-content:center;
  padding:18px 36px; border-right:1px solid var(--line); white-space:nowrap;
  font-family:var(--font-display); font-size:1.3rem; font-weight:500; font-style:italic;
  color:var(--aubergine); opacity:.42; transition:opacity .25s, color .25s;
}
.brand-pill:hover{ opacity:1; color:var(--gold-deep); }

/* ============================================================
   FEATURE SPLIT  — light by default, .dark variant for legacy
   ============================================================ */
.feature-split{ display:grid; grid-template-columns:1fr 1fr; min-height:560px; overflow:hidden; }
.feature-split.reverse{ direction:rtl; }
.feature-split.reverse > *{ direction:ltr; }
.feature-img{ position:relative; overflow:hidden; min-height:480px; }
.feature-img img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); }
.feature-split:hover .feature-img img{ transform:scale(1.04); }
.feature-content{ background:var(--blush); padding:72px 64px; display:flex; flex-direction:column; justify-content:center; }
.feature-content.dark{ background:var(--aubergine-900); color:var(--ivory); }
.feature-content.dark h2{ color:var(--ivory); }
.feature-content.dark p{ color:rgba(251,246,236,.62); }
.feature-content h2{ margin:10px 0 18px; }
.feature-content p{ margin-bottom:28px; max-width:420px; }
.feature-nums{ display:flex; gap:30px; margin-top:36px; padding-top:28px; border-top:1px solid var(--line-deep); }
.feature-content.dark .feature-nums{ border-top-color:rgba(251,246,236,.14); }
.f-num .n{ font-family:var(--font-display); font-size:2.2rem; font-weight:500; color:var(--gold-deep); line-height:1; }
.feature-content.dark .f-num .n{ color:var(--gold-bright); }
.f-num .l{ font-size:.68rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); margin-top:4px; }
.feature-content.dark .f-num .l{ color:rgba(251,246,236,.5); }

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar{ background:var(--ivory-deep); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.usp-inner{ display:grid; grid-template-columns:repeat(4,1fr); }
.usp-cell{ padding:34px 28px; border-right:1px solid var(--line); display:flex; align-items:flex-start; gap:16px; transition:background .25s; }
.usp-cell:last-child{ border-right:none; }
.usp-cell:hover{ background:rgba(173,131,40,.07); }
.usp-icon{ width:42px; height:42px; flex-shrink:0; border:1.4px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold-deep); }
.usp-text h4{ color:var(--aubergine); font-size:.78rem; margin-bottom:5px; }
.usp-text p{ font-size:.81rem; color:var(--ink-soft); }

/* ============================================================
   MOSAIC — "What We Carry"
   ============================================================ */
.mosaic{ display:grid; grid-template-columns:2fr 1fr 1fr; grid-template-rows:380px 380px; gap:14px; }
.mosaic-item{ position:relative; overflow:hidden; background:var(--paper); box-shadow:0 2px 14px rgba(43,14,34,.05); }
.mosaic-item.tall{ grid-row:1/3; }
.mosaic-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.mosaic-item:hover img{ transform:scale(1.06); }
.mosaic-item-body{ position:absolute; bottom:0; left:0; right:0; padding:22px; background:linear-gradient(to top, rgba(43,14,34,.88) 0%, transparent 100%); color:#fff; transform:translateY(6px); transition:transform .3s; }
.mosaic-item:hover .mosaic-item-body{ transform:translateY(0); }
.mosaic-item-body h3{ color:#fff; font-size:1.32rem; margin-bottom:4px; font-weight:500; }
.mosaic-item-body p{ font-size:.81rem; color:rgba(255,255,255,.68); }
.mosaic-item-body .chip{ display:inline-block; margin-bottom:8px; font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-bright); padding:3px 9px; border:1px solid rgba(231,183,59,.5); }

/* Filter tabs */
.filter-tabs{ display:flex; gap:0; border-bottom:2px solid var(--line); margin-bottom:44px; overflow-x:auto; scrollbar-width:none; }
.filter-tabs::-webkit-scrollbar{ display:none; }
.ftab{ padding:11px 22px; flex-shrink:0; font-size:.74rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); border-bottom:2px solid transparent; margin-bottom:-2px; transition:all .2s; cursor:pointer; }
.ftab.active, .ftab:hover{ color:var(--aubergine); border-bottom-color:var(--gold); }

.col-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.col-card{ cursor:default; }
.col-card-img{ aspect-ratio:3/4; overflow:hidden; position:relative; background:var(--ivory-deep); }
.col-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.col-card:hover .col-card-img img{ transform:scale(1.07); }
.col-card-badge{ position:absolute; top:12px; left:12px; background:var(--ivory); color:var(--aubergine); font-size:.6rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:5px 12px 5px 8px; clip-path:polygon(6px 0,100% 0,100% 100%,6px 100%,0 50%); box-shadow:0 6px 14px rgba(43,14,34,.16); }
.col-card-body{ padding:15px 0; }
.col-card-body .brand{ font-size:.66rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:5px; }
.col-card-body h3{ font-size:1.08rem; color:var(--aubergine); margin-bottom:5px; }
.col-card-body p{ font-size:.82rem; }

/* ============================================================
   BRANDS PAGE — text tiles
   ============================================================ */
.brand-index{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; margin:0 -32px; background:var(--line); }
.brand-tile{ background:var(--paper); padding:44px 38px; transition:background .3s; position:relative; overflow:hidden; }
.brand-tile::before{ content:''; position:absolute; top:0; left:0; width:3px; height:0; background:var(--gold); transition:height .3s var(--ease); }
.brand-tile:hover{ background:var(--ivory-deep); }
.brand-tile:hover::before{ height:100%; }
.brand-tile .bt-name{ font-family:var(--font-display); font-size:1.85rem; font-weight:500; color:var(--aubergine); margin-bottom:4px; line-height:1; }
.brand-tile .bt-origin{ font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); margin-bottom:13px; }
.brand-tile p{ font-size:.86rem; margin-bottom:15px; }
.brand-tile .bt-tags{ display:flex; flex-wrap:wrap; gap:6px; }
.brand-tile .bt-tag{ font-size:.66rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; padding:4px 10px; background:var(--ivory); color:var(--ink-soft); border:1px solid var(--line); }
.brand-tile:hover .bt-tag{ background:var(--paper); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:2px; background:var(--line); }
.t-card{ background:var(--paper); padding:44px 38px; position:relative; }
.t-card::before{ content:'"'; font-family:var(--font-display); font-size:5.4rem; line-height:1; color:var(--gold); opacity:.18; position:absolute; top:14px; left:26px; pointer-events:none; }
.t-stars{ color:var(--gold-deep); font-size:.85rem; letter-spacing:2px; margin-bottom:18px; }
.t-quote{ font-family:var(--font-display); font-style:italic; font-size:1.1rem; line-height:1.6; color:var(--aubergine); margin-bottom:22px; }
.t-author{ font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); }

/* ============================================================
   ABOUT — Timeline
   ============================================================ */
.tl-row{ display:grid; grid-template-columns:110px 1fr; gap:36px; padding:36px 0; border-top:1px solid var(--line); align-items:start; }
.tl-row:last-child{ border-bottom:1px solid var(--line); }
.tl-year{ font-family:var(--font-display); font-size:1.8rem; font-weight:500; color:var(--gold-deep); padding-top:3px; }
.tl-content h3{ font-size:1.1rem; margin-bottom:7px; color:var(--aubergine); }
.tl-content p{ font-size:.9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.cta-pill-stack{ display:flex; flex-direction:column; gap:2px; margin-bottom:44px; }
.cta-pill{ display:flex; align-items:center; gap:18px; padding:19px 22px; font-weight:700; font-size:.88rem; color:#fff; transition:padding-left .25s; }
.cta-pill.call{ background:var(--aubergine); }
.cta-pill.wa{ background:#128C7E; }
.cta-pill.dir{ background:var(--gold-deep); }
.cta-pill:hover{ padding-left:30px; }
.cta-pill-icon{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-block{ margin-bottom:26px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.info-block h4{ color:var(--aubergine); margin-bottom:6px; }
.info-block p, .info-block a{ font-size:.93rem; color:var(--ink-soft); }
.info-block a:hover{ color:var(--gold-deep); }

.form-stack{ display:flex; flex-direction:column; gap:15px; }
.fg{ display:flex; flex-direction:column; gap:6px; }
.fg-row{ display:grid; grid-template-columns:1fr 1fr; gap:15px; }
.fg label{ font-size:.68rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); }
.fg input, .fg select, .fg textarea{
  padding:13px 15px; border:1.4px solid var(--line-deep); background:var(--paper);
  font-family:var(--font-ui); font-size:.88rem; color:var(--ink);
  outline:none; transition:border-color .2s; appearance:none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus{ border-color:var(--gold-deep); }
.fg textarea{ min-height:115px; resize:vertical; }

.faq-item{ border-top:1px solid var(--line); }
.faq-item:last-child{ border-bottom:1px solid var(--line); }
.faq-q{ display:flex; align-items:center; justify-content:space-between; padding:19px 0; cursor:pointer; font-weight:600; font-size:.93rem; color:var(--aubergine); transition:color .2s; gap:16px; text-align:left; }
.faq-q:hover{ color:var(--gold-deep); }
.faq-icon{ font-size:1.15rem; color:var(--gold-deep); transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-icon{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .4s var(--ease); }
.faq-a p{ padding:0 0 19px; font-size:.88rem; }
.faq-item.open .faq-a{ max-height:220px; }

/* ============================================================
   PAGE HERO (inner pages) — light-friendly gradient
   ============================================================ */
.page-hero{ position:relative; height:62vh; min-height:420px; overflow:hidden; display:flex; align-items:flex-end; }
.page-hero-bg{ position:absolute; inset:0; }
.page-hero-bg img{ width:100%; height:100%; object-fit:cover; }
.page-hero-overlay{ position:absolute; inset:0; background:linear-gradient(to top, rgba(43,14,34,.82) 0%, rgba(43,14,34,.32) 48%, rgba(43,14,34,.08) 100%); }
.page-hero-content{ position:relative; z-index:2; padding-bottom:52px; }
.breadcrumb{ display:flex; gap:9px; align-items:center; margin-bottom:24px; font-size:.7rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:rgba(251,246,236,.55); }
.breadcrumb a{ color:rgba(251,246,236,.55); transition:color .2s; }
.breadcrumb a:hover{ color:var(--gold-bright); }
.breadcrumb span.sep{ color:rgba(251,246,236,.3); }
.page-hero-content h1{ color:#fff; margin:8px 0 18px; font-size:clamp(2.1rem, 3.8vw, 3.4rem); line-height:1.08; }
.page-hero-content p{ color:rgba(251,246,236,.78); font-size:1rem; max-width:520px; }
.page-hero-content .label{ color:var(--gold-bright); }
.page-hero-content .label::before{ background:var(--gold-bright); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band{ background:var(--aubergine-900); padding:88px 0; text-align:center; position:relative; overflow:hidden; }
.cta-band-bg{ position:absolute; inset:0; }
.cta-band-bg img{ width:100%; height:100%; object-fit:cover; opacity:.16; }
.cta-band .container{ position:relative; z-index:2; }
.cta-band h2{ color:#fff; margin:10px 0 14px; }
.cta-band p{ color:rgba(251,246,236,.62); margin-bottom:36px; font-size:1.02rem; }
.cta-band .label{ color:var(--gold-bright); justify-content:center; }
.cta-band .label::before{ background:var(--gold-bright); }
.btn-group{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }

/* ============================================================
   STORE MAP
   ============================================================ */
.store-grid{ display:grid; grid-template-columns:1fr 1.4fr; gap:60px; align-items:start; }
.store-info-item{ display:flex; gap:16px; padding:19px 0; border-bottom:1px solid var(--line); }
.store-info-item:first-child{ padding-top:0; }
.store-icon{ width:40px; height:40px; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:var(--gold-deep); border:1.4px solid var(--gold); border-radius:50%; }
.store-icon svg{ width:17px; height:17px; }
.store-info-text h4{ color:var(--aubergine); margin-bottom:4px; }
.store-info-text p, .store-info-text a{ font-size:.91rem; color:var(--ink-soft); }
.store-info-text a:hover{ color:var(--gold-deep); }
.map-wrap{ overflow:hidden; box-shadow:0 24px 60px rgba(43,14,34,.12); border:6px solid var(--paper); outline:1px solid var(--line); }
.map-wrap iframe{ width:100%; height:460px; border:none; display:block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--aubergine-900); padding:72px 0 0; color:rgba(251,246,236,.65); }
.footer-top{ display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:44px; padding-bottom:56px; border-bottom:1px solid rgba(251,246,236,.12); }
.footer-logo-plate{ display:inline-flex; }
.footer-logo-plate img{ height:62px; width:auto; display:block; }
.footer-brand .l2{ display:none; }
.footer-brand p{ font-size:.86rem; color:rgba(251,246,236,.45); line-height:1.7; margin:16px 0 22px; }
.footer-socials{ display:flex; gap:8px; }
.f-soc{ width:36px; height:36px; border:1px solid rgba(251,246,236,.2); display:flex; align-items:center; justify-content:center; color:rgba(251,246,236,.55); transition:all .2s; }
.f-soc svg{ width:16px; height:16px; }
.f-soc:hover{ border-color:var(--gold-bright); color:var(--gold-bright); }
.footer-col h5{ font-size:.68rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(251,246,236,.4); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col ul li a{ font-size:.86rem; color:rgba(251,246,236,.6); transition:color .2s; }
.footer-col ul li a:hover{ color:var(--gold-bright); }
.footer-contact-info p{ font-size:.86rem; color:rgba(251,246,236,.45); margin-bottom:8px; }
.footer-contact-info a{ color:var(--gold-bright); font-size:.86rem; }
.footer-contact-info a:hover{ color:#fff; }
.footer-bottom{ padding:20px 0; display:flex; align-items:center; justify-content:space-between; border-top:1px solid rgba(251,246,236,.08); }
.footer-bottom p, .footer-bottom a{ font-size:.74rem; color:rgba(251,246,236,.35); }
.footer-bottom a:hover{ color:var(--gold-bright); }

/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.mob-cta{ display:none; }
.mob-cta-inner{ display:grid; grid-template-columns:1fr 1fr 1fr; }
.mob-btn{ display:flex; flex-direction:column; align-items:center; justify-content:center; padding:11px 8px; gap:3px; font-size:.6rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; transition:opacity .2s; }
.mob-btn:hover{ opacity:.85; }
.mob-btn.call{ background:var(--aubergine); color:#fff; }
.mob-btn.wa{ background:#128C7E; color:#fff; }
.mob-btn.dir{ background:var(--gold-deep); color:#fff; }
.mob-btn svg{ width:19px; height:19px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.left{ transform:translateX(-28px); }
.reveal.right{ transform:translateX(28px); }
.reveal.vis{ opacity:1; transform:none; }
.reveal-d1{ transition-delay:.1s; }
.reveal-d2{ transition-delay:.2s; }
.reveal-d3{ transition-delay:.3s; }
.reveal-d4{ transition-delay:.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1100px){
  .hero-stats{ grid-template-columns:repeat(4,1fr); }
  .feature-split{ grid-template-columns:1fr; }
  .feature-img{ min-height:380px; }
  .feature-content{ padding:52px 40px; }
  .footer-top{ grid-template-columns:1fr 1fr; gap:32px; }
  .brand-index{ grid-template-columns:1fr 1fr; }
  .cat-scroll-wrap{ grid-template-columns:repeat(2,1fr); }
  .brand-shot-grid{ grid-template-columns:repeat(3,1fr); }
  .mosaic{ grid-template-columns:1fr 1fr; grid-template-rows:300px 300px 300px; }
  .mosaic-item.tall{ grid-row:auto; }
  .store-grid{ grid-template-columns:1fr; }
}

@media (max-width:768px){
  :root{ --nav:64px; }
  .nav-center,.nav-phone,.nav-cta-btn{ display:none; }
  .hamburger{ display:flex; }
  .nav-inner{ grid-template-columns:auto 1fr; }
  .nav-right{ justify-content:flex-end; }
  .nav-logo{ height:64px; max-width:62vw; }
  .nav-logo img{ height:52px; width:auto; }
  .mob-cta{ display:block; position:fixed; bottom:0; left:0; right:0; z-index:900; border-top:1px solid rgba(0,0,0,.06); }
  body{ padding-bottom:66px; }
  .section{ padding:60px 0; }
  .section-sm{ padding:44px 0; }
  .hero{ height:78vh; min-height:520px; }
  .hero-heading{ font-size:2.1rem; }
  .hero-sub{ font-size:.88rem; }
  .hero-tag-badge{ top:24px; right:24px; padding:11px 16px 11px 13px; font-size:.6rem; }
  .hero-actions{ flex-direction:column; gap:9px; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .hero-stats{ grid-template-columns:1fr 1fr; }
  .h-stat{ padding:15px 14px; gap:8px; }
  .h-stat-num{ font-size:1.4rem; }
  .h-stat-label{ font-size:.58rem; }
  .slider-dots{ right:20px; bottom:108px; }
  .slider-arrow{ display:none; }
  .ann-bar{ font-size:.6rem; padding:8px 14px; }
  .cat-scroll-wrap{ grid-template-columns:1fr 1fr; gap:12px; }
  .brand-shot-grid{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .usp-inner{ grid-template-columns:1fr 1fr; }
  .usp-cell:nth-child(2){ border-right:none; }
  .usp-cell:nth-child(3){ border-top:1px solid var(--line); }
  .mosaic{ grid-template-columns:1fr; grid-template-rows:repeat(5,240px); gap:10px; }
  .col-grid{ grid-template-columns:1fr 1fr; gap:14px; }
  .testimonial-strip{ grid-template-columns:1fr; }
  .contact-layout{ grid-template-columns:1fr; gap:44px; }
  .brand-index{ grid-template-columns:1fr; margin:0; }
  .footer-top{ grid-template-columns:1fr; gap:30px; }
  .footer-bottom{ flex-direction:column; gap:8px; text-align:center; }
  .wrap{ padding:0 20px; }
  .page-hero{ height:46vh; min-height:340px; }
  .map-wrap iframe{ height:300px; }
}

@media (max-width:480px){
  .nav-logo img{ height:46px; }
  .col-grid{ grid-template-columns:1fr; }
  .cat-scroll-wrap{ grid-template-columns:1fr; }
  .brand-shot-grid{ grid-template-columns:1fr 1fr; }
  .hero{ height:74vh; }
  .hero-heading{ font-size:1.85rem; }
  .feature-nums{ flex-wrap:wrap; gap:18px; }
  .fg-row{ grid-template-columns:1fr; }
  h1{ font-size:2.2rem; }
}

@media (max-width:380px){
  .nav-logo img{ height:42px; }
}