
/* ══════════════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Warm parchment palette — matching screenshots exactly */
  --parchment:   #F2EEE8;
  --parchment-d: #EAE5DE;
  --parchment-dk:#E0D9D0;
  --white:       #FFFFFF;
  --ink:         #1A1714;
  --ink-mid:     #5C5650;
  --ink-light:   #9B948C;
  --rule:        rgba(26,23,20,.12);
  --accent:      #1A1714; /* black — as per screenshots, no colour accent */

   --serif: "Cormorant Garamond", serif;
  --sans:"Manrope", sans-serif !important;

  --nav-utility-h: 38px;
  --nav-main-h:    64px;
  --nav-total:     102px;
  --pad: clamp(20px, 4vw, 72px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  color: var(--ink);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════
   UTILITY NAV BAR  (top stripe — as in screenshot 1)
══════════════════════════════════════════════ */
.nav-utility {
  height: var(--nav-utility-h);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 0 var(--pad);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
}
.nav-utility-btn {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  border-left: 1px solid var(--rule);
  cursor: pointer;
  font-family:"Manrope", sans-serif !important;
  transition: background .2s;
  white-space: nowrap;
}
.nav-utility-btn:first-child { border-left: none; }
.nav-utility-btn:hover { background: var(--parchment); }

/* ══════════════════════════════════════════════
   MAIN NAV BAR  (logo left · links centre · icons right)
══════════════════════════════════════════════ */
.nav-main {
  height: var(--nav-main-h);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  position: fixed;
  top: var(--nav-utility-h);
  left: 0; right: 0;
  z-index: 299;
  transition: box-shadow .3s;
}
.nav-main.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

/* Logo — left */
.nav-logo {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}
.nav-logo img
{
    width: 145px;
    padding-top: 4px;
}
.drawer-logo img
{
width: 145px;
    padding-top: 4px;
}
/* Links — centre */
.nav-center {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--nav-main-h);
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item > a,
.nav-item > span {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  padding: 0 16px;
  font-family: "Manrope", sans-serif !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
  user-select: none;
}
.nav-item > a:hover,
.nav-item > span:hover { opacity: .55; }
.nav-chevron { font-size: 8px; opacity: .5; transition: transform .22s; display:none;}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Underline accent */
.nav-item > a::after,
.nav-item > span::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s;
}
.nav-item:hover > a::after,
.nav-item:hover > span::after { transform: scaleX(1); }

/* Icons — right */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.nav-icon {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-icon:hover { opacity: 1; }
.nav-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ══════════════════════════════════════════════
   SIMPLE DROPDOWN (Contact)
══════════════════════════════════════════════ */
.nav-dropdown {
  position: absolute;
  top: calc(var(--nav-main-h) - 1px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--ink);
  box-shadow: 0 12px 36px rgba(0,0,0,.09);
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  pointer-events: none;
  z-index: 400;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mid);
      font-family: "Manrope", sans-serif !important;
  transition: color .18s, padding-left .18s, background .18s;
}
.nav-dropdown li a:hover { color: var(--ink); padding-left: 26px; background: var(--parchment); }
.nav-dropdown .sep { height: 1px; background: var(--rule); margin: 4px 0; }

/* ══════════════════════════════════════════════
   MEGA MENU — CAMPAIGNS  (3 columns: Recent · Archive · Photo)
══════════════════════════════════════════════ */
.mega-trigger { position: static !important; }

.mega-menu {
  position: fixed;
  top: var(--nav-total);
  left: 0; right: 0;
  z-index: 400;
  background: var(--white);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  display: grid;
  grid-template-columns: 1fr 1fr 380px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  pointer-events: none;
}
.nav-item.mega-trigger:hover .mega-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}

.mega-col {
  padding: 32px 36px 36px;
  border-right: 1px solid var(--rule);
}
.mega-col:last-child { border-right: none; padding: 0; }

.mega-col-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.mega-col ul { list-style: none; }
.mega-col ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: var(--sans);
    font-size: 13px;
    text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
  transition: color .18s, padding-left .18s;
}
.mega-col ul li a:hover,
.mega-col ul li a.mega-active { color: var(--ink); padding-left: 4px; }
.mega-season-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-light);
  transition: color .18s;
}
.mega-col ul li a:hover .mega-season-tag,
.mega-col ul li a.mega-active .mega-season-tag { color: var(--ink); }

/* Photo panel */
.mega-photo-panel {
  position: relative;
  overflow: hidden;
  background: var(--parchment-d);
}
.mega-photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .38s ease;
}
.mega-photo.mega-photo-active { opacity: 1; }
.mega-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mega-photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(26,23,20,.6) 0%, transparent 100%);
}
.mega-photo-cap-name { font-family: var(--serif);  font-size: 17px; color: #fff; }
.mega-photo-cap-tag { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 2px; }

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-family:"Manrope", sans-serif !important;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--ink);
    color: #fff;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: background .22s, color .22s;
    text-decoration: none;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
}
/* ══════════════════════════════════════════════
   HERO  — full-bleed parchment, centered wordmark
   (exactly like screenshot 1: LUVALOT / Australia script)
══════════════════════════════════════════════ */
.hero {
  margin-top: var(--nav-total);
  min-height: calc(88vh - var(--nav-total));
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--pad) 60px;
}

/* Subtle noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}

.hero-brand {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeUp .9s .1s both;
}
.hero-wordmark {
  font-family: var(--logo);
  font-size: clamp(44px, 9vw, 118px);
  font-weight: 300;
  letter-spacing: .52em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0;
  padding-left: .52em; /* visually centres the spaced text */
}
.hero-script {
  font-family: var(--script);
  font-size: clamp(28px, 5.5vw, 70px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 6px;
  letter-spacing: .01em;
}

.hero-sub {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .9s .3s both;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 13px 32px;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.hero-cta:hover { background: var(--ink-mid); }
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 13px 32px;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.hero-cta-ghost:hover { background: var(--ink); color: var(--white); }

/* ══════════════════════════════════════════════
   SERVICE TICKER  (below hero — "Global production, Melbourne management" etc)
══════════════════════════════════════════════ */
.service-ticker {
  background:#fff;
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}
.service-ticker-track {
  display: inline-flex;
  animation: ticker 36s linear infinite;
}
.st-item {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color:#000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.st-sep { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════
   BRAND LOGO STRIP  (the partners scroll — screenshot 1 bottom)
   Names styled as elegant wordmarks
══════════════════════════════════════════════ */
/* =========================================
   BRAND LOGO SLIDER
========================================= */

.brand-strip{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:15px 0;
    position:relative;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.brand-strip-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:brandScroll 28s linear infinite;
}

/* Pause on hover */

.brand-strip:hover .brand-strip-track{
    animation-play-state:paused;
}

/* LOGO ITEM */

.brand-name{
    flex:0 0 auto;
    padding:0 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BIGGER LOGOS */

.brand-name img{
    width:90px;  
    object-fit:contain;
    transition:.4s ease;
    opacity:.8;
    filter:grayscale(100%);
}

/* HOVER EFFECT */

.brand-name:hover img{
    transform:scale(1.08);
    opacity:1;
    filter:grayscale(0%);
}

/* SMOOTH INFINITE LOOP */

@keyframes brandScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .brand-strip{
        padding:20px 0;
    }

    .brand-name{
        padding:0 25px;
    }

    .brand-name img{
        width:140px;
        height:70px;
    }

}

.brand-strip {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.brand-item {
    flex-shrink: 0;
    padding: 0px 30px;
}

.brand-item img {
    height: 40px;
    width: auto;
    display: block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ══════════════════════════════════════════════
   ABOUT US  (screenshot 2: image left, text right, icons below)
══════════════════════════════════════════════ */
.about {
  background: var(--parchment);
  padding: 100px var(--pad);
}

.about-brand-header {
  text-align: center;
  margin-bottom: 52px;
}
.about-brand-header .hero-wordmark { font-size: clamp(26px, 3.6vw, 50px); letter-spacing: .5em; padding-left: .5em; }
.about-brand-header .hero-script { font-size: clamp(18px, 2.6vw, 34px); margin-top: 0; }

.about-grid {
  display: grid;
      display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    max-width: 900px;
  margin: 0 auto 0px;
  text-align:center;
}
.about-img {
  overflow: hidden;
  background: var(--parchment-dk);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.about-text {}
.about-label {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-body {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.9;
  font-weight:300;
  margin-bottom: 16px;
}
.about-rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
      margin: 20px 0;
    max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Commitments icons row (screenshot 2) */
.commitments {
  max-width: 1100px;
  margin: 0 auto;
}
.commitments-label {
  text-align: center;
      font-size: 18px;
    font-weight: 400;
    letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 36px;
}
.commitments-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.commitment-item {}
.commitment-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.commitment-icon svg { width: 100%; height: 100%; stroke: var(--ink); fill: none; stroke-width: 1; }
.commitment-name {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ══════════════════════════════════════════════
   CAMPAIGN BANNER  (screenshot 3: full-bleed, "NEW Arrivals / SHOP NOW")
══════════════════════════════════════════════ */
.campaign-banner {
    position: relative;
    display: block;
    overflow: hidden;
}

.campaign-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.campaign-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;   /* Horizontal */
    align-items: center;       /* Vertical */
    text-align: center;
    z-index: 2;
    padding: 15px;
}

.campaign-banner-title {
    width: 100%;
}

.campaign-banner-new {
        color: #fff;
    font-size: 130px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
}
@media (max-width: 767px) {
    .campaign-banner-text {
        position: absolute;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .campaign-banner-new {
        font-size: 28px;
        letter-spacing: 2px;
    }
}
/* ══════════════════════════════════════════════
   NEW ARRIVALS PRODUCT GRID  (screenshot 4)
══════════════════════════════════════════════ */
.arrivals {
     background: var(--white);
    padding: 86px var(--pad);
    padding-left: 8px;
    padding-right: 8px;
}
.arrivals-header {
  text-align: center;
  margin-bottom: 48px;
}
.arrivals-title {
    font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  
  line-height: 1.1;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:8px; /* same gap everywhere */
}

.product-card{
    width:100%;
}

.product-img{
    position:relative;
    aspect-ratio:3 / 5; /* 3:4 photo frame ratio */
    overflow:hidden;
    background:#f5f5f5;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.product-card:hover .product-img img{
    transform:scale(1.05);
}

.product-wishlist{
    position:absolute;
    top:15px;
    right:15px;
    z-index:2;
}

.product-wishlist svg{
    width:20px;
    height:20px;
    fill:none;
    stroke:transparent;
    stroke-width:2;
}

@media (max-width:991px){
    .product-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:8px;
    }
}

@media (max-width:576px){
    .product-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
}
.product-brand {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}
.product-price-btn {
  display: block;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  border: none;
  cursor: pointer;
  transition: background .22s;
}
.product-price-btn:hover { background: var(--ink-mid); }

/* ══════════════════════════════════════════════
   CAMPAIGN GRID  (Luvalot editorial photos)
══════════════════════════════════════════════ */
.campaigns-section {
 background: var(--parchment);
    padding: 100px var(--pad);
    padding-left: 8px;
	padding-right:8px;
}
.campaigns-header {
  justify-content: space-between;
  margin-bottom: 40px;
}
.campaigns-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight:400;
  text-transform:uppercase;
  text-align:center;
  line-height: 1.1;
}
.h2{
font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  
  line-height: 1.1;
}
.campaigns-link {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .22s, color .22s;
}
.explore-btn{
        display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .22s;
}
.explore-sec1
{
	    text-align: center;
    margin-top: 40px;
}
.explore-btn:hover{
    background:#000;
    color:#fff;
    transform:translateY(-2px);
}
.campaigns-link:hover { gap: 14px; color: var(--ink); }
.camp-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:8px;
}

.camp-unit{
    width:100%;
}

.camp-unit a{
    display:block;
    text-decoration:none;
    color:inherit;
}

.camp-frame{
    position:relative;
    aspect-ratio:3 / 5; /* 3:4 photo frame ratio */
    overflow:hidden;
    background:#f5f5f5;
}

.camp-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.camp-unit:hover .camp-frame img{
    transform:scale(1.04);
}

.camp-caption{
    text-align:center;
    padding:15px 0 8px;
}

.camp-name{
    font-size:16px;
    font-weight:500;
    line-height:1.4;
}

/* Tablet */
@media (max-width:991px){
    .camp-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:8px;
    }
}

/* Mobile */
@media (max-width:576px){
    .camp-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
}
.camp-tag { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-light); }

/* ══════════════════════════════════════════════
   INSTAGRAM GRID  (screenshot 5: @LUVALOT_AUSTRALIA)
══════════════════════════════════════════════ */
.instagram {
  background: var(--white);
  padding: 100px var(--pad) 0;
}
.instagram-header {
  text-align: center;
  margin-bottom: 36px;
}
.instagram-handle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
}
.ig-cell {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--parchment-d);
  cursor: pointer;
  position: relative;
      height: 500px;
    width: 100%;
}
.ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94), opacity .3s;
}
.ig-cell:hover img { transform: scale(1.06); opacity: .85; }
/* Video play icon */
.ig-play {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-play svg { width: 10px; height: 10px; fill: var(--ink); }

/* ══════════════════════════════════════════════
   FOOTER  (screenshot 6: "STOCK YOUR STORE with LUVALOT")
══════════════════════════════════════════════ */
footer {
  background: var(--parchment);
  border-top: 1px solid var(--rule);
  padding:100px var(--pad) 25px;
}

.footer-headline {
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.footer-headline-text {
  font-family:"Cormorant Garamond", serif;
  font-size: clamp(22px, 3.5vw, 48px);
  font-weight: 200;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.footer-headline-text em {
  font-family:"Jost", sans-serif;
  font-style: normal;
  font-size: clamp(22px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col-title {
      font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  font-family:"Cormorant Garamond", serif !important;
  margin-bottom: 18px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-family:"Jost", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 8px;
  transition: color .2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--ink); }

.footer-location-name {
  font-size: 10px;
  font-family:"Cormorant Garamond", serif !important;
  font-weight: 700 !important;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 6px;
}
.footer-location-name:first-child { margin-top: 0; }
.footer-hours {
  font-size: 10px;
  font-family:"Cormorant Garamond", serif !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 16px;
  margin-bottom: 6px;
}

.footer-social-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.footer-social-row a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--rule);
  transition: border-color .2s, background .2s;
  margin-bottom: 0 !important;
}
.footer-social-row a:hover { border-color: var(--ink); background: var(--ink); }
.footer-social-row a:hover svg { stroke: #fff; }
.footer-social-row svg { width: 14px; height: 14px; stroke: var(--ink-mid); fill: none; stroke-width: 1.5; }

.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {     font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--ink-mid);}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 10px; color: var(--ink-light); letter-spacing: .08em; transition: color .2s; }
.footer-legal a:hover { color: var(--ink); }
.footer-col-title
{
	font-family: "Cormorant Garamond", serif !important;
}
.footer-location-name, .footer-hours {
    font-family: "Jost", sans-serif !important;
	    font-weight: 400 !important;
}
/* ══════════════════════════════════════════════
   THEME SWITCHER
══════════════════════════════════════════════ */
.theme-switcher {
  position: fixed;
  display:none !important;
  bottom: 24px; right: 24px;
  z-index: 500;
  display: flex;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 40px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  gap: 2px;
  transition: background .35s;
}
[data-theme="dark"] .theme-switcher { background: #1a1b26; border-color: rgba(240,237,232,.1); }
.theme-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: none; border-radius: 32px;
  font-family: var(--sans);
  font-size: 9px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; background: transparent; color: var(--ink-light); transition: background .22s, color .22s;
}
.theme-btn.active { background: var(--ink); color: #fff; }
[data-theme="dark"] .theme-btn { color: rgba(240,237,232,.4); }
[data-theme="dark"] .theme-btn.active { background: #E8315B; color: #fff; }
.tbdot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tbdot-warm { background: #B8975A; }
.tbdot-dark { background: #E8315B; }

/* ══════════════════════════════════════════════
   DARK THEME
══════════════════════════════════════════════ */
[data-theme="dark"] {
  --parchment:   #0C0D12;
  --parchment-d: #111420;
  --parchment-dk:#141825;
  --white:       #181A24;
  --ink:         #EDE9E3;
  --ink-mid:     #857E78;
  --ink-light:   #504A46;
  --rule:        rgba(237,233,227,.08);
  --accent:      #E8315B;
}
[data-theme="dark"] .nav-utility { background: #0a0b10; }
[data-theme="dark"] .nav-main { background: #0e0f16; }
[data-theme="dark"] .nav-dropdown { background: #0e0f16; }
[data-theme="dark"] .mega-menu { background: #0e0f16; }
[data-theme="dark"] .service-ticker { background: #060709; }
[data-theme="dark"] .brand-strip { background: #0e0f16; }
[data-theme="dark"] .arrivals { background: #0e0f16; }
[data-theme="dark"] .instagram { background: #0e0f16; }
[data-theme="dark"] footer { background: #0a0b10; }
[data-theme="dark"] .hero-cta { background: #E8315B; color: #fff; border: none; }
[data-theme="dark"] .hero-cta:hover { background: #c0203e; }
[data-theme="dark"] .hero-cta-ghost { border-color: rgba(237,233,227,.3); }
[data-theme="dark"] .nav-item > a::after,
[data-theme="dark"] .nav-item > span::after { background: #E8315B; }
[data-theme="dark"] .mega-col ul li a:hover,
[data-theme="dark"] .mega-col ul li a.mega-active { color: var(--ink); padding-left: 4px; }
[data-theme="dark"] .product-price-btn { background: #E8315B; }
[data-theme="dark"] .product-price-btn:hover { background: #c0203e; }
[data-theme="dark"] .nav-utility-btn:hover { background: #111420; }

/* ══════════════════════════════════════════════
   REVEAL & KEYFRAMES
══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════ */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 500;
  pointer-events: none;
}

/* Dark backdrop */
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,23,20,.5);
  opacity: 0;
  transition: opacity .35s;
}

/* Panel — slides in from right */
.drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

/* Active state */
.mobile-drawer.open {
  pointer-events: auto;
}
.mobile-drawer.open .drawer-backdrop { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.drawer-logo {
  font-family: var(--logo);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
}
.drawer-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--ink-mid);
  font-size: 20px;
  transition: color .2s;
}
.drawer-close:hover { color: var(--ink); }

/* Drawer utility links */
.drawer-utility {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--rule);
  background: var(--parchment);
}
.drawer-utility a {
  padding: 11px 24px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--rule);
  transition: color .2s, background .2s;
}
.drawer-utility a:last-child { border-bottom: none; }
.drawer-utility a:hover { color: var(--ink); background: var(--parchment-dk); }

/* Drawer nav links */
.drawer-nav {
  flex: 1;
  list-style: none;
  padding: 8px 0;
}
.drawer-nav > li {
  border-bottom: 1px solid var(--rule);
}
.drawer-nav > li > a,
.drawer-nav > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color .2s, background .2s;
}
.drawer-nav > li > a:hover,
.drawer-nav > li > button:hover { background: var(--parchment); }

.drawer-chevron {
  font-size: 10px;
  color: var(--ink-light);
  transition: transform .25s;
  flex-shrink: 0;
}
.drawer-nav > li > button.open .drawer-chevron { transform: rotate(180deg); }

/* Accordion sub-panel */
.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  background: var(--parchment);
}
.drawer-sub.open { max-height: 600px; }

.drawer-sub-label {
  padding: 12px 24px 6px 32px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.drawer-sub a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 24px 11px 32px;
  font-family: var(--sans);
    font-size: 13px;
    text-transform: uppercase;
  color: var(--ink-mid);
  border-top: 1px solid var(--rule);
  transition: color .18s, padding-left .18s;
}
.drawer-sub a:hover { color: var(--ink); padding-left: 38px; }
.drawer-sub-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
}
/* Contact sub — smaller sans style */
.drawer-sub.contact-sub a {
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Drawer footer actions */
.drawer-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--rule);
  flex-shrink: 0;
}
.drawer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  transition: background .22s, color .22s;
}
.drawer-btn-primary { background: var(--ink); color: var(--white); }
.drawer-btn-primary:hover { background: var(--ink-mid); }
.drawer-btn-ghost { border: 1px solid var(--rule); color: var(--ink-mid); }
.drawer-btn-ghost:hover { background: var(--parchment); color: var(--ink); }

/* Dark theme drawer */
[data-theme="dark"] .drawer-panel { background: #0e0f16; }
[data-theme="dark"] .drawer-header { border-bottom-color: rgba(237,233,227,.08); }
[data-theme="dark"] .drawer-utility { background: #0a0b10; }
[data-theme="dark"] .drawer-utility a { color: rgba(237,233,227,.5); border-color: rgba(237,233,227,.07); }
[data-theme="dark"] .drawer-utility a:hover { background: #111420; }
[data-theme="dark"] .drawer-nav > li { border-color: rgba(237,233,227,.07); }
[data-theme="dark"] .drawer-nav > li > a,
[data-theme="dark"] .drawer-nav > li > button { color: var(--ink); }
[data-theme="dark"] .drawer-nav > li > a:hover,
[data-theme="dark"] .drawer-nav > li > button:hover { background: #111420; }
[data-theme="dark"] .drawer-sub { background: #0a0b10; }
[data-theme="dark"] .drawer-sub a { border-color: rgba(237,233,227,.07); color: rgba(237,233,227,.5); }
[data-theme="dark"] .drawer-sub a:hover { color: var(--ink); }
[data-theme="dark"] .drawer-actions { border-top-color: rgba(237,233,227,.08); }
[data-theme="dark"] .drawer-btn-ghost { border-color: rgba(237,233,227,.15); color: rgba(237,233,227,.5); }
[data-theme="dark"] .drawer-btn-ghost:hover { background: #111420; color: var(--ink); }
.hero-brand img
{
width:300px;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.hero-brand img {
  width: 370px;

  /* animation start state */
  opacity: 0;
  transform: translateY(40px) scale(0.96);

  /* animation */
  animation: heroFade 1.8s ease forwards;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.about-brand-header {
  text-align: center;
}

.about-brand-header img {
  display: block;
  margin: 0 auto;
  width: 250px;
}
/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 20px; }
.hero-brand img
{
width:200px;
}
  /* Hide desktop nav elements */
  .nav-center { display: none !important; }
  .nav-utility { display: none; }
  .nav-right { gap: 10px; }
  .nav-right .nav-icon:not(.nav-icon-bag):not(.nav-icon-account) { display: none; }

  /* Completely disable mega menu on mobile so it can't block taps */
  .mega-menu { display: none !important; }
  .nav-dropdown { display: none !important; }

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Reflow main nav to 3-col: logo | spacer | icons+burger */
  .nav-main {
    grid-template-columns: auto 1fr auto;
    padding: 0 16px;
	top:0;
  }
  .nav-logo { font-size: 13px; letter-spacing: .22em; }

  /* Adjust hero top margin since utility bar is hidden */
  .hero { margin-top: var(--nav-main-h); height:75vh;border-bottom:none; }

  /* Show mobile drawer */
  .mobile-drawer { display: block; }

  /* Page sections */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .commitments-row { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .camp-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .camp-unit.tall { grid-column: 1 / span 2; }
  .camp-unit.tall .camp-frame { min-height: 52vw; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid .ig-cell:nth-child(n+7) { display: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-headline-text { font-size: 22px; }
  .campaign-banner-new { font-size: 48px; }
  .campaign-banner-script { font-size: 30px; }
  .campaigns-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .commitments-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-grid {        grid-template-columns: 1fr;
        gap: 20px; }
  .footer-cols { grid-template-columns: 1fr; }
  .camp-grid { grid-template-columns: 1fr; }
  .camp-unit.tall { grid-column: 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid .ig-cell:nth-child(n+5) { display: none; }
  .campaign-banner-new { font-size: 36px; }
  .campaign-banner-script { font-size: 24px; }
  .hero-wordmark { letter-spacing: .28em; padding-left: .28em; }
  
  .footer-social-row { flex-wrap: wrap; }
}
/* Default (desktop) stays as is */

@media (max-width: 768px) {
  .camp-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 16px;
  }
.camp-unit
{
display:block;
}
 .camp-grid 
 {
 display:block;
 }
 .instagram-grid
 {
 display:block;
 }
  .camp-unit {
    grid-column: auto !important;
    grid-row: auto !important;
	        margin-bottom: 15px;
  }

  .camp-unit.tall {
    height: auto; /* prevent oversized item */
  }

  .camp-frame img {
    width: 100%;
    display: block;
  }
   .footer-cols {
    display: block;
	}
	.footer-col
	{
	margin-bottom:20px;
	}
}

/* ─── HERO ───────────────────────────────── */
.contact-hero {
  background: var(--ink);
  min-height: clamp(320px, 42vw, 500px);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
      position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    width: 100%;
}
.contact-hero::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; }
.contact-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.contact-hero-eye   { font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.contact-hero-title {font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 18px;}
.contact-hero-sub   {    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92); }

/* ─── QUICK CONTACT BAND ─────────────────── */
.quick-band { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.qc-card { background: var(--white); padding: 40px 36px; display: flex; flex-direction: column; gap: 12px; transition: background .22s; }
.qc-card:hover { background: var(--bg); }
.qc-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; transition: background .22s, border-color .22s; }
.qc-card:hover .qc-icon { background: var(--ink); border-color: var(--ink); }
.qc-icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: stroke .22s; }
.qc-card:hover .qc-icon svg { stroke: #fff; }
.qc-label { font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--ink3); }
.qc-value { font-family: var(--serif); font-size: 18px;  color: var(--ink); line-height: 1.3; }
.qc-value a:hover { opacity: .65; }

/* ─── MAIN GRID — Form + Info ─────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; }
.form-col { background: var(--white); padding:100px var(--pad); border-right: 1px solid var(--line); }
.info-col { background: var(--bg); padding:100px var(--pad); }

/* ─── TEXT HELPERS ───────────────────────── */
.eyebrow { font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; display: block; }
.h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,48px); font-weight: 300;  color: var(--ink); line-height: 1.1; margin-bottom: 16px; }
.body-text { font-size: 15px; color: var(--ink2); line-height: 1.85; margin-bottom: 14px; }
.sec { padding: 100px var(--pad); }
.sec-white { background: var(--white); }
.sec-parch { background: var(--bg); }
.sec-dark  { background: var(--ink); }
.sec-hd    { text-align: center; margin-bottom: 52px; }

/* ─── FORM ───────────────────────────────── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 36px; }
.full { grid-column: 1/-1; }
.fl { display: flex; flex-direction: column; gap: 8px; }
.fl label { font-size: 14px; font-weight: 400; font-family:"Jost", sans-serif !important;

}
.fl input, .fl select, .fl textarea { background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 11px 0; font-family:"Jost", sans-serif !important; font-size: 14px; color: var(--ink); outline: none; transition: border-color .25s; width: 100%; -webkit-appearance: none; }
.fl input::placeholder, .fl textarea::placeholder { color: rgba(90,83,76,.3); }
.fl input:focus, .fl select:focus, .fl textarea:focus { border-bottom-color: var(--ink); }
.fl textarea { resize: vertical; min-height: 120px; }
.fl select { cursor: pointer; background: transparent; }
.submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 40px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; background: var(--ink); color: #fff; border: none; cursor: pointer; transition: background .22s; }
.submit:hover { background: var(--ink2); }
.form-note { font-size: 11px; color: var(--ink3); margin-top: 14px; line-height: 1.6; }
.form-success { display: none; margin-top: 20px; padding: 18px 20px; background: rgba(24,22,15,.06); border-left: 2px solid var(--ink); font-size: 14px; color: var(--ink2); }
.form-success.show { display: block; }
.question{
    margin-bottom:45px;
}

.question h4{
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 14px;
    margin-top: 15px;
	font-family: "Jost", sans-serif;
}

/* Checkbox Grid */

.checkbox-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px 60px;

}

.check-box{
font-family:"Jost", sans-serif !important;
    display:flex;
    align-items:center;
    cursor:pointer;
    font-size: 14px;
    font-weight: 400;
}

.check-box input{

    width:18px;
    height:18px;
    margin-right:12px;
    accent-color:#000;

}

/* Radio */

.radio-group{

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;

}

.radio-group label{

    display:flex;
    align-items:center;
    cursor:pointer;
	    font-size: 14px;
    font-weight: 400;
font-family:"Jost", sans-serif !important;	

}

.radio-group input[type="radio"]{
font-family:"Jost", sans-serif !important;
    width:18px;
    height:18px;
    margin-right:10px;
    accent-color:#000;

}

/* Input */

.radio-group input[type="text"],
.radio-group input[type="email"]{
font-family:"Jost", sans-serif !important;
    width:280px;
    height:50px;
    border:1px solid #ddd;
    padding:0 18px;
    outline:none;
    transition:.3s;
	font-family: "Jost", sans-serif;
    font-size: 14px;
    color: var(--ink);
    outline: none;

}
.form-head4 {
        font-weight: 500;
    font-size: 20px;
}
.form-grid p
{
	font-weight:400;
}
.radio-group input[type="text"]:focus,
.radio-group input[type="email"]:focus{

    border-color:#000;

}

/* Register Button */

.register-btn{

    width:360px;
    max-width:100%;
    height:58px;
    display:block;
    margin:60px auto 20px;
    background:#000;
    color:#fff;
    border:none;
    letter-spacing:3px;
    font-size:15px;
    cursor:pointer;
    transition:.3s;

}

.register-btn:hover{

    background:#333;

}

/* Terms */

.terms{

    text-align:center;
    color:#666;
    font-size:14px;
    line-height:1.7;

}

.terms a{

    color:#000;
    text-decoration:underline;

}
.other-option{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.textarea-wrapper{
    width:100%;
    display:none;
    margin:15px 0 25px;
}
.checkbox-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}
.other-textarea{
    width:100%;
    min-height:120px;
    padding:15px;
    border:1px solid #ddd;
    box-sizing:border-box;
    resize:vertical;
    font-size:15px;
    font-family:inherit;
}
.other-textarea:focus{
    border-color:#000;
}
/* Responsive */

@media(max-width:991px){

.checkbox-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.checkbox-grid{

grid-template-columns:1fr;

}

.radio-group{

flex-direction:column;
align-items:flex-start;

}

.radio-group input[type="text"],
.radio-group input[type="email"]{

width:100%;

}

.register-btn{

width:100%;

}

}
/* ─── OFFICE BLOCKS ──────────────────────── */
.office-block { padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.office-block:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.office-city { font-family: var(--serif); font-size: 26px;  color: var(--ink); margin-bottom: 18px; }
.office-row  { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 10px; }
.office-dt   { font-size: 10px;    font-family: "Jost", sans-serif; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--ink3); min-width: 60px; flex-shrink: 0; padding-top: 2px; }
.office-dd   { font-size: 14px;  font-family: "Jost", sans-serif; color: var(--ink2); line-height: 1.6; }
.office-dd a:hover { color: var(--ink); }
.office-hours { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; gap: 16px; }
.oh-label { font-size: 10px;    font-family: "Jost", sans-serif;margin-top: 3px;  font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: var(--ink3); flex-shrink: 0; }
.oh-val   { font-size: 13px; color: var(--ink2);    font-family: "Jost", sans-serif;
    padding-left: 20px; }

/* ─── SOCIAL ─────────────────────────────── */
.social-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.soc-btn { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line); font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--ink2); transition: background .2s, color .2s, border-color .2s; }
.soc-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.soc-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

/* ─── FAQ ────────────────────────────────── */
.faq-wrap { max-width: 860px; margin: 0 auto; }
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { padding: 5px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 400; color: var(--ink); transition: opacity .2s; user-select: none; }
summary::-webkit-details-marker { display: none; }
summary:hover { opacity: .7; }
.faq-icon { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s, transform .28s; }
details[open] .faq-icon { background:transparent; border-color: var(--ink); transform: rotate(45deg); }
details[open] .faq-icon svg { stroke: #fff; }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--ink3); fill: none; stroke-width: 2; }
.faq-ans { padding-bottom: 22px; font-size: 14px; color: var(--ink2); line-height: 1.85; max-width: 680px; }


/* Tabs */
.faq-tabs{
    max-width:900px;
    margin:auto;
}

.faq-tabs input[type="radio"]{
    display:none;
}

.tab-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
	font-family:"Manrope", sans-serif !important;
    margin-bottom:30px;
}

.tab-buttons label{
    padding:12px 30px;
	font-family:"Manrope", sans-serif !important;
    border:1px solid #ddd;
    border-radius:50px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
    background:#fff;
}

#wholesale:checked ~ .tab-buttons label[for="wholesale"],
#private-label:checked ~ .tab-buttons label[for="private-label"]{
    background:#000;
    color:#fff;
	
    border-color:#000;
}

.tab-content{
    display:none;
}

#wholesale:checked ~ .wholesale-content{
    display:block;
}

#private-label:checked ~ .private-content{
    display:block;
}

/* FAQ */
.tab-content details{
    border-bottom:1px solid #ddd;
    padding:18px 0;
}

.tab-content summary{
    list-style:none;
    cursor:pointer;
    font-size:18px;
    font-weight:500;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.tab-content summary::-webkit-details-marker{
    display:none;
}

.faq-ans,
.tab-content p{
       margin-top: 15px;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

details[open] .faq-icon{
    transform:rotate(45deg);
}

.faq-icon{
    font-size:24px;
    transition:.3s;
}
/* ─── QUOTE ──────────────────────────────── */
.quote { background: var(--ink); padding: 100px var(--pad); text-align: center; }
.q-text { font-family: var(--serif); font-size: clamp(20px,2.8vw,38px); font-weight: 300;  color: #fff; line-height: 1.4; max-width: 760px; margin: 0 auto 14px; }
.q-attr { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.3); }
@media (max-width: 960px) {
  :root { --pad: 20px; }
.contact-hero-brand img
{
width:100%;
}

  /* Adjust hero top margin since utility bar is hidden */
  .contact-hero { margin-top: var(--nav-main-h);height:45vh; }

  /* Show mobile drawer */
  .mobile-drawer { display: block; }

  .contact-hero { margin-top: var(--mh); }
  .quick-band { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-col { border-right: none; border-bottom: 1px solid var(--line); }
  .foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: 1; }
  .foot-cols { grid-template-columns: 1fr; }
  .social-row { gap: 6px; }
   .footer-cols {
    display: block;
	}
	.footer-col
	{
	margin-bottom:20px;
	}
	.office-dd {
    font-size: 11px;
    color: var(--ink2);
    line-height: 1.6;
}
.qc-card {
    background: var(--white);
    padding: 15px 15px;
}
.about
{
	padding-bottom:40px;
	padding-top:40px;
}
.footer-legal {
    display: flex;
    gap: 10px;
}
.tab-buttons label {
    padding: 12px 15px;
}
}


/* ══════════════════════════════════════════
   HERO BANNER
══════════════════════════════════════════ */
  .about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
	margin-top:104px;
  }

  .about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,22,18,0.15) 0%, transparent 40%, rgba(26, 22, 18, 0.7) 100%);
    z-index: 1;
  }

  .about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    width: 100%;
  }

  .about-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
  }

  .about-hero h1 {
        font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .about-hero h1 em { font-style: italic; font-weight: 300; }

  .about-hero p {
    font-family:"Jost", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92);
  }
p
{
	font-family:"Jost", sans-serif;
}
/* ══════════════════════════════════════════
   INTRO SPLIT
══════════════════════════════════════════ */
.about-intro1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
    padding: 100px var(--pad);
}
.about-intro1-photo { overflow: hidden; min-height: 580px; background: var(--bg2); }
.about-intro1-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.about-intro1-photo:hover img { transform: scale(1.03); }

.about-intro1-text {
  padding: 100px var(--pad);
  padding-right:0;
  display: flex; flex-direction: column; justify-content: center;
}
.about-eyebrow {
  font-family: var(--body-font);
  font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300; 
  color: var(--ink); line-height: 1.1; margin-bottom: 24px;
}
.body-text {
  font-family:"Jost", sans-serif;
  font-size: 15px; color: var(--ink-2); line-height: 1.85; margin-bottom: 14px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--line);
  margin-top: 36px;
}
.about-stat { padding: 12px; border-right: 1px solid var(--line); padding-right: 20px; }
.about-stat:last-child { border-right: none; }
.about-stat-n {
  font-family: var(--serif);
  font-size: 42px; font-weight: 300;
  color: var(--ink); line-height: 1; margin-bottom: 4px;
}
.about-stat-l {
  font-family: "Jost", sans-serif;
  font-size: 11px; color: var(--ink-3); line-height: 1.45; max-width: 100px;
}

/* ══════════════════════════════════════════
   COMMITMENTS
══════════════════════════════════════════ */
.about-commit {
  background: var(--bg);
  padding: 100px var(--pad);
}
.about-section-hd {
  text-align: center;
  margin-bottom: 56px;
}
.about-commit-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.about-commit-card {
  padding: 40px 28px 36px;
  text-align: center;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background .25s;
}
.about-commit-card:last-child { border-right: none; }
.about-commit-card:hover { background: var(--bg); }
.about-commit-icon {
  width: 48px; height: 48px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%;
}
.about-commit-icon svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.about-commit-name {
  font-family: var(--body-font);
  font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); line-height: 1.6;
}

/* ══════════════════════════════════════════
   FULL BLEED
══════════════════════════════════════════ */
.about-full-bleed {
  width: 100%;
  height: clamp(240px, 40vw, 560px);
  object-fit: cover; object-position: center; display: block;
}

/* ══════════════════════════════════════════
   MISSION (reversed cols)
══════════════════════════════════════════ */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mission-text {
  background: var(--bg);
  padding: 100px var(--pad);
  display: flex; flex-direction: column; justify-content: center;
  order: 1;
}
.mission-photo { overflow: hidden; min-height: 520px; order: 2; background: var(--bg2); }
.mission-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}
.mission-photo:hover img { transform: scale(1.03); }
.about-cta-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
      font-family: "Manrope", sans-serif !important;
  font-size: 10px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: gap .22s, opacity .22s; width: fit-content;
}
.about-cta-link:hover { gap: 14px; opacity: .6; }

/* ══════════════════════════════════════════
   QUOTE
══════════════════════════════════════════ */
.about-quote {
  background: var(--ink);
  padding: 100px var(--gutter);
  text-align: center;
}
.about-quote-mark {
  font-family: var(--serif);
  font-size: 100px; line-height: .5;
  color: rgba(255,255,255,.08); margin-bottom: -8px; display: block;
}
.about-quote-body {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 300; 
  color: #fff; line-height: 1.4;
  max-width: 860px; margin: 0 auto 22px;
}
.about-quote-attr {
  font-family:"Jost", sans-serif;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}

/* ══════════════════════════════════════════
   about-values GRID
══════════════════════════════════════════ */
.about-values {
  background: var(--white);
  padding: 100px var(--pad);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  max-width: var(--max); margin: 48px auto 0;
}
.about-values-card {
  background: var(--white); padding: 44px 40px;
  transition: background .25s;
}
.about-values-card:hover { background: var(--bg); }
.about-val-num {
  font-family: var(--serif);
  font-size: 48px; 
  color: var(--bg2); line-height: 1; margin-bottom: 18px;
}
.about-val-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  color: var(--ink); margin-bottom: 12px; line-height: 1.2;
}
.about-val-body {
  font-family: var(--body-font);
  font-size: 14px; color: var(--ink-2); line-height: 1.85;
}

.about-sec-parch {
    background: var(--bg);
}
.about-sec {
    padding: 100px var(--pad);
}
.about-sec-hd {
    text-align: center;
    margin-bottom: 56px;
}
/* ─── SERVICES 3-COL ─────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 1600px; margin: 52px auto 0; }
.svc-card { background: var(--white); padding: 40px 36px; transition: background .22s; }
.svc-card:hover { background: var(--bg); }
.svc-n { font-family: var(--serif); font-size: 40px; font-style: italic; color: rgba(220,212,200,.7); line-height: 1; margin-bottom: 16px; }
.svc-t { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.svc-b { font-size: 15px; color: var(--ink2); line-height: 1.8; }

/* ══════════════════════════════════════════
   TEAM
══════════════════════════════════════════ */
.team {
  background: var(--bg);
  padding: 100px var(--pad);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  max-width: 1100px; margin: 48px auto 0;
}
.team-card { background: var(--white); overflow: hidden; }
.team-photo { overflow: hidden; }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 20px 22px 24px; border-top: 1px solid var(--line); }
.team-name {
  font-family: var(--serif); font-size: 20px; 
  color: var(--ink); margin-bottom: 4px;
}
.team-role {
  font-family: var(--body-font);
  font-size: 9px; font-weight: 400; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ══════════════════════════════════════════
   BRAND TICKER
══════════════════════════════════════════ */
.ticker-wrap {
  background: var(--white);
  padding: 72px var(--gutter) 80px;
}
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; margin-top: 36px;
}
.ticker-track {
  display: inline-flex; align-items: center;
  animation: tick 50s linear infinite;
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-name {
  padding: 0 44px;
  font-family: var(--serif);
  font-size: 18px;  font-weight: 300;
  color: var(--ink-3); white-space: nowrap;
  border-right: 1px solid var(--line);
  transition: color .2s;
}
.t-name.alt {
  font-family: var(--body-font);
  font-size: 10px; font-style: normal; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
}
.t-name:hover { color: var(--ink); }

/* ══════════════════════════════════════════
   CTA BLOCK
══════════════════════════════════════════ */
.about-cta-block {
  background: var(--ink);
  padding: 100px var(--gutter);
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 52px;
  max-width: 100%;
}
.about-cta-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 300; 
  color: #fff; line-height: 1.15; margin-bottom: 10px;
}
.about-cta-sub {
  font-family: "Jost", sans-serif;
  font-size: 15px; color: rgba(255,255,255,.48); line-height: 1.75;
}
.about-cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.about-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; font-family:"Manrope", sans-serif !important;
  font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: background .22s, color .22s, border-color .22s;
}
.about-cta-btn-light { background: #fff; color: var(--ink); border: 1px solid #fff; }
.about-cta-btn-light:hover { background: var(--bg); border-color: var(--bg); }
.about-cta-btn-outline { background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.22); }
.about-cta-btn-outline:hover { color: #fff; border-color: rgba(255,255,255,.6); }


/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 20px; }
.about-hero-brand img
{
width:100%;
}
  /* Adjust about-hero top margin since utility bar is hidden */
  .about-hero { margin-top: var(--nav-main-h); height:75vh; }


  .about-hero { margin-top: var(--mh); }
  .about-intro1 { grid-template-columns: 1fr; }
  .about-intro1-photo { min-height: 56vw; }
  .mission { grid-template-columns: 1fr; }
  .mission-photo { min-height: 56vw; order: 1; }
  .mission-text { order: 2; }
  .about-commit-grid { grid-template-columns: repeat(3,1fr); }
  .about-commit-card { border-bottom: 1px solid var(--line); }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-cta-block { grid-template-columns: 1fr; gap: 32px; }
  .about-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 767px) {
  .about-commit-grid { grid-template-columns: 1fr 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .about-stat:last-child { border-bottom: none; }
  .about-hero-right { display: none; }
 
	.about-intro1-text {
    padding: 20px 0px;
}
.mission-text
{
	 padding: 20px 15px;
}
.about-quote
{
	 padding: 20px 15px;
}
.svc-grid
{
	    grid-template-columns: 1fr;
}
}


/* ══════════════════════════════════════════
   HERO BANNER
══════════════════════════════════════════ */
.campaign-hero {
  margin-top: var(--nt);
  position: relative;
  height:75vh;
  overflow: hidden;
  background: var(--ink);
  display: flex; align-items: flex-end;
}
.campaign-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  opacity: .65;
  animation: hzoom 12s ease-out both;
}
@keyframes hzoom { from { transform: scale(1.06); } to { transform: scale(1); } }

.campaign-hero-inner {
      position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    width: 100%;
}
.campaign-hero-left {}
.campaign-hero-eye {
  font-family:"Jost", sans-serif;
  font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.campaign-hero-title {
     font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}
.campaign-hero-right {
      font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92);
}
  .coll-filter-chip {
      padding: 0 16px;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .coll-campaign-hero {
      padding: 34px 0 28px;
	  background:#fff;
	  margin-top:70px;
    }

    .coll-campaign-hero-wrap {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 24px;
      align-items: stretch;
    }

    .coll-campaign-hero-content,
    .coll-campaign-hero-feature {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }

    .coll-campaign-hero-content {
      min-height: 520px;
      background:
        linear-gradient(120deg, rgba(255,248,244,0.94) 0%, rgba(255,248,244,0.82) 42%, rgba(255,248,244,0.20) 100%),
        url('img/img11.jpg') center center / cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 42px;
    }

    .coll-campaign-hero-copy {
      max-width: 580px;
      background: rgba(255,255,255,0.42);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 28px;
      padding: 28px;
    }

    .coll-eyebrow {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(184,106,96,0.12);
      color: var(--primary);
      font-size: 0.83rem;
      font-weight: 700;
      margin-bottom: 16px;
	  opacity:0;
    }

    .coll-campaign-hero h1 {
     
      font-size: clamp(2.7rem, 5vw, 4.8rem);
      line-height: 0.98;
      margin-bottom: 16px;
      letter-spacing: -0.03em;
    }

    .coll-campaign-hero p {
      font-size: 1rem;
      line-height: 1.75;
      color: #6f5f5f;
      margin-bottom: 24px;
      max-width: 520px;
    }

    .coll-campaign-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    

    .coll-campaign-hero-feature {
      min-height: 520px;
      background:#EDE8E1;
      border: 1px solid var(--border);
      display: grid;
      grid-template-rows: 1fr auto;
    }

    .coll-campaign-hero-feature-image {
      min-height: 360px;
      background:
        linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)),
        url('img/img16.jpg') top center / cover no-repeat;
    }

    .coll-campaign-hero-feature-content {
      padding: 26px;
      display: grid;
      gap: 14px;
    }

    .coll-campaign-hero-feature-content h3 {
     
      font-size: 1.8rem;
      line-height: 1.1;
    }

    .coll-campaign-hero-feature-content p {
      color: var(--muted);
      line-height: 1.75;
    }

    .coll-campaign-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .coll-campaign-hero-meta span {
      padding: 8px 12px;
      border-radius: 999px;
      background: #faf5f2;
      border: 1px solid var(--border);
      color: #5a4a4a;
      font-size: 0.84rem;
      font-weight: 600;
    }

    .campaign-ticker-wrap {
      padding-bottom: 24px;
    }

    .campaign-ticker {
      width: 100%;
      overflow: hidden;
      background: rgba(255,255,255,0.7);
      border: 1px solid var(--border);
      border-radius: 999px;
      box-shadow: var(--shadow);
    }

    .campaign-ticker-track {
      display: flex;
      gap: 36px;
      width: max-content;
      white-space: nowrap;
      padding: 14px 0;
      animation: ticker 24s linear infinite;
      font-weight: 700;
      color: #5d4f4f;
    }

    .campaign-ticker-track span::after {
      content: "|";
      margin-left: 36px;
      color: rgba(93,79,79,0.32);
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }


    .collection-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,0.78);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .toolbar-left,
    .toolbar-right {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .toolbar-pill {
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      color: #534343;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .toolbar-pill.active {
      background: rgba(184,106,96,0.12);
      color: var(--primary-dark);
      border-color: rgba(184,106,96,0.24);
    }

    .collections-section {
      padding: 0 0 90px;
    }
/* =========================
   EDITORIAL GRID
========================= */

/* =========================
   MASONRY GALLERY
========================= */

/* =========================
   MASONRY GALLERY
========================= */
.campaign-section{
    padding:80px 0;
}

.campaign-header{
    text-align:center;
    margin-bottom:20px;
}

.campaign-header h2{
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 18px;
}
.editorial-grid{
    column-count:4;
    column-gap:15px;
	padding-right:8px;
	padding-left:8px;
}

.editorial-card{
    display:inline-block;
    width:100%;
    margin:0px;
    position:relative;
    overflow:hidden;
    background:#fff;
    break-inside:avoid;
    box-shadow:var(--shadow);
}

.editorial-card img{
    width:100%;
    height:auto;
    display:block;
    border-radius:15px;
    transition:.4s ease;
}

.editorial-card:hover img{
    transform:scale(1.04);
}

.editorial-card::before{
    content:"";
    position:absolute;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,0) 50%
    );
    opacity:0;
    transition:.3s;
    z-index:1;
}

.editorial-card:hover::before{
    opacity:1;
}

.editorial-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:20px;
    z-index:2;
    color:#fff;
    transform:translateY(20px);
    opacity:0;
    transition:.3s;
}

.editorial-card:hover .editorial-content{
    opacity:1;
    transform:translateY(0);
}

/* Tablet */
@media (max-width:991px){
    .editorial-grid{
        column-count:2;
    }
}

/* Mobile */
@media (max-width:576px){
    .editorial-grid{
        column-count:1;
    }
}
.editorial-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.editorial-card{
    overflow:hidden;
}

.editorial-card img{
    width:100%;
    aspect-ratio:2 / 3.3;      /* Portrait */
    object-fit:cover;
    display:block;
    border-radius:0;
}
@media(max-width:991px){

.editorial-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.editorial-grid{
    grid-template-columns:1fr;
}

}
/* =========================
   LIGHTBOX
========================= */

.lightbox{
    position:fixed;
    inset:0;
    background:rgb(0 0 0 / 86%);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
    padding:30px;
}

.lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;
    object-fit:contain;
    border-radius:0px;
    animation:zoomIn .3s ease;
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Cursor */
.gallery-img{
    cursor:pointer;
}
/* Content */
.editorial-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    z-index:2;
    padding:22px;
    color:#fff;
}

.editorial-tag{
    display:inline-block;
    margin-bottom:10px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(8px);
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
}

.editorial-content h3{
    font-size:1.7rem;
    line-height:1.08;
    margin-bottom:8px;
}

.editorial-content p{
    color:rgba(255,255,255,.84);
    line-height:1.65;
    max-width:420px;
    margin-bottom:16px;
}

.editorial-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.editorial-meta strong{
    font-size:.95rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:rgba(255,255,255,.92);
}

.editorial-link{
    color:#fff;
    font-weight:700;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
}

/* Tablet */
@media(max-width:1180px){

    .editorial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .editorial-card.wide{
        grid-column:span 1;
    }
}

/* Mobile */
@media(max-width:768px){

    .editorial-grid{
        grid-template-columns:1fr;
    }

    .editorial-card,
    .editorial-card.tall,
    .editorial-card.wide{
        grid-column:span 1;
        grid-row:span 1;
    }

    .editorial-content{
        padding:18px;
    }

    .editorial-content h3{
        font-size:1.4rem;
    }
}

    .campaign-panel {
      margin-top: 26px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .campaign-card {
      background: rgba(255,255,255,0.84);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .campaign-card h3 {
     
      font-size: 1.8rem;
      line-height: 1.08;
      margin-bottom: 10px;
    }

    .campaign-card p {
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 18px;
      max-width: 620px;
    }

    .campaign-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .campaign-stats .stat-box {
      min-width: 140px;
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: #fff;
    }

    .campaign-stats strong {
      display: block;
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 2px;
    }

    .campaign-stats span {
      font-size: 0.88rem;
      color: var(--muted);
    }

    @media (max-width: 1180px) {
      

      .coll-campaign-hero-wrap,
      .campaign-panel {
        grid-template-columns: 1fr;
      }

      .coll-campaign-hero-feature {
        min-height: 420px;
      }

      .editorial-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .editorial-card.wide {
        grid-column: span 2;
      }
    }

    @media (max-width: 768px) {
    

      .coll-campaign-hero-content {
        min-height: 460px;
        padding: 20px;
      }

      .coll-campaign-hero-copy {
        padding: 22px;
      }

      .coll-campaign-hero h1 {
        font-size: 2.6rem;
      }

      .collection-toolbar {
        padding: 14px;
      }

      .editorial-grid {
        grid-template-columns: 1fr;
      }

      .editorial-card,
      .editorial-card.tall,
      .editorial-card.wide {
        grid-column: span 1;
        grid-row: span 1;
        min-height:100%;
      }

      .campaign-stats {
        gap: 10px;
      }

      .campaign-stats .stat-box {
        min-width: calc(50% - 10px);
      }
    }


/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 20px; }
.campaign-hero-brand img
{
width:100%;
}

  /* Adjust campaign-hero top margin since utility bar is hidden */
  .campaign-hero { margin-top: var(--nav-main-h); height:75vh; }


  .campaign-hero { margin-top: var(--mh); }
}
@media (max-width: 560px) {

  .campaign-hero-right { display: none; }

}


/* ─── HERO ───────────────────────────────── */
  .fact-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
	margin-top:104px;
  }

  .fact-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .fact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,22,18,0.15) 0%, transparent 40%, rgba(26, 22, 18, 0.7) 100%);
    z-index: 1;
  }

  .fact-hero-content {
       position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    width: 100%;
  }

  .fact-eyebrow {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
  }

  .fact-hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
  }

  .fact-hero h1 em { font-style: italic; font-weight: 300; }

  .fact-hero p {
        font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.92);
  }


.fact-hero-eye  { font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.fact-hero-title { font-family: var(--serif); font-size: clamp(42px,5.5vw,84px); font-weight: 300; font-style: italic; color: #fff; line-height: 1; margin-bottom: 24px; }
.fact-hero-sub  { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.8; max-width: 380px; margin-bottom: 40px; }
.fact-hero-btns { display: flex; gap: 12px;margin-top:10px; flex-wrap: wrap; }
.hbtn { display: inline-flex; align-items: center; padding: 13px 30px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: background .22s, color .22s; text-decoration: none; }
.hbtn-fill { background: #fff; color: var(--ink); border: 1px solid #fff; }
.hbtn-fill:hover { background: var(--bg); border-color: var(--bg); }
.hbtn-out  { border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.65); background: transparent; }
.hbtn-out:hover  { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.55); }
.fact-hero-right { overflow: hidden; }
.fact-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; animation: zoom 12s ease-out both; }
@keyframes zoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* ─── SERVICE TICKER ─────────────────────── */
.fact-ticker { overflow: hidden; white-space: nowrap; background: var(--ink); border-top: 1px solid rgba(255,255,255,.05); padding: 12px 0; }
.fact-ticker-track { display: inline-flex; animation: tick 38s linear infinite; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-i { padding: 0 40px; font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.35); border-right: 1px solid rgba(255,255,255,.07); white-space: nowrap; }

/* ─── TEXT HELPERS ───────────────────────── */
.fact-eyebrow { font-size: 9px;font-family: "Cormorant Garamond", serif; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; display: block; }
.h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,48px); font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 18px; }
.h2-lt { color: #fff; }
.body-text { font-size: 15px; color: var(--ink); line-height: 1.85; margin-bottom: 14px; }
.fact-sec { padding: 100px var(--pad); }
.fact-sec-white { background: var(--white); }
.fact-sec-parch { background: var(--bg); }
.fact-sec-dark  { background: var(--ink); }
.fact-sec-hd    { text-align: center; margin-bottom: 56px; }
.fact-link-arr {    font-family: "Manrope", sans-serif !important; display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 10px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: gap .22s, opacity .22s; width: fit-content; }
.fact-link-arr:hover { gap: 14px; opacity: .6; }

/* ─── STATS BAND ─────────────────────────── */
.fact-stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.fact-sb { background: var(--white); padding: 44px 36px; text-align: center; transition: background .22s; }
.fact-sb:hover { background: var(--bg); }
.fact-sb-n { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.fact-sb-l { font-size: 11px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }
/* ──;─ INTRO SPLIT ─────────────────────────── */
.fact-split { display: grid; grid-template-columns: 1fr 1fr;padding:100px var(--pad); }
.fact-split-photo img { width: 100%;  transition: transform .9s cubic-bezier(.25,.46,.45,.94); }
.fact-split-photo:hover img { transform: scale(1.03); }
.fact-split-text {padding:100px var(--pad);     padding-top: 0;
    padding-bottom: 0;padding-left:0;display: flex; flex-direction: column; justify-content: center; }


/* ─── FACILITIES ─────────────────────────── */
.fac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.fac-card { position: relative; overflow: hidden; min-height: 720px; background: var(--ink); }
.fac-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; position: absolute; inset: 0; opacity: .65; transition: opacity .5s, transform .9s cubic-bezier(.25,.46,.45,.94); }
.fac-card:hover img { opacity: .78; transform: scale(1.03); }
.fac-body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 44px; background: linear-gradient(to top, rgba(18,16,9,.88) 0%, rgba(18,16,9,.1) 60%, transparent 100%); }
.fac-country { font-size: 9px; font-weight: 400; letter-spacing: .42em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.fac-name { font-family: var(--serif); font-size: clamp(26px,3vw,42px); font-style: italic; font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.fac-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.fac-tag { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: 3px 10px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.7);font-family:"Manrope", sans-serif !important; }
.fac-cert { font-size: 12px; color: rgba(255,255,255,.48); display: flex; align-items: center; gap: 8px; }
.fac-cert svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.4); fill: none; stroke-width: 1.5; flex-shrink: 0; }

.fac-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;               /* Keep this same across all collages */
}

.fac-card img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
    display:block;
}

.fac-body{
    padding:24px;
}
/* ─── VIDEO SECTION ──────────────────────── */
.fact-video-section { padding: 100px var(--pad); background: var(--ink); }
.fact-video-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; max-width: 1320px; margin: 52px auto 0; }

.fact-video-slot { position: relative; background: #0e0f14; aspect-ratio: 16/9; }


.fact-video-slot h2{
    position:absolute;
    bottom:-38px;
    left:0;
    width:100%;
    text-align:center;
    color:#fff;
    font-size:20px;
    z-index:2;
    margin:0;
}
/* The actual video element — hidden until a file is dropped in */
.fact-video-slot video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Placeholder shown when no video is loaded */
.fact-video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; cursor: pointer; border: 1px dashed rgba(255,255,255,.15); transition: border-color .25s, background .25s; }
.fact-video-slot:hover .fact-video-placeholder { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.03); }
.fact-video-placeholder.hidden { display: none; }

.fact-play-ring { width: 64px; height: 64px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .25s, transform .3s; }
.fact-video-slot:hover .fact-play-ring { border-color: rgba(255,255,255,.7); transform: scale(1.08); }
.fact-play-ring svg { width: 22px; height: 22px; fill: rgba(255,255,255,.6); margin-left: 3px; }

.fact-video-label { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.4); text-align: center; padding: 0 20px; }

.fact-video-upload-hint { font-family: var(--sans); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.2); }

/* Custom file input overlay */
.fact-video-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

/* ─── ETHICS ROW ─────────────────────────── */
.ethics-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 1600px; margin: 0 auto; }
.eth-card { background: var(--bg); padding: 40px 36px; transition: background .22s; }
.eth-card:hover { background: var(--white); }
.eth-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; margin-bottom: 20px; }
.eth-icon svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.4; }
.eth-t { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--ink); margin-bottom: 10px; }
.eth-b { font-size: 14px; color: var(--ink2); line-height: 1.82; }

/* ─── QUOTE ──────────────────────────────── */
.fact-quote { background: var(--ink); padding: 96px var(--pad); text-align: center; }
.fact-q-mark { font-family: var(--serif); font-size: 96px; line-height: .5; color: rgba(255,255,255,.07); margin-bottom: -6px; display: block; }
.fact-q-text { font-family: var(--serif); font-size: clamp(22px,3vw,42px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.4; max-width: 820px; margin: 0 auto 22px; }
.fact-q-attr { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ─── ENQUIRY FORM ───────────────────────── */
/* ─── ENQUIRY FORM ───────────────────────── */
.fact-form-wrap { max-width: 800px; margin: 0 auto; }
.fact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.fact-full { grid-column: 1/-1; }
.filed-fl { display: filed-flex; flex-direction: column; gap: 8px; }
.filed-fl label { font-size: 14px; font-weight: 400; font-family:"Jost", sans-serif !important;  color: var(--ink3); }
.filed-fl input, .filed-fl select, .filed-fl textarea { background: transparent;    font-family: "Jost", sans-serif !important; border: none; border-bottom: 1px solid var(--line); padding: 11px 0;font-size: 14px; color: var(--ink); outline: none; transition: border-color .25s; width: 100%; -webkit-appearance: none; }
.filed-fl input::placeholder, .filed-fl textarea::placeholder { color: rgba(90,83,76,.3); }
.filed-fl input:focus, .filed-fl select:focus, .filed-fl textarea:focus { border-bottom-color: var(--ink); }
.filed-fl textarea { resize: vertical; min-height: 110px; }
.filed-fl select { cursor: pointer; background: transparent; }
.filed-submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 40px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; background: var(--ink); color: #fff; border: none; cursor: pointer; transition: background .22s; }
.filed-submit:hover { background: var(--ink2); }


/* ─── CTA BAND ───────────────────────────── */
.filed-cta-band { background: var(--ink); padding: 100px var(--pad); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.filed-cta-t { font-family: var(--serif); font-size: clamp(26px,3.5vw,48px); font-weight: 300; font-style: italic; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.filed-cta-s { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; }
.filed-cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.filed-cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; cursor: pointer; text-decoration: none; transition: background .22s, color .22s, border-color .22s; }
.filed-cta-lt { background: #fff; color: var(--ink); border: 1px solid #fff; }
.filed-cta-lt:hover { background: var(--bg); border-color: var(--bg); }
.filed-cta-ol { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.filed-cta-ol:hover { color: #fff; border-color: rgba(255,255,255,.55); }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 20px; }
.fact-hero-brand img
{
width:100%;
}
  /* Adjust fact-hero top margin since utility bar is hidden */
  .fact-hero { margin-top: var(--nav-main-h);height:75vh; }

  /* Show mobile drawer */
  .mobile-drawer { display: block; }
.fact-hero { margin-top: var(--mh); grid-template-columns: 1fr; height: auto; }
  .fact-hero-left {             padding: 45px 20px;
        min-height: 100vw; }
  .fact-hero-right { height: 75vw; }
  .fact-stats-band { grid-template-columns: 1fr 1fr; }
  .fact-split { grid-template-columns: 1fr; }
  .fact-split-photo { min-height: 56vw; }
  .fac-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .fact-video-grid { grid-template-columns: 1fr; gap: 8px; }
  .ethics-row { grid-template-columns: 1fr 1fr; }
  .fact-form-grid { grid-template-columns: 1fr; }
  .fact-full { grid-column: 1; }
  .filed-cta-band { grid-template-columns: 1fr; gap: 32px; }
  .filed-cta-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .svc-grid { grid-template-columns: 1fr; }
  .ethics-row { grid-template-columns: 1fr; }
  .fact-stats-band { grid-template-columns: 1fr 1fr; }
  .fact-hero-sub { display: none; }

	.fact-split-text
	{
	padding:0px;
	}
}

.showroom-section{
    padding:100px 0;
    background:#f8f8f8;
}

.showroom-section .container{
    max-width:1600px;
    margin:auto;
    padding:0 0px;
}

.show-section-title{
    text-align:center;
    margin-bottom:50px;
}

.show-section-title span{
    display:block;
    letter-spacing:4px;
    font-size:12px;
    text-transform:uppercase;
    color:#888;
    margin-bottom:12px;
}

.show-section-title h2{
    font-size:60px;
    font-weight:300;
    color:#222;
    margin:0;
}

/* Tabs */

.showroom-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.show-tab-btn{
    border:none;
    background:#fff;
    border:1px solid #ddd;
    padding:14px 35px;
    cursor:pointer;
	font-family:"Manrope", sans-serif !important;
    text-transform:uppercase;
    letter-spacing:2px;
    transition:.3s;
}

.show-tab-btn.active{
    background:#111;
    color:#fff;
    border-color:#111;
}

/* Gallery */

.showroom-content{
    display:none;
}

.showroom-content.active{
    display:block;
}

.show-tab-btn.active{
    background:#111;
    color:#fff;
}
.gallery-grid img,
.gallery-grid video {
    width:100%;
    display:block;
    object-fit:cover;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

.gallery-item{
    overflow:hidden;
    height:550px;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:all .6s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item:after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
    transition:.4s;
}

.gallery-item:hover:after{
    background:rgba(0,0,0,.15);
}

/* Mobile */

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-item{
        height:300px;
    }

    .show-section-title h2{
        font-size:42px;
    }
}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        height:280px;
    }

    .showroom-tabs{
        flex-direction:column;
    }
}


/* ─── stock-hero ────────────────────────────────── */
.stock-hero {
  margin-top: 104px;
  position: relative; min-height: 75vh;
  overflow: hidden; background: var(--ink); display: flex; align-items: flex-end;
}
.stock-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; opacity: .62; animation: zoom 12s ease-out both; }
@keyframes zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.stock-hero-inner {    position: relative;
    z-index: 2;
    color: #fff;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px);
    width: 100%; }
.stock-hero-eye { font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.stock-hero-title {    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(44px, 12vw, 88px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom:0px;
	color:#fff;}
.stock-hero-sub { font-size: 15px; color: rgba(255,255,255,.6); max-width: 480px; line-height: 1.75; margin-bottom: 30px; }
.stock-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.stock-h-btn { display: inline-flex; align-items: center; padding: 13px 30px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: background .22s, color .22s; text-decoration: none; border: 1px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.stock-h-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }
.stock-h-btn-fill { background: #fff; color: var(--ink); border-color: #fff; }
.stock-h-btn-fill:hover { background: var(--bg); border-color: var(--bg); }

/* ─── STATS BAND ──────────────────────────── */
.stock-stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stock-sb { background: var(--white); padding: 44px 36px; text-align: center; transition: background .25s; }
.stock-sb:hover { background: var(--bg); }
.stock-sb-n { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.stock-sb-l { font-size: 11px; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; color: var(--ink3); }

/* ─── WHY STOCK ───────────────────────────── */
.stock-why { display: grid; grid-template-columns: 1fr 1fr; }
.stock-why-photo { overflow: hidden; min-height: 560px; background: var(--bg2); }
.stock-why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .9s cubic-bezier(.25,.46,.45,.94); }
.stock-why-photo:hover img { transform: scale(1.03); }
.stock-why-text { background: var(--white); padding: clamp(52px,7vw,96px) clamp(36px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }

/* ─── SHARED TEXT HELPERS ─────────────────── */
.stock-eyebrow { font-size: 9px; font-weight: 400; letter-spacing: .44em; text-transform: uppercase; color: var(--ink3); margin-bottom: 14px; display: block; }
.stock-eyebrow-lt { color: rgba(255,255,255,.4); }
.h2 { font-family: var(--serif); font-size: clamp(28px,3.5vw,48px); text-transform:uppercase; font-weight: 400;  color: var(--ink); line-height: 1.1; margin-bottom: 18px; }
.stock-h2-lt { color: #fff; }
.body { font-size: 15px; color: var(--ink2); line-height: 1.85; margin-bottom: 14px; max-width: 540px; }
.body-lt { color: rgba(255,255,255,.55); }
.stock-link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 10px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: gap .22s, opacity .22s; width: fit-content; }
.stock-link-arrow:hover { gap: 14px; opacity: .6; }

/* ─── SECTION ─────────────────────────────── */
.stock-sec { padding: 60px var(--pad); }
.stock-sec-white { background: var(--white); }
.stock-sec-parch { background: var(--bg); }
.stock-sec-dark  { background: var(--ink); }
.stock-sec-hd { text-align: center; margin-bottom: 52px; }
.stock-sec-hd .h2 { margin-bottom: 0; }

/* ─── BENEFIT CARDS ───────────────────────── */
.stock-ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); max-width: 1320px; margin: 0 auto; }
.stock-ben-card { background: var(--white); padding: 44px 40px; transition: background .25s; }
.stock-ben-card:hover { background: var(--bg); }
.stock-ben-num { font-family: var(--serif); font-size: 48px;  color: rgba(224,216,208,.8); line-height: 1; margin-bottom: 18px; }
.stock-ben-title { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.stock-ben-body { font-size: 14px; color: var(--ink2); line-height: 1.85; }


/* ══════════════════════════════════════════════
   BRAND LOGO STRIP  (the partners scroll — screenshot 1 bottom)
   Names styled as elegant wordmarks
══════════════════════════════════════════════ */

.stock-brand-strip{
    width:100%;
    overflow:hidden;
    background:#fff;
    padding:15px 0;
    position:relative;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.stock-brand-strip-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:brandScroll 28s linear infinite;
}

/* Pause on hover */

.stock-brand-strip:hover .stock-brand-strip-track{
    animation-play-state:paused;
}

/* LOGO ITEM */

.stock-brand-name{
    flex:0 0 auto;
    padding:0 25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* BIGGER LOGOS */

.stock-brand-name img{
    width:90px;  
    object-fit:contain;
    transition:.4s ease;
    opacity:.8;
    filter:grayscale(100%);
}

/* HOVER EFFECT */

.stock-brand-name:hover img{
    transform:scale(1.08);
    opacity:1;
    filter:grayscale(0%);
}

/* SMOOTH INFINITE LOOP */

@keyframes brandScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* MOBILE */

@media(max-width:768px){

    .stock-brand-strip{
        padding:20px 0;
    }

    .stock-brand-name{
        padding:0 25px;
    }

    .stock-brand-name img{
        width:90px;
    }

}
/* ─── FILTER BUTTONS ─────────────────────── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.f-btn { padding: 8px 20px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--line); color: var(--ink2); background: transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.f-btn:hover, .f-btn.on { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── STOCKIST GRID ───────────────────────── */
.s-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.s-card { background: var(--white); padding: 30px 26px; display: flex; flex-direction: column; gap: 11px; transition: background .22s; cursor: default; }
.s-card:hover { background: var(--bg); }
.s-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge { font-family: var(--sans); font-size: 8px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; white-space: nowrap; }
.badge-region { border: 1px solid var(--line); color: var(--ink3); }
.badge-au { border-color: rgba(0,100,220,.2); color: rgba(0,100,220,.75); }
.badge-us { border-color: rgba(200,30,30,.2); color: rgba(200,30,30,.75); }
.badge-eu { border-color: rgba(0,140,90,.2); color: rgba(0,140,90,.75); }
.badge-ap { border-color: rgba(180,100,0,.2); color: rgba(180,100,0,.75); }
.badge-ru { border-color: rgba(100,100,110,.2); color: rgba(100,100,110,.75); }
.badge-la { border-color: rgba(150,30,170,.2); color: rgba(150,30,170,.75); }
.badge-gl { border-color: rgba(0,0,0,.15); color: var(--ink3); }

/* NSW */
.badge-au{
    border-color: rgba(0, 100, 220, .20);
    color: rgba(0, 100, 220, .85);
}

/* VIC */
.badge-vic{
        border-color: rgb(142 68 173 / 53%);
    color: rgba(142, 68, 173, .85);
}

/* QLD */
.badge-qld{
        border-color: rgb(243 156 18 / 39%);
    color: rgba(243, 156, 18, .85);
}

/* SA */
.badge-sa{
    border-color: rgba(220, 53, 69, .20);
    color: rgba(220, 53, 69, .85);
}

/* WA */
.badge-wa{
       border-color: rgb(0 150 136 / 39%);
    color: rgba(0, 150, 136, .85);
}

/* TAS */
.badge-tas{
          border-color: rgb(241 44 193 / 30%);
    color: rgb(241 44 193 / 85%);
}

/* International */
.badge-international{
    border-color: rgba(46, 125, 50, .20);
    color: rgba(46, 125, 50, .85);
}
.badge-type { background: var(--bg); color: var(--ink3); }
.s-name { font-family: var(--serif);text-transform:uppercase; font-size: 21px;font-weight:500;  color: var(--ink); line-height: 1.1; }
.s-loc { font-size: 15px; color: var(--ink3); display: flex; gap: 8px; }
.s-loc svg { width: 11px; height: 11px; stroke: var(--ink3); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.s-visit {    font-family: "Manrope", sans-serif !important; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; font-size: 10px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: gap .2s, border-color .2s; width: fit-content; }
.s-visit:hover { gap: 10px; border-color: var(--ink); }
.s-visit svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2; }


.s-card[data-r="international"] .s-name{
line-height:2.5 !important;
	
}
.s-card[data-r="international"] .s-visit {
    display: block;
    margin-top: 10px !important;
}
/* ─── REGIONAL MAP SPLIT ─────────────────── */
.map-split { display: grid; grid-template-columns: 1fr 1fr; }
.map-photo { overflow: hidden; min-height: 560px; background: var(--bg2); }
.map-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.map-info { padding: 40px 20px; display: flex; flex-direction: column; justify-content: center; background: var(--bg); }
.region-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.r-row { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.r-row:first-child { border-top: 1px solid var(--line); }
.r-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.dot-au { background: rgba(0,100,220,.6); }
.dot-us { background: rgba(200,30,30,.6); }
.dot-eu { background: rgba(0,140,90,.6); }
.dot-ap { background: rgba(180,100,0,.6); }
.dot-la { background: rgba(150,30,170,.6); }
.dot-ru { background: rgba(100,100,110,.6); }
.dot-gl { background: rgba(30,30,30,.4); }
.r-title { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); margin-bottom: 5px; }
.r-names { font-size: 13px; color: var(--ink2); line-height: 1.65; }

/* ─── PROCESS STEPS ───────────────────────── */
.stock-steps { display: flex; flex-direction: column; max-width: 780px; margin: 44px auto 0; }
.stock-step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); align-items: start; }
.stock-step:last-child { border-bottom: none; }
.stock-step-n { font-family: var(--serif); font-size: 38px;  color: rgba(224,216,208,.9); line-height: 1; }
.stock-step-t { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.stock-step-b { font-size: 14px; color: var(--ink2); line-height: 1.85; }

/* ─── FORM ────────────────────────────────── */
.stock-form-wrap { max-width: 860px; margin: 0 auto; }
.stock-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; }
.stock-full { grid-column: 1/-1; }
.stock-fl { display: flex; flex-direction: column; gap: 8px; }
.stock-fl label { font-size: 9px; font-weight: 400; letter-spacing: .32em; text-transform: uppercase; color: var(--ink3); }
.stock-fl input, .stock-fl select, .stock-fl textarea { background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 11px 0; font-family: var(--sans); font-size: 15px; color: var(--ink); outline: none; transition: border-color .25s; width: 100%; -webkit-appearance: none; }
.stock-fl input::placeholder, .stock-fl textarea::placeholder { color: rgba(90,83,76,.3); }
.stock-fl input:focus, .stock-fl select:focus, .stock-fl textarea:focus { border-bottom-color: var(--ink); }
.stock-fl textarea { resize: vertical; min-height: 120px; }
.stock-fl select { cursor: pointer; background: transparent; }
.stock-submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 40px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; background: var(--ink); color: #fff; border: none; cursor: pointer; transition: background .22s; }
.stock-submit:hover { background: var(--ink2); }

/* ─── CTA BAND ────────────────────────────── */
.stock-cta-band { background: var(--ink); padding: 100px var(--pad); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 52px; }
.stock-cta-title { font-family: var(--serif); font-size: clamp(26px,3.5vw,50px); font-weight: 300;  color: #fff; line-height: 1.15; margin-bottom: 10px; }
.stock-cta-sub { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.75; }
.stock-cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.stock-cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 36px; font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; white-space: nowrap; cursor: pointer; text-decoration: none; transition: background .22s, color .22s, border-color .22s; }
.stock-cta-lt { background: #fff; color: var(--ink); border: 1px solid #fff; }
.stock-cta-lt:hover { background: var(--bg); border-color: var(--bg); }
.stock-cta-ol { background: transparent; color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.22); }
.stock-cta-ol:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad: 20px; }
.stock-hero-brand img
{
width:100%;
}


  /* Adjust stock-hero top margin since utility bar is hidden */
  .stock-hero { margin-top: var(--nav-main-h); height:75vh; }

.stock-hero { margin-top: var(--mh); }
  .stock-stats-band { grid-template-columns: repeat(2,1fr); }
  .stock-why { grid-template-columns: 1fr; }
  .stock-why-photo { min-height: 56vw; }
  .stock-ben-grid { grid-template-columns: 1fr 1fr; }
  .s-grid { grid-template-columns: repeat(2,1fr); }
  .map-split { grid-template-columns: 1fr; }
  .map-photo { min-height: 56vw; }
  .stock-form-grid { grid-template-columns: 1fr; }
  .stock-full { grid-column: 1; }
  .stock-cta-band { grid-template-columns: 1fr; gap: 32px; }
  .stock-cta-btns { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .stock-ben-grid { grid-template-columns: 1fr; }
  .s-grid { grid-template-columns: 1fr; }
  .stock-hero-sub { display: none; }
   .fact-video-slot video
   {
	   margin-bottom: 20px;
   }
   .fact-video-slot h2
   {
	   bottom:0;
   }
   .fact-hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 35px;
   }
}



.terms-section{
    
    margin:0;
}

.terms-section h4{
    margin-bottom:10px;
    font-size:24px;
    font-weight:700;
    color:#222;
}

.terms-section p{
    margin-bottom:20px;
	font-size:15px;
    color:#666;
}

.terms-list{
    list-style:none;
    padding:0;
    margin:0;
}

.terms-list li{
    position: relative;
    padding: 1px 15px 4px 15px;
    margin-bottom: 12px;
    border-radius:6px;
    line-height:1.7;
	font-size:15px;
    color:#444;
	font-family: "Jost", sans-serif;
}

.terms-list li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: -3px;
    color: #b29300;
    font-size: 22px;
    font-weight:bold;
}
.why-luvalot-theme {
    padding: 100px 0;
    background: #f8f6f3;
}

.why-section-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.why-section-header span {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    color: #7a5b52;
    font-weight: 600;
    margin-bottom: 20px;
}



.why-section-header p {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

.why-list {
    max-width: 950px;
    margin: auto;
    border-top: 1px solid #ddd;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 0px;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.why-item span {
    min-width: 60px;
    font-size: 15px;
    color: #999;
    letter-spacing: 2px;
}

.why-item h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: #222;
    transition: 0.3s;
	font-family:"Jost", sans-serif;
}

.why-item:hover h4 {
    color: #7a5b52;
    transform: translateX(10px);
}

.certification-logos {
	    max-width: 950px;
    margin: auto;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.certification-logos img {
    max-height: 75px;
    opacity: 0.75;
    transition: 0.3s;
}

.certification-logos img:hover {
    opacity: 1;
    transform: translateY(-5px);
}
.trust-p{
	    font-size: 18px;
    line-height: 1.9;
    color: #666;
	text-align: center;
    max-width: 1000px;
    margin: 30px auto 0 auto;
}

.hero-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.blog-content2 h3 a{
	font-family:"Cormorant Garamond", serif !important;
	
    font-weight: 500 !important;
    font-size: 20px !important;
}
.blog-content2 a {
    color: #222;
	
        font-size: 12px !important;
    font-weight: 400 !important;
	    font-family: "Manrope", sans-serif;
}
.content p, .content li
{
	    font-family: "Jost", sans-serif;
		font-size: 15px !important;
    font-weight: 300 !important;
	
    color: #18160F !important;
}
.blog-content2 p {
    color: #18160F !important;
    font-size: 15px !important;
    font-weight: 300 !important;
}
.collections-section{
	   /* padding: 100px var(--pad) !important;*/
}
.showroom-section
{
	    padding: 100px var(--pad) !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
}
.blog-container2
{
	padding: 100px var(--pad) !important;
	max-width: 100% !important;
  width: 100%;
}
.container
{
	max-width:1600px !important;
}
.content{
	max-width:1600px !important;
}
.related {
    padding: 0px 0!important;
    padding-bottom: 0;
}
.fashion-grid
{
	gap:20px !important;
}
.blog-grid2
{
	gap:20px !important;
}
.desktop-view1
{
	display:block;
}
.mobile-view1
{
	display:none;
}
@media (max-width: 768px) {
	.mobile-view1
{
	display:block;
}
.desktop-view1
{
	display:none;
}

.arrivals
{
	padding-top:40px;
	padding-bottom:40px;
}
.campaigns-section
{
	padding-top:40px;
	padding-bottom:40px;
}
footer {
    
    padding: 40px var(--pad) 25px;
}
.about-intro1, .fact-sec, .fact-video-section, .collections-section
{
	padding-top:40px;
	padding-bottom:40px;
}
.about-sec, .team, .why-luvalot-theme, .about-cta-block, .sec, .fact-split, .showroom-section, .blog-container2
{
	padding-top:40px !important;
	padding-bottom:40px !important;
}
    .why-section-header h2 {
        font-size: 40px;
    }
.collections-section
{
	padding-top:40px !important;
	padding-bottom:40px !important;
}

    .why-item {
        gap: 0px;
    }
.why-list
{
	margin:0 15px;
}
.why-item
{
	padding:15px 0px;
}
.why-section-header {
  margin: 0 auto 30px;
  text-align: center;
}

    .certification-logos {
        gap: 25px;
    }

    .certification-logos img {
        max-height: 45px;
    }
}


.shop{display:grid;grid-template-columns:250px 1fr;gap:40px;padding:40px 5%}
.sidebar input{width:100%;padding:12px;margin:15px 0;border:1px solid #ccc; font-size: 14px;
    font-weight: 400;
    font-family: "Jost", sans-serif !important;}
.sidebar ul{list-style:none}
.sidebar li{padding:10px 0;border-bottom:1px solid #eee;cursor:pointer;    font-size: 14px;
    font-weight: 400;
    font-family: "Jost", sans-serif !important;}
.title{display:flex;justify-content:space-between;align-items:end;margin-bottom:25px}
.products{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;}
.card img{width:100%;aspect-ratio:2/3;object-fit:cover;display:block;}
.card:hover img{transform:scale(1.05);height:auto;}
.card h4{margin-top:12px;font-size:16px}
.card span{color:#777;font-size:14px}
@media(max-width:992px){
.shop{grid-template-columns:1fr}
.products{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
.products{grid-template-columns:1fr}
.topbar{flex-direction:column;gap:15px}
}
.filter-box{
    border:1px solid #d8d8d8;
    padding:20px;
    background:#fff;
	
    margin-bottom:18px;
}

.filter-box h3{
    font-size:16px;
    font-weight:400;
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    padding-bottom:10px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
       font-size: 14px;
    font-weight: 400;
    font-family: "Jost", sans-serif !important;
    margin-bottom:8px;
    color:#444;
}

.form-group input{

    width:100%;
    height:42px;
    padding:10px;
    border:1px solid #ddd;
        font-size: 14px;
    font-weight: 400;
    font-family: "Jost", sans-serif !important;
    outline:none;
}

#filterBtn{
    width:100%;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .22s;
}

#filterBtn:hover{

    background:#222;
}
.shop .title h1
{
	font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 48px);
    text-transform: uppercase;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 18px;
}
.sidebar h3{
	    font-weight: 500;
    font-size: 20px;
}
.release-sidebar{
    background:#fff;
   
}

.release-sidebar h3{
    font-size:18px;
    font-weight:400;
    margin-bottom:20px;
    padding-bottom:12px;
    border-bottom:1px solid #eee;
}

.release-group{
    margin-bottom:12px;
}

.release-title{

    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
font-family: "Jost", sans-serif !important;
    border:none;
    background:none;
    cursor:pointer;

    font-size:16px;
    font-weight:400;

    padding:10px 0;

    color:#222;
}

.release-title span{

    font-size:18px;
    transition:.3s;
}

.release-list{

    list-style:none;
    padding-left:12px;
    display:none;
}

.release-group.active .release-list{

    display:block;
}

.release-group.active .release-title span{

    transform:rotate(45deg);
}

.release-list li{

    margin:8px 0;
}

.release-list a{

    text-decoration:none;
    color:#555;
    font-size:14px;
    transition:.3s;
    line-height:1.6;
}

.release-list a:hover{

    color:#000;
    padding-left:5px;
}
.release-link{

    display:block;
    padding:8px 0;
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.release-link:hover{

    color:#000;
}

.release-link.active{

    color:#000;
    font-weight:600;
}

.product-card{
overflow: hidden;
}
/* Tablet (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
   .hero {
    margin-top: var(--nav-main-h);
    height: 4vh;
    border-bottom: none;
    min-height: calc(40vh - var(--nav-total));
  }
  .about-hero, .stock-hero, .fact-hero, .campaign-hero, .contact-hero {
  position: relative;
  min-height: 40vh;
  height: 40vh;
  }
  .about, .arrivals, .campaigns-section, .showroom-section, .blog-container2, footer, .about-intro1, .about-sec, .team, .why-luvalot-theme, .sec, .fact-split, .fact-sec, .contact-grid, .quote, .about-quote {
  padding: 70px var(--pad) !important;
}
.about-intro1-text{
  padding: 40px 0px;
}
 .mission-text 
 {
	 padding: 40px var(--pad);
 }
 .form-col {
  background: var(--white);
  padding: 0px;
 }
}

@media (min-width:768px) and (max-width:1366px) {
   .hero {
    margin-top: var(--nav-main-h);
    height: 4vh;
    border-bottom: none;
    min-height: calc(40vh - var(--nav-total));
  }
  .about-hero, .stock-hero, .fact-hero, .campaign-hero, .contact-hero {
  position: relative;
  min-height: 40vh;
  height: 40vh;
  }
  .about, .arrivals, .campaigns-section, .showroom-section, .blog-container2, footer, .about-intro1, .about-sec, .team, .why-luvalot-theme, .sec, .fact-split, .fact-sec, .contact-grid, .quote, .about-quote {
  padding: 70px var(--pad) !important;
}
.about-intro1-text{
  padding: 40px 0px;
}
 .mission-text 
 {
	 padding: 40px var(--pad);
 }
 .form-col {
  background: var(--white);
  padding: 0px;
 }
}