/* =========================
   DTshades - Canva Inspired
   Colors:
   #E5E1D4 (base)
   #958B77 (primary)
   #E7E0D8 (surface)
   Fonts:
   Poppins + Seasons-like serif (Cormorant Garamond)
   ========================= */

:root{
  --bg: #E5E1D4;
  --surface: #E7E0D8;
  --text: #2E2A25;
  --muted: rgba(46,42,37,.72);
  --primary: #958B77;
  --primary-dark: #7f7563;
  --ring: rgba(149,139,119,.25);
  --white: #ffffff;

  --radius-xl: 22px;
  --radius-2xl: 28px;

  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --border: 1px solid rgba(0,0,0,.08);
}

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 10000;
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
}
.skip-link:focus {
  left: 16px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* =========================
   CINEMATIC INTERACTIONS
   (GSAP + ScrollTrigger)
   ========================= */

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .page-wipe, .noise{ display:none !important; }
}

/* Soft film grain */
.noise{
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 998;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Page transition wipe */
.page-wipe{
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events:none;
  background: radial-gradient(900px 500px at 70% 30%, rgba(255,255,255,.28), transparent 55%),
              linear-gradient(180deg, rgba(229,225,212,1), rgba(231,224,216,1));
  transform: translateY(105%);
}

/* (Removed custom cursor per request) */

/* Reveal helpers (fallback if GSAP not available) */
.reveal{
  opacity: 0;
  transform: translateY(40px);
}

/* Word-by-word reveal spans */
.reveal-words .w{
  display:inline-block;
  will-change: transform, opacity, filter;
}

/* Fancy image masks */
.img-mask{
  border-radius: var(--radius-xl);
  overflow: hidden;
  transform: translateZ(0);
}

/* Magnetic buttons look tighter */
.btn{ will-change: transform; }

/* Subtle section depth */
.section, .section-tight{
  position: relative;
}
  .section::before, .section-tight::before{
  content:"";
  position:absolute;
  inset:-40px -20px;
  pointer-events:none;
  background: radial-gradient(700px 320px at 15% 0%, rgba(149,139,119,.10), transparent 55%),
              radial-gradient(700px 320px at 90% 100%, rgba(255,255,255,.24), transparent 60%);
  opacity: .75;
  filter: blur(0px);
}

a{ color: inherit; }
/* Prevent inline-image baseline gaps ("mysterious" space under images) */
img{ max-width:100%; display:block; }

/* Footer brand mark */
.footer-logo{
  /* Give the logo more breathing room so it never looks cropped */
  max-height: 64px;
  height: auto;
  width: auto;
  object-fit: contain;
  display:block;
  border-radius: 0 !important;
}

/* Social icon pills */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.pill svg{ width:16px; height:16px; display:block; }

/* =============================
   Global overrides / fixes
   ============================= */

/* Footer logo must never be rounded (override any inherited styles) */
.footer .footer-logo,
.footer img.footer-logo{
  border-radius: 0 !important;
  overflow: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* Ensure framed images fully fill their containers (no bottom gaps) */
.img-wrap img,
.img-wrap picture,
.img-wrap video,
.card img,
.slideshow img{
  display:block;
}
.img-wrap img,
.img-zoom{
  width:100%;
  height:100%;
  object-fit:cover;
}
.slideshow-stage{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.slideshow-stage img,
.slideshow-stage video{
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity .45s ease, transform .45s ease;
}

.slideshow-stage img{
  object-fit: cover;
}

.slideshow-stage video{
  object-fit: contain;
  background: transparent;
  max-width: 100%;
  max-height: 100%;
}

/* Floating WhatsApp button (official sticker style) */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 16px 30px rgba(0,0,0,.22);
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}
.whatsapp-float img{
  width: 28px;
  height: 28px;
  display:block;
}
.whatsapp-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Social icon stickers */
.social-pill{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  text-decoration:none;
}
.social-pill img{
  width: 18px;
  height: 18px;
  display:block;
}
.social-pill.is-fb{ background:#1877F2; border-color: rgba(0,0,0,.08); }
.social-pill.is-ig{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: rgba(0,0,0,.08);
}

/* Simple slideshow */
.slideshow{
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  height: clamp(260px, 40vw, 420px);
}
.slideshow img{
  width:100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transition: opacity .45s ease;
}

/* Slideshow arrows */
.slideshow-arrow{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity: .85;
  transition: opacity .2s ease, transform .2s ease;
}
.slideshow-arrow:hover{ opacity: 1; transform: translateY(-50%) scale(1.03); }
.slideshow-arrow:active{ transform: translateY(-50%) scale(.98); }
.slideshow-arrow svg{ width: 16px; height: 16px; display:block; }
.slideshow-arrow.prev{ left: 14px; }
.slideshow-arrow.next{ right: 14px; }

@media (max-width: 640px){
  .slideshow-arrow{ width: 40px; height: 40px; }
}
.slideshow-dots{
  position:absolute;
  left: 14px;
  bottom: 14px;
  display:flex;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.slideshow-dot{
  width: 6px;
  height: 4px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.22);
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.slideshow-dot.is-active{
  background: rgba(46,42,37,.75);
}

/* Portfolio motion (projects page) */
.portfolio-motion .card{ will-change: transform, opacity; }
.portfolio-motion.pm-ready .card{ transform: translateX(-120%); opacity: 0; }

@keyframes pmSlideIn{
  from{ transform: translateX(-120%); opacity: 0; }
  to{ transform: translateX(0%); opacity: 1; }
}
@keyframes pmSlideOut{
  from{ transform: translateX(0%); opacity: 1; }
  to{ transform: translateX(120%); opacity: 0; }
}

.portfolio-motion.pm-in .card{
  animation: pmSlideIn .9s cubic-bezier(.2,.85,.25,1) forwards;
}
.portfolio-motion.pm-in .card:nth-child(1){ animation-delay: 0s; }
.portfolio-motion.pm-in .card:nth-child(2){ animation-delay: .08s; }
.portfolio-motion.pm-in .card:nth-child(3){ animation-delay: .16s; }

.portfolio-motion.pm-out .card{
  animation: pmSlideOut .8s cubic-bezier(.2,.85,.25,1) forwards;
}
.portfolio-motion.pm-out .card:nth-child(1){ animation-delay: 0s; }
.portfolio-motion.pm-out .card:nth-child(2){ animation-delay: .06s; }
.portfolio-motion.pm-out .card:nth-child(3){ animation-delay: .12s; }

.container{
  width: min(1120px, calc(100% - 48px));
  margin-inline:auto;
}

/* Typography */
.display{
  font-family: "Cormorant Garamond", serif; /* Seasons-like alternative */
  letter-spacing: -0.01em;
}

/* Sticky header */
.header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 999;
  background: rgba(229,225,212,.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.navbar{
  height: 90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: relative;
}

/* Brand (logo + tagline under it) */
.brand{
  display:flex;
  flex-direction: column;
  align-items:flex-start;
  text-decoration:none;
  gap: 2px;
}
.brand-logo{
  height: 42px;
  width: auto;
  display:block;
  object-fit: contain;
}

.header .brand{
  flex: 0 0 auto;
  max-width: 240px;
}
.header .brand-logo{
  width: auto !important;
  height: 42px !important;
  max-width: 100%;
  max-height: 42px !important;
  object-fit: contain;
}
.article-page .brand-logo{
  width: auto !important;
  height: 42px !important;
  max-height: 42px !important;
}
.article-break-image img,
.article-hero-image img{
  width: min(70%, 820px);
  margin: 0 auto;
  display: block;
}
@media (max-width: 768px){
  .article-break-image img,
  .article-hero-image img{
    width: 100%;
  }
}

.brand-tagline{
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 22px;
}

.navlinks a{
  text-decoration:none;
  font-weight:500;
  font-size: 14px;
  color: rgba(46,42,37,.9);
  transition: color .18s ease;
}
.navlinks a:hover{
  color: var(--primary);
}

.nav-active{
  color: var(--primary) !important;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight:600;
  border: 1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(149,139,119,.25);
}
.btn-primary:hover{
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline{
  background: transparent;
  border-color: rgba(149,139,119,.55);
  color: var(--primary-dark);
}
.btn-outline:hover{
  background: rgba(149,139,119,.12);
  transform: translateY(-1px);
}

.btn-soft{
  background: rgba(255,255,255,.55);
  border-color: rgba(0,0,0,.08);
  color: rgba(46,42,37,.9);
}
.btn-soft:hover{
  background: rgba(255,255,255,.70);
  transform: translateY(-1px);
}

/* Cards */
.card{
  background: rgba(255,255,255,.45);
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* Translucent photo background for core value / expertise cards */
.value-card{
  position: relative;
  overflow: hidden;
}
.value-card::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: var(--value-bg);
  background-size: cover;
  background-position: var(--cover-position, center);
  opacity: .14; /* translucent so text stays readable */
  filter: saturate(.9) contrast(.95);
  transform: scale(1.02);
}
.value-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.35));
  opacity: .55;
}
.value-card > *{
  position: relative;
  z-index: 1;
}

.card-inner{
  padding: 18px;
}

.img-wrap{
  overflow:hidden;
}
.img-zoom{
  width:100%;
  height:100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.card:hover .img-zoom{ transform: scale(1.05); }

.section{
  padding: 64px 0;
}

.section-tight{
  padding: 44px 0;
}

/* Hero */
.hero{
  min-height: 520px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.12) 100%),
    url("assets/home_hero_background.JPEG");
  background-size: cover;
  background-position: center;
  filter: saturate(.95);
}
.hero-content{
  position: relative;
  padding: 92px 0 56px;
}
.hero-box{
  max-width: 620px;
  background: rgba(250, 248, 242, .78);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  border-radius: var(--radius-2xl);
  padding: 22px 22px 20px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.hero-title{
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.03;
  /* Match the headline colour to the brand colour */
  color: var(--primary);
  text-shadow: 0 2px 18px rgba(0,0,0,.12);
}
.hero-sub{
  margin:0 0 22px;
  color: rgba(46,42,37,.78);
  line-height: 1.7;
  font-size: 15px;
}
.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn-outline{
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.hero-actions .btn-outline:hover{
  background: rgba(255,255,255,.12);
}

/* Grid helpers */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items:center;
}
.grid-portfolio{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Heritage band */
.band{
  background: #958B77;
  color: #fff;
  padding: 56px 0;
}
.band p{ color: rgba(46,42,37,.78); }

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.45);
}


/* Heritage band (Canva layout) */
.heritage-canva{ background:#9B927F; }
.heritage-canva-grid{
  display:grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items:start;
}
.heritage-frame{
  background:#fff;
  border-radius: 52px;
  padding: 22px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.heritage-frame-inner{
  border-radius: 38px;
  overflow:hidden;
  aspect-ratio: 3 / 4;
}
.heritage-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.heritage-copy{
  position:relative;
  padding-top: 14px;
}
.heritage-eyebrow{
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.heritage-title{
  margin: 0 0 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: .01em;
  color:#fff;
}
.heritage-lead{
  margin:0;
  max-width: 820px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
}
.heritage-divider{
  height: 3px;
  width: min(720px, 100%);
  background: rgba(255,255,255,.75);
  margin: 34px 0 26px;
}
.heritage-bottom{
  display:flex;
  align-items:flex-start;
  gap: 40px;
}
.heritage-link{
  display:inline-flex;
  gap: 14px;
  align-items:center;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  text-decoration:none;
  white-space:nowrap;
  padding-top: 10px;
}
.heritage-link:hover{ text-decoration: underline; }

.heritage-kpi{
  margin-left: 40px;
  /* Keep KPI typography/position exactly as original, only add a brush overlay behind it */
  position: relative; /* anchor for the brush overlay */

  /* === Manual brush controls (tweak these until it matches Canva perfectly) === */
  --kpi-brush-right: -30px;   /* move brush left/right (more negative = further right) */
  --kpi-brush-bottom: -60px;  /* move brush up/down (more negative = further down) */
  --kpi-brush-width: 520px;   /* brush size */
  --kpi-brush-height: 360px;  /* brush size */
  --kpi-brush-opacity: .9;    /* brush transparency */
}

/* KPI typography (reverted back to the original intended sizing) */
.heritage-kpi-top{
  font-size: 74px;
  line-height: 0.95;
  color: rgba(255,255,255,.92);
}
.heritage-kpi-top sup{
  font-size: 42px;
  top: -0.5em;
  position: relative;
}
.heritage-kpi-sub{
  font-size: 42px;
  line-height: 1.0;
  color: rgba(255,255,255,.92);
}

/* Overlay brush sits BEHIND the KPI text and moves with it (relative overlay like Canva) */
.heritage-kpi::before{
  content: "";
  position: absolute;
  right: var(--kpi-brush-right);
  bottom: var(--kpi-brush-bottom);
  width: var(--kpi-brush-width);
  height: var(--kpi-brush-height);
  background: url("assets/brush_kpi.svg") no-repeat center / contain;
  pointer-events: none;
  opacity: var(--kpi-brush-opacity);
  z-index: 0;
}

.heritage-kpi > *{ position: relative; z-index: 1; }

@media (max-width: 980px){
  .heritage-canva-grid{ grid-template-columns: 1fr; gap: 32px; }
  .heritage-frame{ max-width: 520px; margin: 0 auto; }
  .heritage-eyebrow{ font-size: 22px; }
  .heritage-title{ font-size: 40px; }
  .heritage-lead{ font-size: 18px; }
  .heritage-bottom{ gap: 22px; flex-wrap:wrap; }
  .heritage-link{ font-size: 28px; }
  .heritage-kpi-top{ font-size: 62px; }
  .heritage-kpi-sub{ font-size: 34px; }
  .heritage-kpi{ margin-left: 0; }
  /* Keep mobile brush adjustable too */
  .heritage-kpi{
    --kpi-brush-right: -40px;
    --kpi-brush-bottom: -70px;
    --kpi-brush-width: 420px;
    --kpi-brush-height: 300px;
  }
}
@media (max-width: 560px){
  .heritage-title{ font-size: 34px; }
  .heritage-frame{ border-radius: 40px; padding: 16px; }
  .heritage-frame-inner{ border-radius: 30px; }
  .heritage-link{ font-size: 26px; }
  .heritage-kpi{ margin-left: 0; }
  .heritage-divider{ margin: 26px 0 18px; }
  .heritage-kpi::before{ display:none; }
}

.heritage-empty-space{
  min-height: 320px;
}

@media (max-width: 980px){
  .heritage-empty-space{
    min-height: 220px;
  }
}

@media (max-width: 560px){
  .heritage-empty-space{
    min-height: 160px;
  }
}


/* =========================
   Clients + Blog additions
   ========================= */

.stats-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 12px;
}
.stat{
  border: var(--border);
  background: rgba(255,255,255,.22);
  border-radius: 18px;
  padding: 14px 14px;
}
.kpi{
  font-weight: 700;
  letter-spacing: .01em;
}
.kpi-sub{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.badge-cloud{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.60);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(46,42,37,.88);
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card{
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: var(--border);
  background: rgba(255,255,255,.45);
  box-shadow: var(--shadow);
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.blog-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.60);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}
.blog-meta{
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(46,42,37,.70);
  font-size: 12px;
  font-weight: 600;
}
.blog-meta .dot{ opacity: .6; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(149,139,119,.16);
  border: 1px solid rgba(149,139,119,.24);
  color: rgba(46,42,37,.84);
}
.blog-title{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}
.blog-excerpt{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.blog-cta{
  margin-top: auto;
  font-weight: 700;
  color: rgba(46,42,37,.88);
}

.map-embed{
  width:100%;
  height: 420px;
  border: 0;
  display:block;
  border-radius: var(--radius-2xl);
}

/* Footer */
.footer{
  background: rgba(255,255,255,.30);
  border-top: 1px solid rgba(0,0,0,.10);
  padding: 34px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
}
.footer h4{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(46,42,37,.9);
}
.footer a{
  text-decoration:none;
  color: rgba(46,42,37,.85);
  font-weight:500;
  font-size: 13px;
}
.footer a:hover{ color: var(--primary-dark); text-decoration: underline; text-underline-offset: 5px; }

.footer p, .footer .muted{
  color: rgba(46,42,37,.72);
  font-size: 13px;
  line-height: 1.7;
}

.footer-bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.10);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 10px;
  color: rgba(46,42,37,.55);
  font-size: 12px;
}

/* Mobile menu */
.mobile-btn{
  display:none;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.35);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
  cursor:pointer;
}
.mobile-panel{
  display:none;
  position:absolute;
  top:72px;
  left:0; right:0;
  background: rgba(229,225,212,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.10);
  padding: 12px;
  border-radius: 0 0 18px 18px;
}
.mobile-panel a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:600;
  color: rgba(46,42,37,.92);
}
.mobile-panel a:hover{
  background: rgba(149,139,119,.16);
}

/* Accordion */
.accordion{
  border: var(--border);
  border-radius: var(--radius-xl);
  overflow:hidden;
  background: rgba(255,255,255,.35);
  box-shadow: var(--shadow);
}
.accordion .item{ border-top: 1px solid rgba(0,0,0,.10); }
.accordion .item:first-child{ border-top:none; }
.accordion button{
  width:100%;
  text-align:left;
  background: transparent;
  border:none;
  padding: 16px 16px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.accordion .panel{
  max-height:0;
  overflow:hidden;
  transition: max-height .25s ease;
  padding: 0 16px;
}
.accordion .panel p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .grid-portfolio{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .navlinks{ display:none; }
  .mobile-btn{ display:inline-flex; }
  .hero-title{ font-size: 42px; }
  .stats-row{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; }
}


/* =========================
   MEDIA IMAGE FIX
   - Keep image/media blocks square (no gaps)
   - Allow text cards to be rounded
   ========================= */

/* Square-off ONLY media elements (images + media wrappers) */
img,
.img-mask,
.img-wrap,
.slideshow,
.slideshow *,
.about-hero-media,
.heritage-frame,
.heritage-frame-inner,
figure,
picture {
  border-radius: 0 !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: none !important;
}

/* Media-only cards: use this class on cards that are basically just an image */
.card.media-card {
  border-radius: 0 !important;
  overflow: hidden !important;
}

.card.media-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Text cards: rounded corners (only these) */
.card.text-card {
  border-radius: var(--radius-2xl) !important;
  overflow: hidden;
}

/* Keep inputs/buttons inside text cards nicely rounded */
.card.text-card input,
.card.text-card textarea,
.card.text-card .btn {
  border-radius: 14px;
}

/* ----------------------------------------
   Custom additions for refreshed navigation
   and hero tagline (March 2026 update)
   ---------------------------------------- */

/* Small tagline above the hero headline */
.hero-tagline {
  margin: 0 0 8px;
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary);
}

/* Dropdown navigation styling */
.navlinks .dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navlinks .dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: rgba(46,42,37,.9);
  transition: color .18s ease;
}
.navlinks .dropdown > a:hover {
  color: var(--primary);
}

.navlinks .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 8px 0;
  min-width: 200px;
  z-index: 1000;
}

.navlinks .dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.navlinks .dropdown-menu a:hover {
  background: rgba(149,139,119,.12);
  color: var(--primary);
}

.navlinks .dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile panel sub-links (indent subcategories) */
.mobile-panel .sub-link {
  padding-left: 24px;
  font-size: 14px;
  color: rgba(46,42,37,.85);
}


/* Floating social dock */
.social-float{
  position: fixed;
  right: 18px;
  bottom: 118px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9998;
}
.social-float a{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  overflow: hidden;
}
.social-float a:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.social-float a.is-instagram{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 6%, #fd5949 42%, #d6249f 63%, #285AEB 92%);
}
.social-float a.is-facebook{
  background: #1877F2;
}
.social-float img{
  display:block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.social-float a.is-instagram img{
  width: 21px;
  height: 21px;
  transform: translateY(0.5px);
}
.social-float a.is-facebook i{
  color: #fff;
  font-size: 20px;
  display: block;
}

/* Portfolio image hover labels */
.hover-label{
  position: relative;
  display:block;
}
.hover-label .label{
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.12);
  font-weight: 600;
  color: rgba(46,42,37,.92);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.hover-label:hover .label,
.hover-label:focus-visible .label,
.hover-label.is-active .label{
  opacity: 1;
  transform: translateY(0);
}

/* Headline underline effect */
.headline-underline{
  position: relative;
  display: inline-block;
}
.headline-underline::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  height:3px;
  width:100%;
  background: linear-gradient(90deg, var(--primary), rgba(151,120,83,.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s ease;
}
.is-revealed .headline-underline::after{
  transform: scaleX(1);
}

@media (max-width: 768px){
  .social-float{ right: 12px; bottom: 104px; }
  .social-float a{ width: 44px; height: 44px; }
}


.jump-menu summary{ list-style:none; }
.jump-menu summary::-webkit-details-marker{ display:none; }
.jump-menu[open] summary{ box-shadow: 0 12px 30px rgba(0,0,0,.12); }



/* Footer dual-brand lockup */
.footer-logos{
  display:flex;
  align-items:flex-end;
  gap:16px;
  margin:0 0 16px;
}

.footer .footer-logo{
  display:block;
  width:auto;
  object-fit:contain;
  border-radius:0 !important;
}

.greenbank-logo{
  height: 58px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: 10px;
}

.dtshades-logo{
  height:42px;
}

.logo-divider{
  width:1px;
  height:38px;
  background:linear-gradient(to bottom, rgba(46,42,37,0.04), rgba(46,42,37,0.28), rgba(46,42,37,0.04));
  align-self:center;
}

@media (max-width: 640px){
  .footer-logos{
    gap:12px;
    flex-wrap:wrap;
  }

  .greenbank-logo{
    height:30px;
  }

  .dtshades-logo{
    height:36px;
  }

  .logo-divider{
    height:30px;
  }
}


/* Premium heritage counters */
.heritage-counters{
  display:grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
  max-width: 780px;
}
.premium-counter{
  position:relative;
  padding: 34px 34px 28px;
  min-height: 280px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.08));
  box-shadow: 0 22px 40px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.premium-counter .counter-number{
  color:#f7f2ea;
  font-size: 5.4rem;
  line-height: .88;
  letter-spacing: -.04em;
  margin-bottom: 12px;
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
}
.premium-counter .counter-number sup{
  font-size: 1.8rem;
  position: relative;
  top: -.95em;
}
.premium-counter .counter-label{
  color:#f7f2ea;
  font-size: 2.05rem;
  line-height: .95;
  margin-bottom: 18px;
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
}
.premium-counter .counter-subtext{
  color: rgba(255,255,255,.84);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .9rem;
  font-weight: 600;
  max-width: 180px;
}
.reveal-card-seq{
  opacity: 0;
  transform: translateY(24px) scale(.98);
}
.reveal-card-seq.is-visible{
  opacity:1;
  transform: translateY(0) scale(1);
  transition: transform .8s cubic-bezier(.22,1,.36,1), opacity .8s ease;
}

/* About page storytelling */
.about-intro{
  position: relative;
  padding-top: 28px;
  padding-bottom: 48px;
  isolation: isolate;
}
.about-cover-panel::before,
.mission-cover-section::before{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  opacity: .18;
  z-index: -2;
}
.about-cover-panel::before{
  background-image: linear-gradient(90deg, rgba(229,225,212,.94), rgba(229,225,212,.72)), url('assets/about_heritage_story.jpg');
}
.mission-cover-section{
  position: relative;
  isolation: isolate;
  padding-top: 34px;
  padding-bottom: 34px;
}
.mission-cover-section::before{
  background-image: linear-gradient(90deg, rgba(229,225,212,.95), rgba(229,225,212,.75)), url('assets/about_mission_section_background.JPEG');
  opacity: .20;
}
.mission-copy{
  font-size: 1.2rem;
  max-width: 980px !important;
}
.about-page-title{
  margin:0 0 18px;
  font-size:54px;
}
.typewriter-title{ overflow:hidden; white-space:nowrap; }
.typewriter-title .headline-underline{ display:inline-block; }
.about-story-kicker{
  font-size: 2.85rem;
  line-height: 1.1;
  color: rgba(70,63,53,.78);
  max-width: none;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 54px;
}
.about-story-section{ padding-top: 18px; padding-bottom: 18px; }
.about-story-grid{
  display:grid;
  grid-template-columns: minmax(320px, 1fr) minmax(380px, 1.18fr);
  gap: 52px;
  align-items:center;
}
.bottom-story-grid{
  grid-template-columns: minmax(380px, 1.02fr) minmax(320px, .98fr);
}
.about-story-copy{
  padding: 0;
}
.about-story-text{
  margin:0;
  color: var(--muted);
  font-size: 1.42rem;
  line-height: 1.75;
  letter-spacing: -.01em;
}
.sharp-photo,
.sharp-photo img{
  border-radius: 0 !important;
}
.about-story-photo{
  overflow:hidden;
  box-shadow: var(--shadow);
}
.about-story-photo img{
  display:block;
  width:100%;
  height:520px;
  object-fit:cover;
}
.slide-in-left,
.slide-in-right,
.value-seq{
  opacity:0;
}
.slide-in-left{ transform: translateX(-110px); }
.slide-in-right{ transform: translateX(110px); }
.slide-in-left.is-visible,
.slide-in-right.is-visible{
  opacity:1;
  transform: translateX(0);
  transition: transform 1.05s cubic-bezier(.22,1,.36,1), opacity 1.05s ease;
}
.values-grid-uniform{
  display:grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.values-grid-uniform .value-card{
  min-height: 410px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  border-radius: 0;
  padding: 18px 16px !important;
}
.values-grid-uniform .value-card h3{
  font-size: 1.02rem;
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 10px;
  min-height: 2.35em;
  display: flex;
  align-items: flex-start;
}
.values-grid-uniform .value-card p{
  font-size: .92rem !important;
  line-height: 1.55 !important;
  margin-top: 0 !important;
}
.values-grid-uniform .value-card .pill{
  margin-bottom: 18px;
}
.value-seq{
  transform: translateY(28px) scale(.98);
}
.value-seq.is-visible{
  opacity:1;
  transform: translateY(0) scale(1);
  transition: transform .8s cubic-bezier(.22,1,.36,1), opacity .8s ease;
}
.reveal-photo{
  opacity:0;
  transform: scale(1.02);
}
.reveal-photo.is-visible{
  opacity:1;
  transform: scale(1);
  transition: transform 1s cubic-bezier(.22,1,.36,1), opacity 1s ease;
}

@media (max-width: 1180px){
  .values-grid-uniform{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 980px){
  .heritage-counters{ grid-template-columns: 1fr; }
  .premium-counter{ min-height: 240px; }
  .about-story-grid,
  .bottom-story-grid{ grid-template-columns: 1fr; gap: 22px; }
  .about-story-kicker{ font-size: 2.1rem; margin-bottom: 26px; white-space: normal; }
  .about-story-photo img{ height:420px; }
  .values-grid-uniform{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .typewriter-title{ white-space:normal; }
}
@media (max-width: 640px){
  .about-page-title{ font-size: 40px; }
  .about-story-kicker{ font-size: 1.55rem; }
  .values-grid-uniform{ grid-template-columns: 1fr; }
  .about-story-photo img{ height:300px; }
  .premium-counter .counter-number{ font-size: 4.3rem; }
  .premium-counter .counter-label{ font-size: 1.8rem; }
  .about-story-text{ font-size: 1.14rem; }
}



/* =========================
   PRODUCTS PAGE REFRESH
   Inspired by premium editorial product pages
   ========================= */
.products-page{ overflow-x: clip; }
.products-hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 52px;
}
.products-hero-media,
.products-hero-overlay{
  position:absolute; inset:0;
}
.products-hero-media img{
  width:100%; height:100%; object-fit:cover;
  filter: saturate(.92) contrast(.96) brightness(.88);
}
.products-hero-overlay{
  background:
    linear-gradient(90deg, rgba(20,18,16,.68) 0%, rgba(20,18,16,.42) 42%, rgba(20,18,16,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.32));
}
.products-hero-inner{ position:relative; z-index:2; color:#fff; }
.products-kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size:12px; letter-spacing:.24em; text-transform:uppercase; margin-bottom:18px;
}
.products-hero-title{
  max-width: 820px; margin:0 0 18px; font-size: clamp(44px, 7vw, 82px); line-height: .98;
  color:#fff;
}
.products-hero-copy{
  max-width: 700px; margin:0; font-size:18px; line-height:1.8; color: rgba(255,255,255,.88);
}
.products-hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.products-hero .btn-outline{ color:#fff; border-color: rgba(255,255,255,.36); background: rgba(255,255,255,.08); }
.products-hero .btn-outline:hover{ background:#fff; color:var(--text); }
.products-nav-strip{ margin-top:-36px; z-index:4; }
.products-pill-row{
  display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:12px;
  padding:16px; border-radius: 26px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,.52);
}
.product-pill{
  display:flex; align-items:center; gap:12px; padding:15px 18px; border-radius:20px; text-decoration:none;
  background: rgba(255,255,255,.65); border:1px solid rgba(0,0,0,.08); transition: transform .25s ease, background .25s ease, border-color .25s ease;
  font-weight:600;
}
.product-pill span{
  width:32px; height:32px; border-radius:999px; display:grid; place-items:center;
  background: rgba(149,139,119,.14); color:var(--primary-dark); font-size:12px; letter-spacing:.08em;
}
.product-pill:hover{ transform: translateY(-2px); background:#fff; border-color: rgba(149,139,119,.28); }
.section-heading.center{ text-align:center; }
.section-heading.center h2{ margin:6px 0 10px; }
.section-heading.center p{ max-width:820px; margin:0 auto; color:var(--muted); line-height:1.8; }
.eyebrow{
  font-size:12px; letter-spacing:.22em; text-transform:uppercase; color:var(--primary-dark); font-weight:600;
}
.products-feature-grid{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; margin-top:28px;
}
.product-feature-card{ overflow:hidden; padding:0; background: rgba(255,255,255,.55); }
.product-feature-large{ grid-column: span 2; }
.feature-image-wrap{ aspect-ratio: 1.18 / 1; overflow:hidden; }
.product-feature-large .feature-image-wrap{ aspect-ratio: 2.2 / 1.16; }
.feature-image-wrap img{ width:100%; height:100%; object-fit:cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.product-feature-card:hover .feature-image-wrap img{ transform: scale(1.05); }
.feature-copy{ padding:20px; }
.feature-tag{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--primary-dark); margin-bottom:8px; }
.feature-copy h3{ margin:0 0 8px; font-size:30px; font-family:"Cormorant Garamond", serif; }
.feature-copy p{ margin:0; line-height:1.75; color:var(--muted); }
.feature-meta{ margin-top:12px; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:rgba(46,42,37,.55); }
.product-editorial{ padding: 28px 0 10px; }
.editorial-grid{ display:grid; grid-template-columns: 1.05fr .95fr; gap:28px; align-items:center; }
.editorial-grid-reverse{ grid-template-columns: .95fr 1.05fr; }
.editorial-copy h2{ margin:8px 0 14px; font-size: clamp(34px, 4.4vw, 58px); }
.editorial-copy p{ margin:0 0 18px; color:var(--muted); line-height:1.9; max-width: 620px; }
.editorial-points{ display:grid; gap:12px; margin:0 0 20px; }
.editorial-point, .editorial-stat{
  background: rgba(255,255,255,.45); border: var(--border); border-radius:20px; padding:16px 18px;
}
.editorial-point strong, .editorial-stat strong{ display:block; font-size:14px; margin-bottom:5px; }
.editorial-point span, .editorial-stat span{ color:var(--muted); font-size:14px; line-height:1.65; }
.editorial-media-stack{ position:relative; }
.editorial-main-image{ overflow:hidden; }
.editorial-main-image img{ width:100%; aspect-ratio: 1.15 / 1; object-fit:cover; }
.editorial-mini-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; margin-top:14px; }
.editorial-mini-grid .card{ overflow:hidden; }
.editorial-mini-grid img{ width:100%; aspect-ratio: 1 / 1; object-fit:cover; }
.blinds-showcase .editorial-main-image img{ aspect-ratio: 1 / 1.02; }
.editorial-float-card{
  position:absolute; right:-20px; bottom:24px; max-width: 280px; padding:18px; background: rgba(255,255,255,.74);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.editorial-float-card h3{ margin:8px 0 10px; font-size:30px; font-family:"Cormorant Garamond", serif; }
.editorial-float-card p{ margin:0; color:var(--muted); line-height:1.7; }
.editorial-stat-row{ display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; }
.product-flooring-band{ padding-top: 26px; }
.flooring-band-grid{
  display:grid; grid-template-columns: .95fr 1.05fr; gap:26px; align-items:center; padding:28px;
  border-radius:32px; background: linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,.22)); border: var(--border);
}
.flooring-band-copy h2{ margin:8px 0 14px; font-size: clamp(34px, 4.1vw, 54px); }
.flooring-band-copy p{ margin:0 0 18px; color:var(--muted); line-height:1.9; }
.flooring-band-media .card{ overflow:hidden; }
.flooring-band-media img{ width:100%; aspect-ratio: 1.18 / 1; object-fit:cover; }
.feature-checks{ display:flex; flex-wrap:wrap; gap:10px; }
.feature-checks span{
  display:inline-flex; align-items:center; padding:10px 14px; border-radius:999px; background: rgba(255,255,255,.68); border:1px solid rgba(0,0,0,.07); font-size:13px;
}
.consult-steps{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px; margin-top:24px; }
.consult-step{ padding:22px; }
.step-number{
  width:46px; height:46px; border-radius:999px; display:grid; place-items:center; margin-bottom:18px;
  background: rgba(149,139,119,.14); color:var(--primary-dark); font-weight:700; letter-spacing:.08em;
}
.consult-step h3{ margin:0 0 10px; font-size:24px; font-family:"Cormorant Garamond", serif; }
.consult-step p{ margin:0; color:var(--muted); line-height:1.8; }
.products-cta{ padding-top: 8px; }
.products-cta-card{
  display:flex; justify-content:space-between; gap:24px; align-items:center; padding:28px;
  background: linear-gradient(135deg, rgba(255,255,255,.65), rgba(255,255,255,.32));
}
.products-cta-card h2{ margin:8px 0 10px; font-size: clamp(34px, 4.4vw, 56px); }
.products-cta-card p{ margin:0; color:var(--muted); line-height:1.85; max-width:700px; }
.products-cta-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }
.products-page .display{ font-family:"Bodoni Moda", serif; letter-spacing:-.03em; }
.products-page .counter-number{ font-family:"Bodoni Moda", serif; }

@media (max-width: 1100px){
  .products-pill-row, .products-feature-grid, .consult-steps, .editorial-stat-row{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .product-feature-large{ grid-column: span 2; }
  .editorial-grid, .editorial-grid-reverse, .flooring-band-grid{ grid-template-columns: 1fr; }
  .editorial-float-card{ position:relative; right:auto; bottom:auto; max-width:none; margin-top:14px; }
  .products-cta-card{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 760px){
  .products-hero{ min-height: 78vh; padding-top: 110px; }
  .products-nav-strip{ margin-top:-20px; }
  .products-pill-row, .products-feature-grid, .consult-steps, .editorial-stat-row{ grid-template-columns: 1fr; }
  .product-feature-large{ grid-column: span 1; }
  .product-pill{ width:100%; }
  .products-hero-copy{ font-size:16px; }
  .feature-copy h3, .editorial-float-card h3{ font-size:26px; }
  .products-cta-actions{ justify-content:flex-start; }
}

/* =========================
   PRODUCTS PAGE CLEAN KIMI-INSPIRED REWORK
   ========================= */
.products-page-kimi{
  background: linear-gradient(180deg, #f4f0ea 0%, #f1ede7 100%);
}
.products-page-kimi .display{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -.03em;
  color: #2e2a25;
}
.products-clean-hero{
  padding-top: 138px;
  padding-bottom: 36px;
}
.products-clean-hero-inner{
  text-align: center;
}
.products-clean-kicker{
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #a69372;
  font-weight: 600;
  margin-bottom: 14px;
}
.products-clean-title{
  font-size: clamp(54px, 7vw, 92px);
  margin: 0;
}
.products-clean-subtitle{
  margin: 14px 0 0;
  font-size: 18px;
  color: #73695f;
}
.products-clean-grid-section{ padding-top: 22px; }
.products-clean-grid{
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}
.clean-product-card{
  text-decoration: none;
}
.clean-product-media{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  box-shadow: 0 16px 40px rgba(72, 57, 40, .08);
  aspect-ratio: 1 / 1.2;
}
.clean-product-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22,1,.36,1);
}
.clean-product-card-tall .clean-product-media,
.clean-product-card-tall .clean-product-media img{ aspect-ratio: 1 / 1.2; }
.clean-product-card:hover .clean-product-media img{ transform: scale(1.03); }
.clean-product-copy{
  padding: 14px 4px 0;
}
.clean-product-copy h3{
  margin: 0 0 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 37px;
  line-height: .98;
  color: #2e2a25;
}
.clean-product-copy p{
  margin: 0;
  font-size: 14px;
  color: #8b8075;
}
.products-clean-editorial{ padding-top: 44px; }
.products-clean-editorial-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.products-clean-editorial-copy p{
  margin: 12px 0 20px;
  color: #6f665d;
  line-height: 1.9;
}
.clean-editorial-list{ display: grid; gap: 14px; }
.clean-editorial-list div{
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(100,84,64,.09);
}
.clean-editorial-list strong{
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.clean-editorial-list span{
  color: #756d64;
  line-height: 1.7;
  font-size: 14px;
}
.products-clean-editorial-media{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: end;
}

.clean-editorial-main,
.clean-editorial-side,
.materials-band-media{
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(72, 57, 40, .08);
  position: relative;
  background: rgba(255,255,255,.35);
}

.clean-editorial-main{
  aspect-ratio: .96 / 1.08;
}

.clean-editorial-side{
  aspect-ratio: .8 / 1.08;
}

.materials-band-media{
  aspect-ratio: 1.18 / .9;
}

.clean-editorial-main img,
.clean-editorial-side img,
.materials-band-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: auto;
}

.clean-editorial-main img{
  object-position: 52% 50%;
}

.clean-editorial-side img{
  object-position: 50% 50%;
}

.materials-band-card{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.38));
  border: 1px solid rgba(92,77,57,.08);
}

.materials-band-copy p{
  margin: 12px 0 20px;
  color: #6f665d;
  line-height: 1.85;
}
.materials-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.materials-chips span{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(100,84,64,.08);
  color: #5d5247;
  font-size: 13px;
}
.materials-band-media img{ aspect-ratio: 1.18 / .9; }
.clean-consult-steps{ margin-top: 26px; }
.clean-products-cta .products-cta-card{
  background: linear-gradient(135deg, rgba(255,255,255,.68), rgba(255,255,255,.44));
}
.products-page-kimi .consult-step,
.products-page-kimi .products-cta-card,
.products-page-kimi .clean-editorial-list div,
.products-page-kimi .materials-band-card{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 1100px){
  .products-clean-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .products-clean-editorial-grid,
  .materials-band-card{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .products-clean-hero{ padding-top: 118px; }
  .products-clean-grid{ grid-template-columns: 1fr; gap: 24px; }
  .products-clean-title{ font-size: 56px; }
  .clean-product-copy h3{ font-size: 31px; }
  .products-clean-editorial-media{ grid-template-columns: 1fr; }
}


.navlinks .dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: -14px;
}

.navlinks .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 8px 0;
  min-width: 220px;
  z-index: 1000;
}

.navlinks .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.products-overview-page .product-overview-grid{
  display:grid;
  gap:28px;
}
.products-overview-page .product-overview-card{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  overflow:hidden;
  padding:0;
  background: rgba(255,255,255,.58);
}
.products-overview-page .product-overview-media{
  margin:0;
  min-height: 420px;
  overflow:hidden;
}
.products-overview-page .product-overview-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.products-overview-page .product-overview-copy{
  padding: clamp(28px, 4vw, 52px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.products-overview-page .product-overview-copy h2{
  margin:0;
  font-size: clamp(34px, 4vw, 54px);
}
.products-overview-page .product-overview-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  max-width: 520px;
}
.products-overview-page .product-overview-copy .btn{
  width: fit-content;
  margin-top: 8px;
}
@media (max-width: 900px){
  .products-overview-page .product-overview-card{
    grid-template-columns: 1fr;
  }
  .products-overview-page .product-overview-media{
    min-height: 300px;
  }
}


.blog-grid-two{
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.blog-hero-card{
  padding: clamp(34px, 5vw, 56px);
  text-align:center;
}
.blog-sprout-title{
  margin:0;
  text-align:center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.05;
  padding-bottom: .2em;
}
.blog-sprout-title .sprout-word{
  display:inline-flex;
  align-items:flex-end;
  justify-content:center;
  gap: .01em;
}
.blog-sprout-title .sprout-char{
  position:relative;
  display:inline-block;
  color: rgba(46,42,37,.18);
  opacity: 0;
  transform: translateY(28px) scale(.86);
  filter: blur(2px);
  animation: sproutChar .9s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i) * .12s);
}
.blog-sprout-title .sprout-char::before{
  content:"";
  position:absolute;
  left:50%;
  bottom: .12em;
  width: 2px;
  height: .9em;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(149,139,119,0), rgba(149,139,119,.75));
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom;
  opacity: .9;
  animation: sproutStem .72s cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: calc(var(--i) * .12s);
}
.blog-sprout-title .sprout-char::after{
  content:"";
  position:absolute;
  left:50%;
  bottom: .82em;
  width: .42em;
  height: .22em;
  border-radius: 999px 999px 0 999px;
  border: 2px solid rgba(149,139,119,.72);
  border-left: 0;
  border-bottom: 0;
  transform: translateX(-10%) rotate(-18deg) scale(.2);
  opacity:0;
  animation: sproutLeaf .52s ease-out forwards;
  animation-delay: calc(.18s + var(--i) * .12s);
}
.blog-hero-subtitle{
  margin: 16px auto 0;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.85;
  font-size: clamp(16px, 2vw, 18px);
}
.blog-latest-title{
  margin:0 0 18px;
  font-size: clamp(36px, 4vw, 50px);
}
@keyframes sproutStem{
  0%{ transform: translateX(-50%) scaleY(0); opacity:0; }
  100%{ transform: translateX(-50%) scaleY(1); opacity:1; }
}
@keyframes sproutLeaf{
  0%{ opacity:0; transform: translateX(-10%) rotate(-18deg) scale(.2); }
  100%{ opacity:1; transform: translateX(-10%) rotate(-18deg) scale(1); }
}
@keyframes sproutChar{
  0%{ opacity:0; transform: translateY(28px) scale(.86); filter: blur(2px); color: rgba(46,42,37,.12); }
  65%{ opacity:1; }
  100%{ opacity:1; transform: translateY(0) scale(1); filter: blur(0); color: rgba(46,42,37,.96); }
}

@media (max-width: 900px){
  .blog-grid-two{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px){
  .blog-sprout-title{
    font-size: 56px;
  }
  .article-section p,
  .article-intro{
    font-size: 16px;
  }
  .article-actions .btn{
    width: 100%;
    justify-content: center;
  }
}


/* FAQ page clean accordion */
.faq-list{
  margin-top: 8px;
  border-top: 1px solid rgba(46,42,37,.12);
}
.faq-row{
  border-bottom: 1px solid rgba(46,42,37,.12);
}
.faq-question{
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 24px 0;
  font: inherit;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 500;
  cursor: pointer;
}
.faq-question span:first-child{
  max-width: 92%;
}
.faq-arrow{
  flex: 0 0 auto;
  font-size: 16px;
  transition: transform .28s ease;
}
.faq-row.is-open .faq-arrow{
  transform: rotate(180deg);
}
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer p{
  margin: 0;
  padding: 0 0 22px;
  max-width: 900px;
  color: var(--muted);
  line-height: 1.8;
}


/* ==== 2026 layout fixes ==== */
.page-cover-hero{
  position: relative;
  isolation: isolate;
  padding-top: 46px;
  padding-bottom: 46px;
  overflow: hidden;
}
.page-cover-hero::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 28px;
  background-image: linear-gradient(90deg, rgba(229,225,212,.90), rgba(229,225,212,.68)), var(--cover-image);
  background-size: cover;
  background-position: center;
  opacity: .96;
  z-index:-2;
}
.page-cover-hero::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.12));
  z-index:-1;
}
.page-cover-hero-inner{
  min-height: 220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}
.page-cover-hero-left .page-cover-hero-inner{
  align-items:flex-start;
  text-align:left;
}
.page-cover-title{
  margin:0;
  font-size: clamp(54px, 7vw, 92px);
}
.page-cover-subtitle{
  margin: 14px 0 0;
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.products-cover-hero{
  padding-top: 54px;
  padding-bottom: 54px;
}
.products-cover-hero .products-clean-hero-inner{
  min-height: 240px;
}
.blog-hero-section{
  padding-top: 36px;
  padding-bottom: 30px;
}
.blog-hero-inner{
  min-height: 260px;
}
.blog-sprout-title{
  margin:0;
  text-align:center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.02;
  padding-bottom: .16em;
}
.blog-sprout-title .sprout-word{
  display:inline-flex;
  gap:0;
}
.blog-sprout-title .sprout-char{
  position:relative;
  display:inline-block;
  color: rgba(46,42,37,.96);
  opacity: 0;
  transform: translateY(24px);
  animation: textSprout .72s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: calc(var(--i) * .09s);
  filter:none;
  clip-path:none;
  padding-bottom:.14em;
}
.blog-sprout-title .sprout-char::before,
.blog-sprout-title .sprout-char::after{
  content:none !important;
  display:none !important;
}
@keyframes textSprout{
  0%{ opacity:0; transform: translateY(24px); }
  100%{ opacity:1; transform: translateY(0); }
}
.greenbank-logo{
  height: 58px;
  width:auto;
  object-fit:contain;
}
.footer-logos{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}
.logo-divider{
  width:1px;
  height:44px;
  background: rgba(46,42,37,.14);
}
.dtshades-logo{
  max-height:72px;
}
@media (max-width: 768px){
  .page-cover-hero-inner, .products-cover-hero .products-clean-hero-inner, .blog-hero-inner{ min-height: 180px; }
  .page-cover-title, .products-clean-title{ font-size: 52px; }
  .page-cover-subtitle, .products-clean-subtitle, .blog-hero-subtitle{ font-size:16px; }
  .greenbank-logo{ height: 46px; }
  .dtshades-logo{ max-height:58px; }
}


/* Blog article pages - remove enclosing containers/cards */
.article-shellless{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
}

.article-hero-wrap,
.article-content-wrap{
  padding-top: 28px;
  padding-bottom: 28px;
}

.article-hero-card,
.article-content-card{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.article-title{
  margin-top: 18px;
}

.article-hero-image{
  margin: 28px 0 0;
}

.article-section{
  background: transparent !important;
}

.article-section + .article-section{
  margin-top: 22px;
}

@media (max-width: 768px){
  .article-hero-wrap,
  .article-content-wrap{
    padding-top: 18px;
    padding-bottom: 18px;
  }
}


/* 2026 products/page-cover sharp corner + uncropped kicker fix */
.page-cover-hero,
.page-cover-hero::before,
.page-cover-hero::after,
.products-cover-hero,
.products-cover-hero::before,
.products-cover-hero::after{
  border-radius: 0 !important;
}

.page-cover-hero{
  overflow: visible !important;
}

.page-cover-hero-inner,
.products-clean-hero-inner{
  overflow: visible !important;
  padding-top: 22px;
  padding-bottom: 22px;
}

.products-clean-kicker,
.eyebrow{
  display: inline-block;
  line-height: 1.6;
  padding-top: 6px;
  padding-bottom: 6px;
  overflow: visible !important;
}

.products-cover-hero .products-clean-hero-inner{
  min-height: 280px;
}

@media (max-width: 768px){
  .page-cover-hero-inner,
  .products-clean-hero-inner{
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .products-clean-kicker,
  .eyebrow{
    line-height: 1.5;
    padding-top: 4px;
    padding-bottom: 4px;
  }
}


/* Product showcase refresh */
.product-showcase-section{ padding-top: 10px; }
.product-showcase-heading{ max-width: 900px; margin: 0 auto 24px; text-align: center; }
.product-showcase-heading p{ margin: 10px auto 0; color: #6f665d; line-height: 1.8; max-width: 760px; }
.product-showcase-grid{ max-width: 1120px; margin: 0 auto; display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:24px; }
.showcase-grid-single{ grid-template-columns: minmax(0, 780px); justify-content:center; }
.showcase-card{ background: rgba(255,255,255,.78); border: 1px solid rgba(120,97,69,.12); border-radius: 24px; overflow:hidden; box-shadow: 0 20px 44px rgba(72,57,40,.08); }
.showcase-card video{ width:100%; display:block; aspect-ratio: 16 / 10; object-fit: cover; background:#000; }
.showcase-copy{ padding: 18px 18px 20px; }
.showcase-copy h3{ margin:0 0 6px; font-family: "Cormorant Garamond", serif; font-size: 34px; line-height: 1; color:#2e2a25; }
.showcase-copy p{ margin:0; color:#7c7268; }
.project-gallery-refresh{ padding-top: 8px; }
.project-refresh-grid{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:22px; }
.project-refresh-item{ margin:0; border-radius: 24px; overflow:hidden; box-shadow: 0 18px 40px rgba(72,57,40,.08); background: rgba(255,255,255,.76); }
.project-refresh-item img{ width:100%; height:100%; min-height: 280px; object-fit: cover; display:block; }
@media (max-width: 900px){ .product-showcase-grid, .project-refresh-grid{ grid-template-columns: 1fr; } }

/* Product showcase refined flow */
.product-showcase-heading{ margin-bottom: 18px; }
.product-showcase-heading .display{ margin-bottom: 0; }
.showcase-grid-stacked{ grid-template-columns: minmax(0, 780px); justify-content:center; gap: 28px; }
.showcase-card-flow{ position: relative; }
.showcase-next{ display:flex; align-items:center; justify-content:flex-end; gap:8px; padding: 0 18px 18px; color:#7b6b57; font-weight:600; text-decoration:none; }
.showcase-next:hover{ color:#4b4034; }
@media (max-width: 640px){ .showcase-next{ justify-content:flex-start; } }

/* =========================================================
   Mobile-friendly refinements (March 2026)
   ========================================================= */
html, body{
  max-width: 100%;
  overflow-x: hidden;
}

iframe, video{
  max-width: 100%;
}

@media (max-width: 980px){
  .container{
    width: min(100% - 32px, 1120px);
  }

  .navbar{
    height: 82px;
  }

  .header .brand{
    max-width: 180px;
  }

  .header .brand-logo,
  .article-page .brand-logo{
    height: 34px !important;
    max-height: 34px !important;
  }

  .brand-tagline{
    font-size: 11px;
    line-height: 1.15;
  }

  .mobile-panel{
    top: 82px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .section{
    padding: 52px 0;
  }

  .section-tight{
    padding: 34px 0;
  }

  .hero{
    min-height: auto;
  }

  .hero-content{
    padding: 64px 0 40px;
  }

  .hero-box{
    max-width: 100%;
    padding: 20px 18px 18px;
  }

  .hero-title{
    font-size: clamp(34px, 8vw, 46px);
    line-height: 1.05;
  }

  .hero-sub{
    font-size: 14px;
    line-height: 1.65;
  }

  .page-cover-title,
  .products-clean-title,
  .blog-hero-title,
  .section-heading h1,
  .section-heading h2{
    font-size: clamp(34px, 8vw, 52px) !important;
    line-height: 1.05;
  }

  .page-cover-subtitle,
  .products-clean-subtitle,
  .blog-hero-subtitle{
    font-size: 15px !important;
    line-height: 1.65;
  }

  .product-overview-card,
  .products-clean-editorial-grid,
  .editorial-grid,
  .project-refresh-grid,
  .product-showcase-grid,
  .footer-grid{
    grid-template-columns: 1fr !important;
  }

  .product-overview-card,
  .product-showcase-grid,
  .projects-grid,
  .products-clean-editorial-grid,
  .footer-grid{
    gap: 18px;
  }

  .products-cta-actions,
  .hero-actions,
  .showcase-next,
  .footer-bottom{
    gap: 10px;
  }

  .products-cta-actions .btn,
  .hero-actions .btn,
  .showcase-next .btn{
    width: 100%;
  }

  .footer-logos{
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-float{
    width: 58px;
    height: 58px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float img,
  .whatsapp-float i{
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 640px){
  .container{
    width: min(100% - 24px, 1120px);
  }

  .navbar{
    height: 78px;
  }

  .header .brand{
    max-width: 155px;
  }

  .header .brand-logo,
  .article-page .brand-logo{
    height: 30px !important;
    max-height: 30px !important;
  }

  .brand-tagline{
    font-size: 10px;
  }

  .mobile-btn{
    padding: 9px 11px;
    border-radius: 12px;
    font-size: 13px;
  }

  .mobile-panel{
    top: 78px;
    padding: 10px;
    border-radius: 0 0 14px 14px;
  }

  .hero-content{
    padding: 52px 0 28px;
  }

  .hero-box{
    padding: 16px 14px;
  }

  .card-inner,
  .blog-card,
  .products-cta-card,
  .showcase-card-body,
  .product-overview-copy{
    padding-left: 14px;
    padding-right: 14px;
  }

  .slideshow,
  .showcase-card video,
  .project-refresh-item img{
    height: auto;
    min-height: 0;
  }

  .map-embed,
  iframe[style*='height:420px']{
    height: 320px !important;
  }

  .whatsapp-float{
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float img,
  .whatsapp-float i{
    font-size: 26px;
    width: 26px;
    height: 26px;
  }
}


/* === March 2026 DTshades update pack === */
.page-cover-hero-inner,
.products-clean-hero-inner,
.about-cover-panel .container,
.page-title-center,
.contact-header-center .container,
.blogs-page-header .container,
.faq-page-header .container{
  text-align: center;
  align-items: center;
  justify-content: center;
}

.page-cover-hero-left .page-cover-hero-inner{
  align-items: center;
}

.about-cover-panel .container{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.page-cover-subtitle,
.products-clean-subtitle,
.about-story-kicker{
  margin-left:auto;
  margin-right:auto;
}

.page-cover-subtitle{
  max-width: 760px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.project-title-float{
  display:inline-block;
  animation: projectFloat 4.5s ease-in-out infinite;
}
@keyframes projectFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-7px); }
}

.social-float{
  right: 18px;
  bottom: 94px;
  gap: 12px;
}
.social-float a,
.social-pill{
  width: 64px;
  height: 64px;
  border-radius: 999px;
}
.social-float img,
.social-pill img{
  width: 28px;
  height: 28px;
}

.whatsapp-float i{
  font-size: 28px;
}

.video-preview{
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-preview video{
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: transparent;
  max-height: 100%;
}
.video-preview .video-play-btn{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%, -50%);
  width:76px;
  height:76px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  color:#2e2a25;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(0,0,0,.24);
  transition:transform .2s ease, opacity .2s ease;
}
.video-preview .video-play-btn:hover{
  transform:translate(-50%, -50%) scale(1.04);
}
.video-preview .video-play-btn svg{
  width:26px;
  height:26px;
  margin-left:4px;
}
.video-preview.is-playing .video-play-btn{
  opacity:0;
  pointer-events:none;
}

.clean-product-card a.clean-product-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

@media (max-width: 768px){
  .social-float{ right: 12px; bottom: 84px; }
  .social-float a, .social-pill, .whatsapp-float{ width: 54px; height: 54px; }
  .social-float img, .social-pill img, .whatsapp-float i{ width: 24px; height: 24px; font-size:24px; }
  .video-preview .video-play-btn{ width:62px; height:62px; }
}

/* =========================
   FULLSCREEN MEDIA LIGHTBOX
   ========================= */
html.lightbox-open,
body.lightbox-open{
  overflow: hidden;
}

.slideshow .slideshow-stage img,
.slideshow .slideshow-stage video,
.slideshow > img,
.slideshow > video{
  cursor: zoom-in;
}

.media-lightbox{
  position: fixed;
  inset: 0;
  z-index: 10040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.media-lightbox.is-open{
  opacity: 1;
  pointer-events: auto;
}
.media-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.media-lightbox-shell{
  position: relative;
  width: min(94vw, 1480px);
  height: min(92vh, 980px);
  margin: 4vh auto;
  display: grid;
  grid-template-columns: 72px minmax(0,1fr) 72px;
  grid-template-rows: auto minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
}
.media-lightbox-meta{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-right: 72px;
}
.media-lightbox-title,
.media-lightbox-count{
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.media-lightbox-title{
  font-weight: 600;
  letter-spacing: .01em;
}
.media-lightbox-count{
  font-size: 13px;
  color: rgba(255,255,255,.86);
}
.media-lightbox-stage{
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-lightbox-media{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  background: transparent;
}
.media-lightbox-arrow,
.media-lightbox-close,
.media-lightbox-dot{
  appearance: none;
  border: none;
}
.media-lightbox-arrow{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.media-lightbox-arrow:hover,
.media-lightbox-close:hover{
  transform: scale(1.04);
  background: rgba(255,255,255,.20);
}
.media-lightbox-arrow.prev{
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}
.media-lightbox-arrow.next{
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
}
.media-lightbox-close{
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, background .18s ease;
}
.media-lightbox-dots{
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.media-lightbox-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .18s ease, background .18s ease;
}
.media-lightbox-dot.is-active{
  background: rgba(255,255,255,.95);
  transform: scale(1.12);
}

@media (max-width: 980px){
  .media-lightbox-shell{
    width: min(96vw, 1480px);
    height: min(94vh, 980px);
    grid-template-columns: 52px minmax(0,1fr) 52px;
    gap: 14px;
  }
  .media-lightbox-meta{
    padding-right: 62px;
  }
}

@media (max-width: 640px){
  .media-lightbox-shell{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 18px 12px 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0,1fr) auto auto;
    gap: 12px;
  }
  .media-lightbox-meta{
    grid-column: 1;
    padding-right: 58px;
    flex-wrap: wrap;
  }
  .media-lightbox-stage{
    grid-column: 1;
    grid-row: 2;
  }
  .media-lightbox-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .media-lightbox-arrow.prev{ left: 10px; grid-column: auto; grid-row: auto; }
  .media-lightbox-arrow.next{ right: 10px; grid-column: auto; grid-row: auto; }
  .media-lightbox-close{
    top: 18px;
    right: 12px;
    width: 46px;
    height: 46px;
  }
  .media-lightbox-title,
  .media-lightbox-count{
    padding: 9px 14px;
    font-size: 13px;
  }
  .media-lightbox-dots{
    grid-column: 1;
    grid-row: 3;
  }
}
.slideshow{
  background: rgba(255,255,255,.72);
}

.slideshow-stage video,
.video-preview video{
  filter: saturate(1.02) contrast(1.01);
}

.slideshow-stage:has(video),
.video-preview:has(video){
  background:
    radial-gradient(circle at center, rgba(255,255,255,.22), rgba(255,255,255,.08));
}
/* ===== PREMIUM VIDEO CARD UPGRADE ===== */

.slideshow{
  background: rgba(255,255,255,.72);
  transition: background .35s ease, box-shadow .35s ease;
}

.slideshow-stage,
.video-preview{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slideshow-stage video,
.video-preview video{
  object-fit: contain;
  background: transparent;
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1);
  transition: transform .45s ease, opacity .45s ease, filter .35s ease;
  max-width: 100%;
  max-height: 100%;
}

.slideshow:hover .slideshow-stage video,
.video-preview:hover video{
  transform: scale(1.015);
}

.slideshow-stage:has(video),
.video-preview:has(video){
  background: radial-gradient(circle at center, rgba(255,255,255,.22), rgba(255,255,255,.08));
}
/* ===== CLEAN PROJECT CARDS ===== */
.project-clean-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(72, 57, 40, .08);
}

.project-clean-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.project-clean-card:hover img {
  transform: scale(1.08);
}

.project-clean-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: rgba(46, 42, 37, 0.92);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    background 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s cubic-bezier(.22,.61,.36,1),
    transform 0.35s cubic-bezier(.22,.61,.36,1);
}

.project-clean-card:hover .project-clean-label {
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  transform: translateY(-2px);
}
/* ================= CINEMATIC INTRO OVERLAY ================= */

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.25s cubic-bezier(.22,1,.36,1),
    visibility 1.25s cubic-bezier(.22,1,.36,1);
}

#intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-bg,
.intro-scrim {
  position: absolute;
  inset: 0;
}

.intro-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.36) 52%, rgba(0,0,0,.18) 100%),
    url("assets/home_hero_background.JPEG");
  background-size: cover;
  background-position: center;
  transform: scale(1.14);
  filter: saturate(.9) brightness(.82);
  transition:
    transform 1.6s cubic-bezier(.22,1,.36,1),
    filter 1.6s cubic-bezier(.22,1,.36,1),
    opacity 1.2s ease;
}

.intro-scrim {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.08), rgba(0,0,0,.12) 46%, rgba(0,0,0,.38) 100%);
  opacity: 1;
  transition: opacity 1.2s ease;
}

#intro-overlay.hidden .intro-bg {
  transform: scale(1.01);
  filter: saturate(.98) brightness(.95);
  opacity: 0.25;
}

#intro-overlay.hidden .intro-scrim {
  opacity: 0;
}

.intro-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 760px;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 1.05s cubic-bezier(.22,1,.36,1),
    opacity 1.05s cubic-bezier(.22,1,.36,1),
    filter 1.05s cubic-bezier(.22,1,.36,1);
}

#intro-overlay.hidden .intro-inner {
  transform: translateY(-14px) scale(.985);
  opacity: 0;
  filter: blur(8px);
}

.intro-logo-wrap {
  overflow: hidden;
}

.intro-kicker {
  margin-bottom: 14px;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  opacity: 0;
  transform: translateY(18px);
  animation: introKicker 0.9s cubic-bezier(.22,1,.36,1) .15s forwards;
}

.intro-title {
  margin: 0;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 10vw, 116px);
  line-height: .92;
  letter-spacing: .01em;
  text-shadow: 0 12px 40px rgba(0,0,0,.24);
}

.intro-title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(2deg);
  animation: introLogoReveal 1.15s cubic-bezier(.22,1,.36,1) forwards;
}

.intro-title-line:nth-child(1) {
  animation-delay: .25s;
}

.intro-title-line:nth-child(2) {
  animation-delay: .42s;
}

.intro-sub {
  margin: 18px 0 0;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  opacity: 0;
  transform: translateY(18px);
  animation: introSub 0.95s cubic-bezier(.22,1,.36,1) .72s forwards;
}

#intro-enter {
  margin-top: 34px;
  min-width: 148px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-weight: 600;
  letter-spacing: .04em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px);
  animation: introButton 0.95s cubic-bezier(.22,1,.36,1) .95s forwards;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

#intro-enter:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.34);
  box-shadow: 0 18px 38px rgba(0,0,0,.2);
}

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

@keyframes introLogoReveal {
  from {
    opacity: 0;
    transform: translateY(110%) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

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

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

@media (max-width: 640px) {
  .intro-title {
    gap: 6px;
    font-size: clamp(48px, 14vw, 74px);
  }

  .intro-sub {
    font-size: 12px;
    letter-spacing: .16em;
  }

  #intro-enter {
    margin-top: 28px;
    min-width: 132px;
    padding: 12px 24px;
  }
}
/* ================= INSANE LOGO ANIMATION ================= */

.intro-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-logo-shell {
  position: relative;
  width: min(240px, 42vw);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  isolation: isolate;
  animation: introLogoShellIn 1.35s cubic-bezier(.22,1,.36,1) forwards;
  opacity: 0;
  transform: translateY(22px) scale(.9);
}

.intro-logo {
  position: relative;
  z-index: 4;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;

  opacity: 0;
  transform: scale(.88);
  filter:
    blur(10px)
    drop-shadow(0 16px 42px rgba(0,0,0,.28));

  animation:
    introLogoImageIn 1.2s cubic-bezier(.22,1,.36,1) .08s forwards,
    introLogoFloat 4.5s ease-in-out 1.35s infinite;
}

.intro-logo-glow,
.intro-logo-ring,
.intro-logo-shine {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-logo-glow {
  z-index: 1;
  width: 125%;
  height: 125%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 28%, rgba(255,255,255,.04) 52%, transparent 72%);
  filter: blur(20px);
  opacity: 0;
  animation:
    introGlowIn 1.15s cubic-bezier(.22,1,.36,1) .12s forwards,
    introGlowPulse 3.8s ease-in-out 1.4s infinite;
}

.intro-logo-ring {
  z-index: 2;
  width: 116%;
  height: 116%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 26px rgba(255,255,255,.08);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86);
  animation: introRingIn 1.2s cubic-bezier(.22,1,.36,1) .22s forwards;
}

.intro-logo-ring::before,
.intro-logo-ring::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.08);
}

.intro-logo-ring::before {
  opacity: .45;
  transform: scale(1.06);
}

.intro-logo-ring::after {
  opacity: .22;
  transform: scale(1.13);
}

.intro-logo-shine {
  z-index: 5;
  width: 62%;
  height: 155%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.05) 18%,
    rgba(255,255,255,.42) 48%,
    rgba(255,255,255,.08) 78%,
    rgba(255,255,255,0) 100%
  );
  filter: blur(2px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate(-170%, -50%) rotate(14deg);
  animation: introShineSweep 1.7s cubic-bezier(.22,1,.36,1) .72s forwards;
}

/* Make the rest sync better after logo */
.intro-kicker {
  margin-top: 2px;
  margin-bottom: 14px;
  letter-spacing: .34em;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  opacity: 0;
  transform: translateY(18px);
  animation: introKicker 0.9s cubic-bezier(.22,1,.36,1) .34s forwards;
}

.intro-title-line:nth-child(1) {
  animation-delay: .5s;
}

.intro-title-line:nth-child(2) {
  animation-delay: .66s;
}

.intro-sub {
  animation-delay: .95s;
}

#intro-enter {
  animation-delay: 1.14s;
}

/* ===== KEYFRAMES ===== */

@keyframes introLogoShellIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLogoImageIn {
  0% {
    opacity: 0;
    transform: scale(.88);
    filter:
      blur(10px)
      drop-shadow(0 16px 42px rgba(0,0,0,.18));
  }
  62% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter:
      blur(0)
      drop-shadow(0 20px 48px rgba(0,0,0,.34));
  }
}

@keyframes introGlowIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.72);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes introGlowPulse {
  0%, 100% {
    opacity: .48;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: .72;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes introRingIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.86);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes introShineSweep {
  0% {
    opacity: 0;
    transform: translate(-170%, -50%) rotate(14deg);
  }
  18% {
    opacity: .92;
  }
  82% {
    opacity: .88;
  }
  100% {
    opacity: 0;
    transform: translate(155%, -50%) rotate(14deg);
  }
}

@keyframes introLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.01);
  }
}

/* Optional: slightly soften everything when intro exits */
#intro-overlay.hidden .intro-logo-shell {
  transform: translateY(-10px) scale(.97);
  opacity: 0;
  transition:
    transform 1.05s cubic-bezier(.22,1,.36,1),
    opacity 1.05s cubic-bezier(.22,1,.36,1),
    filter 1.05s cubic-bezier(.22,1,.36,1);
  filter: blur(6px);
}

#intro-overlay.hidden .intro-logo-glow {
  opacity: 0;
  transition: opacity 1s ease;
}

#intro-overlay.hidden .intro-logo-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.04);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

@media (max-width: 640px) {
  .intro-logo-shell {
    width: min(180px, 48vw);
    margin-bottom: 20px;
  }

  .intro-logo-glow {
    width: 135%;
    height: 135%;
  }

  .intro-logo-ring {
    width: 122%;
    height: 122%;
  }
}
/* ================= LOGO ANIMATION ================= */

.intro-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;

  opacity: 0;
  transform: scale(.92) translateY(10px);
  filter: blur(6px);

  animation: introLogoFade 1.2s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: 0.1s;
}

/* Adjust spacing so it feels balanced */
.intro-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Push text slightly down after logo */
.intro-kicker {
  margin-top: 8px;
}

/* LOGO KEYFRAME */
@keyframes introLogoFade {
  0% {
    opacity: 0;
    transform: scale(.92) translateY(10px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
/* ================= LOGO CARD ================= */

.intro-logo-card {
  position: relative;
  padding: 28px 36px;
  border-radius: 20px;

  /* MATCH YOUR HEADER STYLE */
  background: #e9e3d9;

  /* premium glass feel */
  box-shadow:
    0 25px 60px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.6);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

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

  overflow: hidden;
}

/* Make logo darker / crisp */
.intro-logo {
  filter:
    contrast(1.05)
    brightness(0.95)
    drop-shadow(0 8px 18px rgba(0,0,0,.15));
}
.intro-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0,0,0,.08);
  pointer-events: none;
}
/* ================= INTRO LOGO -> NAVBAR TRANSITION UPGRADE ================= */

/* Bigger intro brand without enlarging the card too much */
.intro-logo-shell{
  width: min(320px, 58vw);
}

.intro-logo-card{
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(229,225,212,.96);
  box-shadow:
    0 24px 60px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.65);
}

/* Make logo occupy much more of the card */
.intro-logo{
  width: 100%;
  max-width: none;
  margin-bottom: 0;
  transform-origin: center center;
}

/* Hide the real navbar logo during handoff, then reveal it */
.brand-logo{
  transition: opacity .35s ease, transform .35s ease;
}

body.intro-handoff-active #navbar-brand-logo{
  opacity: 0;
}

body.intro-complete #navbar-brand-logo{
  opacity: 1;
}

/* Flying transition logo */
.intro-logo-fly{
  position: fixed;
  z-index: 10080;
  pointer-events: none;
  object-fit: contain;
  will-change: top, left, width, height, transform, opacity;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.18));
}

/* Make intro card/logo fade a bit cleaner during handoff */
#intro-overlay.handoff .intro-inner{
  opacity: 0;
  transform: translateY(-8px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .55s ease,
    transform .75s cubic-bezier(.22,1,.36,1),
    filter .75s cubic-bezier(.22,1,.36,1);
}

#intro-overlay.handoff .intro-logo-card{
  opacity: .25;
  transform: scale(.96);
  transition:
    opacity .55s ease,
    transform .75s cubic-bezier(.22,1,.36,1);
}

/* Slightly stronger navbar logo presence once transition ends */
.header .brand-logo{
  transform-origin: left center;
}

body.intro-complete .header .brand-logo{
  transform: scale(1);
}

/* Mobile balance */
@media (max-width: 640px){
  .intro-logo-shell{
    width: min(250px, 64vw);
  }

  .intro-logo-card{
    padding: 14px 18px;
  }
}
/* =========================
   MOBILE INTRO SKIP PATCH
   - hides intro overlay on mobile/tablet
   - prevents navbar logo flicker
   ========================= */

@media (max-width: 991px), (hover: none) and (pointer: coarse) {
  #intro-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body,
  html {
    overflow-y: auto !important;
  }

  body.intro-handoff-active #navbar-brand-logo,
  body.intro-complete #navbar-brand-logo,
  #navbar-brand-logo {
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-logo-fly,
  .intro-logo-glow,
  .intro-logo-ring,
  .intro-logo-shine {
    display: none !important;
  }
}