
    /* Page-specific tweaks */
    .brands-head{display:flex;align-items:center;gap:10px;padding:18px 0;border-bottom:1px solid var(--border);margin-bottom:18px}
    .brands-head .crumb{opacity:.75}
    .brands-head .sep{opacity:.5}
    .brands-head strong{font-weight:800}

    .brands-grid{display:grid;grid-template-columns:260px 1fr;gap:24px}
    .brands-side{position:sticky;top:72px;align-self:start}
    .brand-menu{display:grid;gap:10px}
    .brand-menu button{
      appearance:none;border:1px dashed var(--border);background:linear-gradient(180deg,#fff,#fafafa);
      padding:12px 14px;border-radius:12px;text-align:left;font-weight:700;cursor:pointer
    }
    .brand-menu button:hover{border-style:solid}
    .brand-menu button.active{border:2px solid #111;background:#fff;  }

    .brand-title{font-size:clamp(22px,3vw,32px);margin:0 0 8px}
    
.brand-desc h3 {

  font-size: clamp(28px,5vw,56px);
}

    .brand-content ul{margin:0 0 18px 18px}
    .brand-gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
    .brand-gallery img{width:100%;height:240px;object-fit:cover;border-radius:14px;border:1px solid var(--border);background:#fff}

    @media (max-width:980px){
      .brands-grid{grid-template-columns:1fr}
      .brands-side{position:static}
    }

    /* hide footer email on mobile (your earlier request) */
    @media (max-width:600px){ .hide-on-mobile{display:none} }


    /* ===== BRANDS PAGE ===== */
.brands-title{
  font-size: clamp(16px, 2.6vw, 15px);
  margin: 38px 0 12px;
  font-weight: 800;
}

.brands-layout{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: start;
}

/* Left menu */
.brands-menu{ display: grid; gap: 14px; margin-top: 20px;}

.brand-link{
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg,#fff,#fafafa);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease, box-shadow .25s ease;
}
.brand-link:hover{ transform: translateY(-2px); }
.brand-link.active{
    background: #000;
  color: white;
  border: 2px solid #111;

  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}
/* ===== Perfectly aligned mosaic like the reference ===== */



/* Description */
.brand-desc{ margin-top: 18px; }
.brand-desc h3{ margin: 28px 0 10px; font-size: clamp(28px,5vw,56px); }
.brand-desc ul{ margin: 0; padding-left: 18px; }
.brand-desc li{ margin: 8px 0; color: var(--text); }

/* Placeholders (for brands without images yet) */
.placeholder{
  display:grid; place-items:center;
  color:#777; font-weight:600; font-size:14px;
  background: repeating-linear-gradient(
    45deg, #fafafa, #fafafa 8px, #f3f3f3 8px, #f3f3f3 16px
  );
}

/* Responsive */
@media (max-width: 1000px){
  .brands-layout{ grid-template-columns: 1fr; }
  .mosaic{ grid-template-columns: 1fr; }
  .right-grid{ grid-template-columns: 1fr 1fr; }
}

/* --- Brand gallery: big top + 2×2 below --- */
.brand-gallery-v2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.brand-gallery-v2 figure{
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.brand-gallery-v2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* Big banner spans both columns */
.brand-gallery-v2 .hero{
  grid-column: 1 / -1;
  /* nice wide feel; tweak if you want it taller/shorter */
  aspect-ratio: 21 / 9;
}

/* Responsive */
@media (max-width: 900px){
  .brand-gallery-v2{
    grid-template-columns: 1fr;   /* stack on mobile */
  }
  .brand-gallery-v2 .hero{
    aspect-ratio: auto;           /* let image height flow on small screens */
  }
}
/* Luxe cards under gallery */
.product-desc.luxe,
.brand-desc.luxe{
  max-width: 900px;
  margin: 26px auto 0;
  padding: 22px 26px;
  border:1px solid var(--border);
  border-radius:16px;
  background: linear-gradient(180deg,#fff,#fafafa);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  color:#111;
  line-height:1.7;
  font-size:15px;
}
.product-desc.luxe h3,
.brand-desc.luxe h3{
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing:.2px;
  font-weight: 800;
  line-height: 1.25;
}
.luxury-card{ 
  margin-bottom: 48px;   /* tweak to taste */
}
.brand-content{
  padding-bottom: 56px;  /* keeps breathing room above footer */
}

/* — Brand title row — */
.brand-titlebar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
  margin: 8px 25px 16px;
}

/* Left copy */
.brand-heading{
  margin:0;
  font-weight:900;
  line-height:.92;
  letter-spacing:-.02em;
  font-size: clamp(44px, 6.8vw, 96px);
}

.brand-sub{
  margin:10px 0 0;
  font-weight:800;
  line-height:1.15;
  font-size: clamp(18px, 2.6vw, 28px);
}

/* Logo sized to match heading on desktop */
.brand-logo{
  height: clamp(120px, 13vw, 200px);
  width:auto;
  object-fit:contain;
  display:block;
}

/* —— Mobile (stack + center) —— */
@media (max-width: 760px){
  .brand-titlebar{
    flex-direction:column;
    align-items:center;
    gap:16px;
  }
  .brand-logo{
    order:-1;                     /* logo first */
    height: clamp(140px, 28vw, 220px);
  }
  .brand-heading{
    font-size: clamp(32px, 9vw, 48px);
  }
  .brand-sub{
    font-size: clamp(18px, 5.4vw, 24px);
    max-width: 28ch;             /* forces the nice multi-line wrap */
    margin-left:auto;
    margin-right:auto;
  }
}

/* Tabbed brand panels */
.brand-panel{ display:none; }
.brand-panel.active{ display:block; }

/* ===== Soft animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gentleFloat {
  0%   { transform: translateY(0) }
  50%  { transform: translateY(-2px) }
  100% { transform: translateY(0) }
}
@keyframes slowPan {
  0%   { transform: scale(1) }
  100% { transform: scale(1.02) }
}

/* Initial state for reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Brand panel crossfade when switching tabs */
.brand-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.brand-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: block; /* keep your layout expectations */
}

/* Gentle entrance on headings & subheads */
.brand-heading,
.brand-sub {
  animation: fadeUp .7s ease both;
}

/* Float the logo slightly for a premium feel */
.brand-logo {
  animation: gentleFloat 6s ease-in-out infinite;
  will-change: transform;
}

/* Hero image: very subtle pan (once) */
.brand-gallery-v2 .hero img {
  animation: slowPan 10s ease forwards;
  transform-origin: center;
}



/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .brand-logo,
  .brand-heading,
  .brand-sub,
  .brand-gallery-v2 .hero img {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .brand-panel,
  .brand-panel.active {
    transition: none !important;
  }
}
@media (max-width: 900px){
  .brand-gallery-v2 .hero{ aspect-ratio: 4 / 3; }          /* was auto */
  .brand-gallery-v2 figure:not(.hero){ aspect-ratio: 5 / 4; }
}



/* Bigger Soié images on mobile */
@media (max-width: 900px){
  /* stack one per row (you already have this, safe to repeat) */
  .brand-gallery-v2{ grid-template-columns: 1fr; }

  /* Let figures spill a bit past the container rails (like About) */
  .brand-gallery-v2 figure{
    --gallery-bleed: .0; /* 0 = no bleed, 1 = full gutter bleed */
    margin-inline: calc(var(--gutter) * var(--gallery-bleed) * -1);
    width: calc(100% + var(--gutter) * (var(--gallery-bleed) * 2));
    overflow: hidden;
    border-radius: 16px;
  }

  /* Make them taller */
  .brand-gallery-v2 .hero{
    aspect-ratio: 3 / 2;     /* was 21/9 -> much taller on phones */
  }
  .brand-gallery-v2 figure:not(.hero){
    aspect-ratio: 4 / 3;     /* nice card ratio; adjust to taste */
  }

  /* Ensure images fill nicely */
  .brand-gallery-v2 img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
  }
}


/* Row container */
.media-text{
  display: grid;
  grid-template-columns: 1fr 1fr;    /* video | text */
  gap: 28px;
  align-items: stretch;
  margin: 32px 0;
}

.media-card{
  border-radius:16px;
  overflow:visible;            /* avoid clipping on iOS */
}

.media-card video{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
  aspect-ratio:5 / 9;
  border-radius:16px;          /* rounded media, no controls bar */
}
/*
@media (max-width:900px){
  .media-card video{ aspect-ratio:5 / 8; }
}
*/

/* Text card – reuse your luxe look */
.text-card.luxe{
  padding: 22px 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg,#fff,#fafafa);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  color: #111;
  line-height: 1.7;
}
.text-card.luxe h3{
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(18px,2.6vw,22px);
}

/* Mobile: stack */
@media (max-width: 900px){
  .media-text{ grid-template-columns: 1fr; }
  .media-card video,
  .media-card img{ aspect-ratio: 4 / 5; }  /* a bit wider on phones */
}

.brand-gallery-v2 .hero{
  margin:0;
  aspect-ratio:16/9;   /* keeps it horizontally framed */
  width:100%;
}
.brand-hero-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;     /* fills frame neatly */
  border-radius:12px;   /* match your site style */
}

/* Side-by-side media block inside your luxe card */
.product-desc.luxe.media-row{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); /* img | text */
  gap: 22px;
  align-items: center; /* or start if you don't want vertical centering */
}

.media-row .media{
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.media-row .media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* keeps a nice, even image height */
}

.media-row .content{
  display: grid;
  gap: 10px;
}

/* Mobile: stack image above text */
@media (max-width: 900px){
  .product-desc.luxe.media-row{
    grid-template-columns: 1fr;
  }
  .media-row .media img{
    aspect-ratio: auto; /* let it grow naturally on phones */
  }
}

/* Optional: flip to put text on the LEFT of the image */
.product-desc.luxe.media-row.reverse .media{ order: 2; }
.product-desc.luxe.media-row.reverse .content{ order: 1; }
