/* ==========================================================================
   SHOW N SHINE — style.css
   White theme, glass-panel components. Section index:
   1. Tokens & base   2. Background pattern   3. Header/Nav   4. Hero
   5. Section shared  6. About   8. Brands
   9. Awards   10. Reviews carousel   10b. Brand logo carousel
   11. Contact   12. Footer   13. Responsive
   ========================================================================== */

/* 1. TOKENS & BASE ------------------------------------------------------- */
:root{
  --bg: #F6F6F4;
  --surface: #FFFFFF;
  --glass: rgba(255,255,255,0.62);
  --glass-strong: rgba(255,255,255,0.78);
  --glass-border: rgba(20,23,27,0.08);
  --ink: #1B1F25;
  --ink-soft: #5B636B;
  --ink-faint: #8B929A;
  --line: rgba(20,23,27,0.09);
  --orange: #f48829;
  --orange-dim: #C6501C;
  --orange-wash: rgba(232,103,46,0.10);
  --gold: #B8860B;
  --radius: 16px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --shadow: 0 10px 34px rgba(20,23,27,0.07), 0 2px 8px rgba(20,23,27,0.04);
  --shadow-lift: 0 20px 46px rgba(20,23,27,0.12), 0 4px 12px rgba(20,23,27,0.06);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  position:relative;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
h1,h2,h3,.eyebrow{font-family:'Oswald', sans-serif;}
.mono{font-family:'IBM Plex Mono', monospace;}
svg{display:block;}
::selection{background:var(--orange); color:#fff;}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--orange); outline-offset:2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* Glass panel utility */
.glass{
  background:var(--glass);
  backdrop-filter:blur(18px) saturate(160%);
  -webkit-backdrop-filter:blur(18px) saturate(160%);
  border:1px solid var(--glass-border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* 2. BACKGROUND PATTERN --------------------------------------------------- */
.bg-field{
  position:fixed; inset:0; z-index:-1; overflow:hidden; pointer-events:none;
}
.bg-field::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(rgba(20,23,27,0.06) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 85%);
}
.blob{position:absolute; border-radius:50%; filter:blur(70px); opacity:0.35;}
.blob-1{width:520px; height:520px; top:-160px; left:-120px; background:radial-gradient(circle, var(--orange), transparent 70%);}
.blob-2{width:460px; height:460px; top:60px; right:-160px; background:radial-gradient(circle, var(--gold), transparent 70%); opacity:0.22;}
.blob-3{width:400px; height:400px; top:640px; left:38%; background:radial-gradient(circle, #6D9BE8, transparent 70%); opacity:0.14;}

/* Divider */
.hazard{
  height:5px;
  background: repeating-linear-gradient(45deg, var(--orange) 0 14px, transparent 14px 28px);
  opacity:0.7;
}

/* 3. HEADER / NAV ---------------------------------------------------------*/
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.66);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-bottom:1px solid var(--glass-border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 28px;
  max-width:var(--maxw); margin:0 auto;
  min-height:70px;
  gap:20px;
}
.platebrand{display:flex; align-items:center; gap:10px;}
.header-logo{
  height:60px; width:auto; object-fit:contain; display:block;
}
nav ul{display:flex; gap:34px; list-style:none;}
nav a{
  font-family:'Oswald', sans-serif;
  font-size:14px; letter-spacing:1.5px; text-transform:uppercase; font-weight:500;
  color:var(--ink-soft);
  position:relative; padding-bottom:4px;
  transition:color .2s;
}
nav a:hover, nav a:focus-visible{color:var(--ink);}
nav a::after{
  content:""; position:absolute; left:0; bottom:0;
  width:0; height:2px; background:var(--orange);
  transition:width .25s;
}
nav a:hover::after{width:100%;}
.navcall{
  font-family:'Oswald', sans-serif;
  font-size:13px; letter-spacing:1.5px; text-transform:uppercase; font-weight:600;
  color:#fff;
  background:var(--orange);
  padding:11px 20px;
  border-radius:999px;
  white-space:nowrap;
  transition:background .2s, transform .2s;
  box-shadow:0 8px 20px rgba(232,103,46,0.28);
}
.navcall:hover{background:var(--orange-dim); transform:translateY(-1px);}
.menu-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;}
.menu-toggle span{width:24px; height:2px; background:var(--ink); border-radius:2px;}
nav ul.open{
  display:flex; flex-direction:column; gap:0;
  position:absolute; top:100%; left:0; right:0;
  background:white; backdrop-filter:blur(16px);
  border-top:1px solid var(--glass-border);
  padding:8px 28px 18px;
}
nav ul.open li{border-bottom:1px solid var(--line);}
nav ul.open a{display:block; padding:15px 0;}

/* 4. HERO — full-width auto-playing banner slider ------------------------ */
.hero{
  padding:0;
  margin-top:91px; /* clears the fixed header (70px min-height + 10px*2 padding + border) */
  position:relative;
}
.hero-banner{
  position:relative;
  width:100%;
  overflow:hidden;
  aspect-ratio:16/7;      /* desktop: wide, cinematic */
  min-height:280px;
  max-height:640px;
  background:var(--surface);
}
.hero-banner .banner-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transform:scale(1.08);
  transition:opacity 1s ease, transform 6s ease, visibility 0s linear 1s;
  z-index:1;
}
.hero-banner .banner-slide.active{
  opacity:1; visibility:visible;
  transform:scale(1);
  transition:opacity 1s ease, transform 6s ease, visibility 0s linear 0s;
  z-index:2;
}
.hero-banner .banner-slide img{width:100%; height:100%; object-fit:cover; display:block;}

.hero-banner .banner-dots{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  display:flex; gap:8px; z-index:3;
}
.hero-banner .banner-dots button{
  width:8px; height:8px; border-radius:50%; padding:0; border:none; cursor:pointer;
  background:rgba(255,255,255,0.55);
  box-shadow:0 1px 3px rgba(0,0,0,0.25);
  transition:background .25s, width .25s;
}
.hero-banner .banner-dots button.active{
  background:var(--orange); width:22px; border-radius:5px;
}

.hero-banner .banner-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:3;
  width:44px; height:44px; border-radius:50%; border:none; cursor:pointer;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(20,23,27,0.18);
  transition:background .2s, transform .2s;
}
.hero-banner .banner-arrow:hover{background:#fff; transform:translateY(-50%) scale(1.06);}
.hero-banner .banner-arrow svg{width:20px; height:20px; stroke:var(--ink); fill:none; stroke-width:2;}
.hero-banner .banner-prev{left:18px;}
.hero-banner .banner-next{right:18px;}

@media (prefers-reduced-motion: reduce){
  .hero-banner .banner-slide{transition:opacity .3s ease; transform:none !important;}
}

/* Responsive banner heights/proportions */
@media (max-width:1024px){
  .hero-banner{aspect-ratio:16/9;}
}
@media (max-width:767px){
  .hero{margin-top:80px;}
  .hero-banner{aspect-ratio:4/5; max-height:560px;}
  .hero-banner .banner-arrow{width:36px; height:36px;}
  .hero-banner .banner-arrow svg{width:16px; height:16px;}
  .hero-banner .banner-prev{left:10px;}
  .hero-banner .banner-next{right:10px;}
}
@media (max-width:420px){
  .hero-banner{aspect-ratio:3/4;}
}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12.5px; letter-spacing:3px; text-transform:uppercase;
  color:var(--orange-dim); font-weight:600; margin-bottom:22px;
}
.eyebrow::before{content:""; width:26px; height:2px; background:var(--orange);}
.hero h1{
  font-size:clamp(32px, 2.5vw, 60px);
  font-weight:700; text-transform:uppercase; line-height:1.05; letter-spacing:0.3px;
  max-width:560px; color:var(--ink);
}
.hero h1 em{font-style:normal; color:var(--orange);}
.hero p.lede{margin-top:24px; max-width:560px; font-size:18px; color:black;}
.hero-ctas{margin-top:38px; display:flex; gap:16px; flex-wrap:wrap;}
.btn{
  font-family:'Oswald', sans-serif;
  font-size:14px; letter-spacing:1.5px; text-transform:uppercase; font-weight:600;
  padding:15px 28px; border-radius:999px; display:inline-block;
  transition:transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn-solid{background:var(--orange); color:#fff; box-shadow:0 10px 24px rgba(232,103,46,0.3);}
.btn-solid:hover{background:var(--orange-dim); transform:translateY(-2px);}
.btn-outline{border:1px solid var(--line); color:var(--ink); background:var(--glass-strong);}
.btn-outline:hover{border-color:var(--orange); color:var(--orange-dim); transform:translateY(-2px);}

.hero-stats{
  margin-top:42px; padding-top:26px;
  border-top:1px solid var(--line);
  display:flex; flex-wrap:wrap; gap:36px 44px;
}
.stat{padding:0; background:none; border:none; box-shadow:none;}
.stat .num{font-family:'Oswald', sans-serif; font-size:30px; font-weight:700; color:var(--orange-dim);}
.stat .num span{color:var(--orange);}
.stat .lab{
  font-size:12.5px; letter-spacing:1px; text-transform:uppercase;
  color:var(--ink-soft); margin-top:4px; font-weight:600;
}

/* 5. SECTION SHARED ------------------------------------------------------ */
section{padding:60px 0;}
.sec-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:30px; margin-bottom:52px; flex-wrap:wrap;
}
.sec-head h2{
  font-size:clamp(28px, 3.6vw, 44px); text-transform:uppercase; font-weight:700;
  letter-spacing:0.3px; color:var(--ink);
}
.sec-head .desc{max-width:420px; color:black; font-size:15px;}
.sec-tag{
  font-size:14px; letter-spacing:2px; font-weight: 700;
  text-transform:uppercase; color:var(--orange-dim); display:block;
}

/* 6. ABOUT ----------------------------------------------------------------*/
#about{
  position:relative;
  background:var(--surface);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:86px 0 92px;
  overflow:hidden;
}
#about::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}
#about::after{
  content:"";
  position:absolute; top:-120px; right:-140px; width:420px; height:420px;
  border-radius:50%; background:radial-gradient(circle, var(--orange-wash), transparent 72%);
  pointer-events:none;
}
.about-grid{display:grid; grid-template-columns:0.82fr 1fr; gap:64px; align-items:center; position:relative; z-index:1;}
.about-copy h2{
  font-size:clamp(26px,3.4vw,40px); text-transform:uppercase; font-weight:700;
  margin-bottom:20px; line-height:1.18; color:var(--ink);
}
.about-copy p{color:black; font-size:16px; margin-bottom:16px; max-width:520px;}
.about-copy .sig{margin-top:26px; font-family:'Oswald', sans-serif; font-size:16px; font-weight:600;}
.about-copy .sig span{
  display:block; font-family:'IBM Plex Mono', monospace; font-size:11px;
  color:var(--ink-soft); font-weight:400; letter-spacing:1px; text-transform:uppercase; margin-top:3px;
}
.about-art{
  position:relative;
  padding:10px; overflow:visible;
  max-width:420px;
}
.about-art img, .about-art svg{width:100%; height:100%; border-radius:calc(var(--radius) - 6px); object-fit:cover; display:block; aspect-ratio:4/5;}
.about-badge{
  position:absolute; bottom:-22px; left:-22px;
  background:var(--ink); color:#fff;
  border-radius:var(--radius-sm);
  padding:14px 22px;
  box-shadow:var(--shadow-lift);
  font-family:'Oswald', sans-serif;
}
.about-badge .num{font-size:28px; font-weight:700; color:var(--orange); line-height:1;}
.about-badge .lab{font-size:11px; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,0.7); margin-top:4px;}

/* Who-we-are highlight rows (distinct from hero-stats) */
.about-highlights{margin-top:30px; display:flex; flex-direction:column; gap:16px;}
.ah-item{display:flex; gap:14px; align-items:flex-start;}
.ah-icon{
  width:38px; height:38px; border-radius:50%; background:var(--orange-wash);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px;
}
.ah-icon svg{width:17px; height:17px; stroke:var(--orange-dim); fill:none; stroke-width:1.8;}
.ah-text h4{font-size:14px; text-transform:uppercase; letter-spacing:0.3px; font-weight:600; color:var(--ink); margin-bottom:3px;}
.ah-text p{font-size:13.5px; color:black; margin:0; max-width:420px;}

/* 8. BRANDS ---------------------------------------------------------------*/
.brand-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;}
.brand-card{overflow:hidden; transition:transform .25s, box-shadow .25s;}
.brand-card:hover{transform:translateY(-5px); box-shadow:var(--shadow-lift);}
.brand-banner{position:relative; aspect-ratio:16/10; overflow:hidden; border-radius:calc(var(--radius) - 4px) calc(var(--radius) - 4px) 0 0; margin:-1px -1px 0;}
.brand-banner svg{width:100%; height:100%;}
.brand-banner .catnum-badge{
  position:absolute; top:14px; left:14px;
  font-size:11px; letter-spacing:1px;
  color:white;
  background:#f48829; backdrop-filter:blur(4px);
  border:1px solid rgba(20,23,27,0.08);
  padding:4px 11px; border-radius:20px;
}
.brand-content{padding:22px 22px 24px;}
.brand-content h3{font-size:17px; letter-spacing:0.4px; text-transform:uppercase; font-weight:600; margin-bottom:14px; color:var(--ink);}
.chips{display:flex; flex-wrap:wrap; gap:8px;}
.chip{
  font-family:'Oswald', sans-serif; font-size:12.5px; font-weight:500; letter-spacing:0.3px;
  padding:8px 13px; background:rgba(20,23,27,0.045);
  border:1px solid var(--line); border-radius:999px; color:var(--ink-soft);
  transition:border-color .2s, color .2s, background .2s;
}
.chip:hover{border-color:var(--orange); color:var(--orange-dim); background:var(--orange-wash);}

/* 9. AWARDS -----------------------------------------------------------------*/
.award-panel{padding:56px; display:grid; grid-template-columns:300px 1fr; gap:56px; align-items:center;}
.medal{width:230px; margin:0 auto;}
.founder-photo{
  width:330px; aspect-ratio:1 / 1; margin:0 auto; border-radius:50%;
  overflow:hidden; border:4px solid #fff; box-shadow:var(--shadow);
  outline:1px solid rgba(184,134,11,0.35); outline-offset:6px;
}
.founder-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.award-copy h2{font-size:clamp(26px,3.4vw,38px); text-transform:uppercase; font-weight:700; margin-bottom:20px; line-height:1.2; color:var(--ink);}
.award-copy p{color:black; font-size:15.5px; max-width:520px; margin-bottom:14px;}
.award-copy .cert{
  margin-top:22px; display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(184,134,11,0.4); background:rgba(184,134,11,0.08);
  padding:11px 20px; border-radius:999px;
  font-family:'IBM Plex Mono', monospace; font-size:12px; letter-spacing:1px; color:var(--gold);
}

/* 10. REVIEWS CAROUSEL -----------------------------------------------------*/
.carousel{position:relative; max-width:1080px; margin:0 auto; --items:1;}
.carousel-track-wrap{overflow:hidden; border-radius:var(--radius);}
.carousel-track{display:flex; transition:transform .5s cubic-bezier(.65,0,.35,1);}
.review-slide{flex:0 0 calc(100% / var(--items)); box-sizing:border-box; padding:6px;}

@media (min-width:1024px){ .carousel{--items:3;} }
@media (min-width:768px) and (max-width:1023px){ .carousel{--items:2;} }
@media (max-width:767px){ .carousel{--items:1;} }

.review-card{padding:36px 40px; text-align:left;}
.review-card .stars{display:flex; gap:3px; justify-content:left; margin-bottom:20px;}
.review-card .stars svg{width:21px; height:21px; fill:#FFBF00; stroke:none;}
.review-card p.quote{color:var(--ink); font-size:17px; line-height:1.7; margin-bottom:26px; font-weight:400;}
.reviewer{display:flex; align-items:center; justify-content:left; gap:12px;}
.reviewer .avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--orange-wash); border:1px solid rgba(232,103,46,0.3);
  display:flex; align-items:center; justify-content:center;
  font-family:'Oswald', sans-serif; font-weight:600; color:var(--orange-dim); font-size:15px;
}
.reviewer .rinfo{text-align:left;}
.reviewer .rname{font-family:'Oswald', sans-serif; font-weight:600; font-size:14.5px;}
.reviewer .rrole{font-family:'IBM Plex Mono', monospace; font-size:11px; color:var(--ink-soft); margin-top:2px;}
.carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:var(--glass-strong); backdrop-filter:blur(10px);
  border:1px solid var(--glass-border); box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .2s, transform .2s;
  z-index:2;
}
.carousel-arrow:hover{background:var(--orange); transform:translateY(-50%) scale(1.05);}
.carousel-arrow:hover svg{stroke:#fff;}
.carousel-arrow svg{width:18px; height:18px; stroke:var(--ink); fill:none; stroke-width:2; pointer-events:none;}
.carousel-prev{left:-64px;}
.carousel-next{right:-64px;}
@media (max-width:1180px){
  .carousel-prev{left:-8px;}
  .carousel-next{right:-8px;}
}
.carousel-dots{display:flex; flex-wrap:wrap; justify-content:center; align-content:center; gap:8px 9px; margin-top:26px; max-width:280px; margin-left:auto; margin-right:auto;}
.carousel-dot{
  width:9px; height:9px; border-radius:50%; background:rgba(20,23,27,0.18);
  border:none; cursor:pointer; transition:background .2s, width .2s;
  padding:0;
}
.carousel-dot.active{background:var(--orange); width:22px; border-radius:5px;}
.review-note{
  margin-top:36px; color:var(--ink-faint); font-size:12.5px; font-family:'IBM Plex Mono', monospace;
  text-align:center; letter-spacing:0.3px;
}

/* 10b. TRUSTED BRAND PARTNERS (highlighted) ---------------------------------*/
.trusted-section{
  position:relative;
  padding:70px 0 76px;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, var(--orange-wash), transparent 70%),
    linear-gradient(180deg, rgba(184,134,11,0.06), transparent 60%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.trusted-section::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:4px;
  background:linear-gradient(90deg, var(--orange), var(--gold), var(--orange));
}
.trusted-section .sec-head{justify-content:center; text-align:center; margin-bottom:40px;}
.trusted-tag{
  display:inline-block;
  background:var(--orange); color:#fff !important;
  padding:5px 16px; border-radius:999px;
  box-shadow:0 8px 20px rgba(232,103,46,0.28);
  margin-bottom:10px;
}
.trusted-section .sec-head h2{font-size:clamp(30px, 3.8vw, 46px);}
.trusted-section .logo-card{
  height:118px; padding:20px;
  border-color:rgba(232,103,46,0.16);
  transition:transform .25s, box-shadow .25s, border-color .25s;
  cursor:pointer;
}
.trusted-section .logo-card:hover, .trusted-section .logo-card:focus-visible{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lift);
  border-color:var(--orange);
  outline:none;
}
.trusted-section .logo-card img{max-height:60px;}

/* 10c. BRANDS WE DO CAROUSEL -------------------------------------------------*/
.carousel.brand-carousel{max-width:var(--maxw); --items:1;}
@media (min-width:1024px){ .carousel.brand-carousel{--items:3;} }
@media (min-width:768px) and (max-width:1023px){ .carousel.brand-carousel{--items:2;} }
@media (max-width:767px){ .carousel.brand-carousel{--items:1;} }
.brand-slide{flex:0 0 calc(100% / var(--items)); box-sizing:border-box; padding:10px; display:flex;}
.brand-carousel .brand-card{display:flex; flex-direction:column; width:100%; height:100%;}
.brand-carousel .brand-content{display:flex; flex-direction:column; flex:1;}
.brand-carousel .chips{margin-top:auto;}
.brand-carousel .carousel-prev{left:-56px;}
.brand-carousel .carousel-next{right:-56px;}
@media (max-width:1180px){
  .brand-carousel .carousel-prev{left:-8px;}
  .brand-carousel .carousel-next{right:-8px;}
}

/* 10d. BRAND LOGO CAROUSEL --------------------------------------------------
   Mobile: each carousel "slide" is a .logo-page holding a 3x2 (or 2x3 on very
   small screens) grid of 6 logos, so one swipe/dot = one page of 6 brands.
   Tablet+: paging is dropped and every logo lays out in one big grid.
   ----------------------------------------------------------------------- */
.carousel.logo-carousel{max-width:1080px; --items:1;}

.logo-page{
  flex:0 0 calc(100% / var(--items));
  box-sizing:border-box; padding:6px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
@media (max-width:420px){
  .logo-page{grid-template-columns:repeat(2, 1fr); gap:8px;}
}

.logo-slide{box-sizing:border-box;}
.logo-card{
  height:108px; padding:18px;
  display:flex; align-items:center; justify-content:center;
}
.logo-card img{max-height:56px; max-width:100%; width:auto; object-fit:contain;}
@media (max-width:767px){
  .trusted-section .logo-card{height:84px; padding:12px;}
  .trusted-section .logo-card img{max-height:40px;}
}
.logo-carousel .carousel-prev{left:-64px;}
.logo-carousel .carousel-next{right:-64px;}
.logo-carousel .carousel-dots{max-width:220px; gap:7px;}
.logo-carousel .carousel-dot{width:6px; height:6px;}
.logo-carousel .carousel-dot.active{width:16px; border-radius:4px;}
@media (max-width:1180px){
  .logo-carousel .carousel-prev{left:-8px;}
  .logo-carousel .carousel-next{right:-8px;}
}

/* From tablet up: drop the paging behaviour and lay every logo out at once */
@media (min-width:768px){
  .logo-carousel .carousel-arrow,
  .logo-carousel .carousel-dots{display:none;}
  .logo-carousel .carousel-track-wrap{overflow:visible;}
  .logo-carousel .carousel-track{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(140px, 1fr));
    gap:14px;
    transform:none !important;
  }
  .logo-page{display:contents;}
  .logo-slide{padding:0;}
}

/* 11. CONTACT ---------------------------------------------------------------*/
.contact-grid{display:grid; grid-template-columns:0.85fr 1.15fr; gap:26px; align-items:stretch;}
.contact-info{display:flex; flex-direction:column; gap:16px;}
.info-card{padding:20px 22px; display:flex; gap:16px; align-items:flex-start;}
.info-card .info-icon{
  width:42px; height:42px; border-radius:50%; background:var(--orange-wash);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-icon svg{width:19px; height:19px; stroke:var(--orange-dim); fill:none; stroke-width:1.7;}
.info-card .rc-kind{
  font-size:13px; letter-spacing:1.5px;
  color:var(--orange-dim); display:block; margin-bottom:4px; font-weight: 600;
}
.info-card h3{font-size:15.5px; text-transform:uppercase; letter-spacing:0.3px; font-weight:600; margin-bottom:6px; color:var(--ink);}
.info-card p, .info-card a{color:black; font-size:13.8px; line-height:1.6;}
.info-card a:hover{color:var(--orange-dim);}
.info-card p.muted{font-style:italic; color:black;}

.contact-form{padding:34px 36px;}
.contact-form h3{font-size:20px; text-transform:uppercase; letter-spacing:0.3px; margin-bottom:8px; color:var(--ink);}
.contact-form > p{color:black; font-size:14px; margin-bottom:26px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
.form-group{display:flex; flex-direction:column; gap:6px; margin-bottom:16px;}
.form-group label{
  font-size:10.5px; letter-spacing:1px;
  color:black; font-weight: 500;
}
.form-group input, .form-group textarea{
  background:rgba(255,255,255,0.7);
  border:1px solid var(--line); border-radius:var(--radius-sm);
  padding:13px 14px; color:var(--ink); font-family:'Inter', sans-serif; font-size:14px;
  transition:border-color .2s, background .2s;
}
.form-group input:focus, .form-group textarea:focus{outline:none; border-color:var(--orange); background:#fff;}
.form-group textarea{resize:vertical; min-height:120px;}
.form-submit{
  width:100%; background:var(--orange); color:#fff; border:none; padding:16px;
  font-family:'Oswald', sans-serif; font-weight:600; letter-spacing:1.5px; text-transform:uppercase;
  font-size:14px; border-radius:999px; cursor:pointer; transition:background .2s, transform .2s;
  box-shadow:0 10px 24px rgba(232,103,46,0.28);
}
.form-submit:hover{background:var(--orange-dim); transform:translateY(-1px);}
.form-note {
    margin-top: 30px;
    font-size: 17px;
    color: black;
    text-align: center;
    font-weight: 500;
}
.form-status{margin-top:14px; font-size:13px; text-align:center; display:none;}
.form-status.show{display:block;}

.contact-cta{
  margin-top:24px; padding:26px 30px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px;
}
.contact-cta h3{font-size:18px; text-transform:uppercase; letter-spacing:0.3px; color:var(--ink);}
.contact-cta p{color:black; font-size:13.5px; margin-top:4px;}
.icon-row{display:flex; gap:12px;}
.icon-btn{
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line); background:var(--glass-strong);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .2s, background .2s;
}
.icon-btn:hover{border-color:#f48829; background:#f48829;}
.icon-btn:hover svg{stroke:#fff;}
.icon-btn svg{width:18px; height:18px; stroke:var(--ink); fill:none; stroke-width:1.8; transition:stroke .2s;}

/* 12. FOOTER ------------------------------------------------------------- */
footer{padding:70px 0 0; border-top:1px solid var(--line); background:var(--surface);}
.foot-top{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px;}
.foot-brand .header-logo{height:100%; margin-bottom:16px;}
.foot-brand p{color:black; font-size:14px; max-width:320px; margin-bottom:20px;}
.foot-social{display:flex; gap:10px;}
.foot-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; transition:border-color .2s, background .2s;
}
.foot-social a:hover{border-color:var(--orange); background:#f48829;}
.foot-social a:hover svg{stroke:#fff;}
.foot-social svg{width:16px; height:16px; stroke:var(--ink); fill:none; stroke-width:1.8;}
.foot-col h4{
  font-size:18px; letter-spacing:2px; font-weight: 700;
  color:#f48829; margin-bottom:18px;
}
.foot-col ul{list-style:none;}
.foot-col li{margin-bottom:11px;}
.foot-col a{color:black; font-size:15px; transition:color .2s;}
.foot-col a:hover{color:var(--ink);}
.foot-col address{font-style:normal; color:black; font-size:14px; line-height:1.7;}
.foot-bottom{
  border-top:1px solid var(--line); padding:20px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
}
footer .fmono{font-size:14px; color:black; letter-spacing:0.3px;}

/* 13. RESPONSIVE ----------------------------------------------------------*/
@media (max-width:1080px){
  .carousel-prev{left:8px;}
  .carousel-next{right:8px;}
}
@media (max-width:1024px){
  .about-grid{grid-template-columns:1fr; gap:44px;}
  .about-art{max-width:340px; margin:0 auto; width:100%;}
  .about-badge{left:12px; bottom:-18px; padding:11px 18px;}
  .about-badge .num{font-size:22px;}
  .brand-grid{grid-template-columns:repeat(2,1fr);}
  .foot-top{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr; gap:20px;}
}
@media (max-width:860px){
  nav ul, .navcall{display:none;}
  .menu-toggle{display:flex;}
  .award-panel{grid-template-columns:1fr; text-align:center; padding:40px 28px; gap:28px;}
  .award-copy p{margin-left:auto; margin-right:auto;}
  .founder-photo{width:220px;}
  section{padding:70px 0;}
  .carousel{max-width:100%;}
  .carousel-arrow{display:none;}
}
@media (max-width:600px){
  .brand-grid{grid-template-columns:1fr;}
  .foot-top{grid-template-columns:1fr; gap:32px;}
  .contact-cta{flex-direction:column; align-items:flex-start;}
  .hero-stats{grid-template-columns:1fr 1fr;}
  .form-row{grid-template-columns:1fr;}
  .wrap{padding:0 18px;}
  .review-card{padding:28px 22px;}
  .award-panel{padding:30px 20px; gap:22px;}
  .founder-photo{width:170px;}
  .award-copy .cert{padding:11px 16px; font-size:11px; text-align:center;}
  .contact-form{padding:26px 22px;}
}


.foot-col a:hover {
    color: #f48829;
}




@media only screen and (max-width: 768px) {
  .sec-head{
  margin-bottom: 10px;
}
}

/* 13b. FOOTER — MOBILE ACCORDION -------------------------------------------
   On small screens each footer column collapses to a tappable heading; tap
   to reveal that column's links. The "Navigate", "Categories" and "Reach Us"
   columns become dropdown-style lists. .foot-brand (logo/blurb/social) is
   left alone — it isn't a link list.
   ----------------------------------------------------------------------- */
@media (max-width:700px){
  .foot-col{border-bottom:1px solid var(--line);}
  .foot-col h4{
    cursor:pointer; user-select:none;
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    margin-bottom:0; padding:16px 2px;
  }
  .foot-col h4::after{
    content:"";
    width:8px; height:8px; flex-shrink:0;
    border-right:2px solid var(--orange); border-bottom:2px solid var(--orange);
    transform:rotate(45deg); transition:transform .25s;
  }
  .foot-col.open h4::after{transform:rotate(-135deg);}
  .foot-col ul, .foot-col address{
    display:none;
    padding-bottom:16px;
  }
  .foot-col.open ul, .foot-col.open address{
    display:block;
  }
  .foot-col li:first-child{margin-top:2px;}
}


.logo-slide {
    background: white;
    border-radius: 20px;
}
/* 14. BRAND ENQUIRY POPUP ------------------------------------------------ */
.brand-modal-overlay{
  position:fixed; inset:0; z-index:999;
  background:rgba(20,23,27,0.55);
  backdrop-filter:blur(3px);
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility 0s linear .25s;
}
.brand-modal-overlay.open{
  opacity:1; visibility:visible;
  transition:opacity .25s ease, visibility 0s linear 0s;
}
.brand-modal{
  position:relative;
  width:100%; max-width:380px;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:0 30px 70px rgba(20,23,27,0.35);
  padding:34px 28px 28px;
  transform:translateY(14px) scale(.97);
  transition:transform .25s ease;
}
.brand-modal-overlay.open .brand-modal{transform:translateY(0) scale(1);}
.brand-modal-close{
  position:absolute; top:12px; right:12px;
  width:32px; height:32px; border-radius:50%;
  border:none; background:var(--surface);
  font-size:20px; line-height:1; color:var(--ink);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s, color .2s;
}
.brand-modal-close:hover{background:var(--orange); color:#fff;}
.brand-modal-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--orange-dim); font-weight:600; margin-bottom:10px;
}
.brand-modal-eyebrow::before{content:""; width:18px; height:2px; background:var(--orange);}
.brand-modal h3{
  font-size:19px; font-weight:700; text-transform:uppercase;
  line-height:1.3; color:var(--ink); margin-bottom:14px;
}
.brand-modal-website{
  font-size:13.5px; color:var(--ink);
  margin-bottom:22px;
}
.brand-modal-website a{
  font-weight:600; color:var(--orange-dim);
  border-bottom:1px solid rgba(232,103,46,0.35);
  transition:color .2s, border-color .2s;
}
.brand-modal-website a:hover{color:var(--orange); border-color:var(--orange);}
.brand-modal .form-group{margin-bottom:14px;}
.brand-modal .form-submit{width:100%;}
.brand-modal .form-status{color:var(--orange-dim); font-weight:600;}

@media (max-width:420px){
  .brand-modal{padding:28px 20px 22px;}
}