/* Trinetra Stone Awe — Luxury Theme */
:root{
  --ts-red:#7A0C0C;
  --ts-gold:#D4AF37;
  --ts-black:#111111;
  --ts-muted:#6c757d;
  --ts-bg:#ffffff;
  --ts-border:rgba(17,17,17,.10);
  --ts-shadow:0 18px 45px rgba(0,0,0,.10);
  --ts-font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ts-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

html{ scroll-behavior:smooth; }
body{
  font-family: var(--ts-font-body);
  color: var(--ts-black);
  background: var(--ts-bg);
  letter-spacing:.1px;
}

.font-display{ font-family: var(--ts-font-display); }
.text-gold{ color: var(--ts-gold) !important; }
.text-red{ color: var(--ts-red) !important; }

.btn-lux{
  border-radius: 10px;
  padding: .85rem 1.25rem;
  font-weight: 600;
  letter-spacing: .2px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-lux:focus{ box-shadow: none; }
.btn-lux:hover{ transform: translateY(-2px); box-shadow: var(--ts-shadow); }
.btn-lux-primary{
  background: var(--ts-red);
  border-color: var(--ts-red);
  color: #fff;
}
.btn-lux-primary:hover{ background:#5f0909; border-color:#5f0909; color:#fff; }
.btn-lux-outline{
  background: transparent;
  border: 1px solid rgba(212,175,55,.65);
  color: var(--ts-gold);
}
.btn-lux-outline:hover{
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.9);
  color: var(--ts-gold);
}

/* Navbar */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-lux{
  background: rgba(20,10,10,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 82px;
  padding: 10px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.navbar-lux.is-scrolled{
  background: rgba(20,10,10,.88);
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
  padding: 8px 0;
  min-height: 76px;
}
.nav-link-lux{
  position: relative;
  font-weight: 600;
  color: rgba(255,255,255,.88) !important;
  letter-spacing: .2px;
  transition: color .25s ease;
}
.nav-link-lux:hover{ color: #fff !important; }
.nav-link-lux::after{
  content:"";
  position:absolute;
  left: .5rem;
  right: .5rem;
  bottom: .35rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ts-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
  opacity:.9;
}
.nav-link-lux:hover::after{ transform: scaleX(1); }
.navbar-lux .navbar-toggler{
  border-color: rgba(255,255,255,.4);
}
.navbar-lux .navbar-toggler-icon{
  filter: invert(1);
}

.logo-wrapper{
  background: #fff;
  padding: 1px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-wrapper:hover{
  text-decoration: none;
}
.navbar-logo{
  height: 62px;
  width: auto !important;
  display: block;
  object-fit: contain;
  image-rendering: auto;
  transform: none !important;
  filter: none !important;
  max-width: 100%;
}
.brand-wrapper{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand-text{
  border-left: 2px solid rgba(212,175,55,.45);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.brand-text h2{
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}
.brand-text span{
  display: block;
  color: var(--ts-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
}
.footer-logo{
  width: auto;
  height: 70px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  background: transparent;
  border: none;
  box-shadow: none;
  display: block;
}
.navbar-lux > .container{
  align-items: center;
}

/* Hero */
.hero{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(110deg, rgba(122,12,12,.76), rgba(0,0,0,.70)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-inner{
  position:relative;
  z-index: 1;
  padding: 7rem 0 5rem;
}
.hero-kicker{
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  color: rgba(255,255,255,.88);
}
.hero h1{
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin: .85rem 0 1rem;
}
.hero p{
  color: rgba(255,255,255,.86);
  font-size: 1.05rem;
  max-width: 48rem;
  margin: 0 auto 1.8rem;
}

/* Sections */
.section-pad{ padding: 105px 0; }
.page-home .section-pad{ padding: 110px 0; }
.section-title{
  font-size: 2.1rem;
  margin-bottom: .75rem;
}
.section-subtitle{
  color: var(--ts-muted);
  max-width: 54rem;
}
.card-lux{
  border: 1px solid var(--ts-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
}
.card-lux:hover{ transform: translateY(-3px); box-shadow: var(--ts-shadow); }

.project-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ts-border);
  background: #fff;
}
.project-tile img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .35s ease;
}
.project-tile:hover img{ transform: scale(1.06); }
.project-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.68));
  opacity: .95;
}
.project-meta{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
}
.badge-gold{
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.45);
  color: var(--ts-gold);
}

/* Reveal on scroll */
[data-reveal]{ opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-in{ opacity: 1; transform: translateY(0); }

/* Footer */
.footer{
  background: #0f0f0f;
  color: rgba(255,255,255,.86);
}
.footer a{ color: rgba(255,255,255,.82); text-decoration: none; }
.footer a:hover{ color: var(--ts-gold); }

/* WhatsApp button */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1050;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
  transition: transform .2s ease;
}
.wa-float:hover{ transform: translateY(-2px); }

/* ─── Home page ─── */
@media (max-width:991.98px){
  .brand-text h2{
    font-size: 21px;
    letter-spacing: 1.5px;
  }
  .brand-text span{
    font-size: 10px;
    letter-spacing: 3px;
  }
  .navbar-lux .navbar-collapse{
    margin-top: .75rem;
    padding: .85rem;
    border-radius: 14px;
  }
  .navbar-lux .navbar-collapse.show,
  .navbar-lux .navbar-collapse.collapsing{
    background: rgba(20,10,10,.96);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.1);
  }
  .navbar-lux .navbar-nav{
    gap: .15rem;
  }
  .navbar-lux .nav-item .btn-lux{
    width: 100%;
    margin-top: .35rem;
    text-align: center;
  }
}

.home-section-label{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ts-red);
  margin-bottom: .85rem;
}
.home-section-label::before{
  content:"";
  width: 28px;
  height: 1px;
  background: var(--ts-gold);
}
.home-section-label--light{ color: var(--ts-gold); }
.home-section-label--light::before{ background: rgba(255,255,255,.35); }

.btn-lux-lg{
  padding: 1rem 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.btn-lux-glass{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-lux-glass:hover{
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

/* Hero */
.home-hero,
.hero-section{
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  margin-top: -82px;
  padding-top: 82px;
}
.home-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20,5,5,.55), rgba(20,5,5,.75)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=2000&auto=format&fit=crop") center/cover no-repeat;
  will-change: transform;
}
.home-hero-grain{
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.home-hero-inner{
  position: relative;
  z-index: 2;
  padding: 40px 0 2.5rem;
}
.hero-content{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width:992px){
  .hero-content{
    margin-left: 0;
    margin-right: 0;
  }
}
.home-hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .45rem 1rem .45rem .65rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.home-hero-kicker-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ts-gold);
  box-shadow: 0 0 12px rgba(212,175,55,.6);
  animation: home-pulse 2s ease infinite;
}
@keyframes home-pulse{
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.6; transform:scale(.85); }
}
.home-hero-title,
.hero-title{
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  max-width: 600px;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-top: 10px;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.25);
}
@media (max-width:991.98px){
  .home-hero-title,
  .hero-title{
    margin-left: auto;
    margin-right: auto;
  }
}
.home-hero-lead{
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}
.home-hero-trust{
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.home-hero-trust span{
  position: relative;
  padding-left: 1rem;
}
.home-hero-trust span::before{
  content:"";
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ts-gold);
}

.home-hero-visual{
  position: relative;
  height: 380px;
  max-width: 420px;
  margin-left: auto;
}
.home-hero-visual-main{
  position: absolute;
  inset: 0 16% 0 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
}
.home-hero-visual-main img,
.home-hero-visual-accent img,
.luxury-card-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: transform .4s ease;
}
.luxury-card-image:hover,
.home-hero-visual-main:hover .luxury-card-image{
  transform: scale(1.02);
}
.home-hero-visual-accent{
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 46%;
  height: 52%;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 36px rgba(0,0,0,.3);
}
.home-hero-badge{
  position: absolute;
  top: 20px;
  right: 0;
  background: rgba(255,255,255,.95);
  color: var(--ts-black);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0,0,0,.2);
}
.home-hero-badge-num{
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ts-red);
}
.home-hero-badge-label{
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.3;
  margin-top: .25rem;
  color: var(--ts-muted);
}

.home-hero-stats{
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-bottom: 3.5rem;
}
.home-stats-bar{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.14);
}
@media (min-width:768px){
  .home-stats-bar{ grid-template-columns: repeat(4, 1fr); }
}
.home-stat{
  background: rgba(0,0,0,.35);
  padding: 1.35rem 1rem;
  text-align: center;
}
.home-stat-value{
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ts-gold);
  line-height: 1.1;
}
.home-stat-label{
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .35rem;
}

.home-scroll-hint{
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .25s ease;
  animation: home-bob 2.5s ease infinite;
}
.home-scroll-hint:hover{ color: rgba(255,255,255,.85); }
@keyframes home-bob{
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(6px); }
}

/* About */
.home-about{ background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.home-about-features{
  display: grid;
  gap: 1.1rem;
  margin-top: 1.75rem;
}
.home-about-feature{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.home-about-feature-icon{
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(122,12,12,.08);
  color: var(--ts-red);
}
.home-about-collage{
  position: relative;
  min-height: 420px;
}
.home-about-collage-a{
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ts-shadow);
}
.home-about-collage-b{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 52%;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}
.home-about-collage-a img,
.home-about-collage-b img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-about-collage-card{
  position: absolute;
  left: 8%;
  bottom: 6%;
  max-width: 220px;
  background: var(--ts-red);
  color: #fff;
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 16px 40px rgba(122,12,12,.25);
}

/* Services */
.home-services{
  background: #fff;
  position: relative;
}
.home-services::before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ts-border), transparent);
}
.home-service-card{
  height: 100%;
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--ts-border);
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.home-service-card::before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ts-red), var(--ts-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.home-service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.1);
  border-color: rgba(212,175,55,.3);
}
.home-service-card:hover::before{ transform: scaleX(1); }
.home-service-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(122,12,12,.1), rgba(212,175,55,.12));
  color: var(--ts-red);
  margin-bottom: 1.1rem;
}
.home-service-title{
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .55rem;
}
.home-service-desc{
  font-size: .92rem;
  color: var(--ts-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.home-service-link{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ts-red);
  text-decoration: none;
  transition: gap .25s ease;
}
.home-service-link:hover{ gap: .6rem; color: var(--ts-red); }

/* Projects */
.home-projects{ background: #fafafa; }
.home-project-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:768px){
  .home-project-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .home-project-tile--featured{
    grid-column: span 2;
  }
  .home-project-tile--featured img{ height: 380px; }
}
@media (min-width:992px){
  .home-project-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  .home-project-tile--featured{
    grid-column: span 2;
    grid-row: span 2;
  }
  .home-project-tile--featured img{ height: 100%; min-height: 420px; }
}
.home-project-tile{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  min-height: 260px;
}
.home-project-tile img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}
.home-project-tile--featured img{
  height: 260px;
}
.home-project-tile:hover img{ transform: scale(1.07); }
.home-project-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
  transition: opacity .3s ease;
}
.home-project-tile:hover .home-project-overlay{
  background: linear-gradient(180deg, rgba(122,12,12,.15) 0%, rgba(0,0,0,.82) 100%);
}
.home-project-content{
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
}
.home-project-tag{
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(212,175,55,.2);
  border: 1px solid rgba(212,175,55,.45);
  color: var(--ts-gold);
}
.home-project-tag--muted{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
}
.home-project-title{
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.home-project-year{
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}
.home-project-arrow{
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity .3s ease, transform .3s ease;
}
.home-project-tile:hover .home-project-arrow{
  opacity: 1;
  transform: translate(0, 0);
}
.home-project-empty{
  grid-column: 1 / -1;
  padding: 2.5rem;
  border-radius: 18px;
  border: 1px dashed var(--ts-border);
  text-align: center;
  background: #fff;
}

/* Why us */
.home-why{
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.home-why-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17,17,17,.94), rgba(122,12,12,.88)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.home-why-lead{
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 28rem;
}
.home-why-card{
  padding: 1.35rem;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  height: 100%;
  transition: background .3s ease, transform .3s ease;
}
.home-why-card:hover{
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}
.home-why-num{
  font-size: 1.6rem;
  color: var(--ts-gold);
  line-height: 1;
  margin-bottom: .65rem;
}
.home-why-desc{
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

/* Videos */
.home-video-card{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--ts-border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.home-video-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--ts-shadow);
}
.home-video-frame{
  position: relative;
  padding-top: 56.25%;
  background: #111;
}
.home-video-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-video-body{ padding: 1.25rem; }
.home-video-title{
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.home-video-desc{
  font-size: .88rem;
  color: var(--ts-muted);
  margin: 0;
  line-height: 1.55;
}

/* CTA */
.home-cta{
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.home-cta-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(122,12,12,.88), rgba(17,17,17,.92)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
}
.home-cta-inner{
  max-width: 640px;
  margin: 0 auto;
}
.home-cta-lead{
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

@media (max-width:991px){
  .home-hero{ min-height: auto; padding-bottom: 0; }
  .home-hero-stats{ padding-bottom: 4.5rem; }
  .home-scroll-hint{ display: none; }
  .home-about-collage{ min-height: 320px; margin-top: 1rem; }
  .home-why-bg{ background-attachment: scroll; }
}
@media (max-width:575px){
  .brand-wrapper{ gap: 12px; }
  .brand-text{
    padding-left: 12px;
    gap: 4px;
  }
  .brand-text h2{
    font-size: 18px;
    letter-spacing: 1.25px;
  }
  .brand-text span{
    font-size: 9px;
    letter-spacing: 2.5px;
  }
  .footer-logo{ height: 56px; }
}
