/* Trinetra Stone Awe — Luxury Theme
   Brand identity: custom TRINETRA wordmark = logo artwork only.
   Display/nav = Poiret One · Body/reading = Inter */

:root{
  --ts-red:#7A0C0C;
  --ts-gold:#D4AF37;
  --ts-black:#111111;
  --ts-muted:#3a424e;
  --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, sans-serif;
  --ts-font-display: "Poiret One", system-ui, -apple-system, Segoe UI, sans-serif;
  --ts-font-nav: "Poiret One", system-ui, -apple-system, Segoe UI, sans-serif;
}

html{ scroll-behavior:smooth; }
body{
  font-family: var(--ts-font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ts-black);
  background: var(--ts-bg);
  letter-spacing: .01em;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Display / brand headings — Poiret One */
h1, h2, h3, h4, h5, h6,
.font-display,
.section-title,
.page-heading,
.hero h1,
.home-hero-title,
.hero-title{
  font-family: var(--ts-font-display);
  font-weight: 700;
  letter-spacing: .02em;
}
.font-display{
  font-weight: 700;
  letter-spacing: .03em;
}
.text-gold{ color: var(--ts-gold) !important; }
.text-red{ color: var(--ts-red) !important; }

/* Brand labels / short titles stay elegant */
.text-gold.fw-semibold,
.text-red.fw-semibold,
.card-lux > .fw-semibold,
.card-lux .fw-semibold:not(.small){
  font-family: var(--ts-font-nav);
  font-weight: 700;
  letter-spacing: .02em;
}

/* Readable body / muted copy — Inter */
p,
.text-muted,
.section-subtitle,
.page-intro-copy,
.lead,
.small,
.form-control,
.form-select,
.form-label,
.footer p,
.office-card-address,
.office-card-meta,
.service-card-desc,
.home-service-desc,
.home-video-desc,
.home-why-lead,
.home-why-desc,
.home-cta-lead,
.home-hero-lead{
  font-family: var(--ts-font-body);
}
.text-muted{
  color: var(--ts-muted) !important;
  font-weight: 400;
  line-height: 1.65;
}
.card-lux .text-muted{
  color: #343b45 !important;
  font-family: var(--ts-font-body);
  font-weight: 400;
  line-height: 1.7;
}
.card-lux .text-gold{
  font-family: var(--ts-font-nav);
  font-size: 1.125rem; /* ~18px — 2px larger than body */
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
}

.btn-lux{
  border-radius: 10px;
  padding: .85rem 1.25rem;
  font-family: var(--ts-font-nav);
  font-weight: 600;
  letter-spacing: .04em;
  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: #140a0a;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 88px;
  padding: 12px 0;
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.navbar-lux.is-scrolled{
  background: #100808;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  padding: 10px 0;
  min-height: 80px;
}
.nav-link-lux{
  position: relative;
  font-family: var(--ts-font-nav);
  font-weight: 600;
  font-size: .95rem;
  color: rgba(255,255,255,.95) !important;
  letter-spacing: .05em;
  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: 1px solid rgba(212,175,55,.45);
  border-radius: 8px;
  padding: .45rem .55rem;
}
.navbar-lux .navbar-toggler:focus{
  box-shadow: 0 0 0 .15rem rgba(212,175,55,.2);
}
.navbar-lux .navbar-toggler-icon{
  /* Gold hamburger lines */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-wrapper{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}
.brand-wrapper:hover{
  text-decoration: none;
}
.brand-logo-tile{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  padding: 4px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.navbar-logo{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.brand-divider{
  flex-shrink: 0;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, var(--ts-gold), transparent);
}
.brand-wordmark{
  display: block;
  height: 42px;
  width: auto;
  max-width: min(230px, 36vw);
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
}
.footer-logo{
  width: auto;
  height: 72px;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
}
.footer-brand-tile{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  padding: 4px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.footer-brand-mark{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.footer-brand-divider{
  flex-shrink: 0;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--ts-gold), transparent);
}
.footer-brand-wordmark{
  display: block;
  height: 48px;
  width: auto;
  max-width: min(260px, 55vw);
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
}
.navbar-lux > .container,
.navbar-lux-inner{
  align-items: center;
  flex-wrap: nowrap;
  gap: .75rem;
}
.header-cta{
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: .75rem;
  position: relative;
  z-index: 1;
  font-family: var(--ts-font-nav);
  font-weight: 600;
  letter-spacing: .04em;
  background: #8B1E1E !important;
  border-color: #8B1E1E !important;
  color: #fff !important;
}
.header-cta:hover{
  background: #731818 !important;
  border-color: #731818 !important;
  color: #fff !important;
}
@media (max-width:991.98px){
  .header-cta{
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: .5rem;
    text-align: 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{
  font-family: var(--ts-font-body);
  font-weight: 400;
  color: rgba(255,255,255,.9);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto 1.8rem;
}

/* Sections */
.section-pad{ padding: 105px 0; }
.page-home .section-pad{ padding: 110px 0; }
.section-title{
  font-family: var(--ts-font-display);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.section-subtitle{
  color: var(--ts-muted);
  max-width: 42rem;
  font-family: var(--ts-font-body);
  font-weight: 400;
  font-size: 1.125rem; /* ~18px */
  line-height: 1.7;
  letter-spacing: .01em;
}
.page-intro-copy{
  max-width: 46rem;
  margin-bottom: 2.25rem;
  font-family: var(--ts-font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ts-muted);
}
.page-kicker{
  margin: 0 0 .65rem;
  font-family: var(--ts-font-nav);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ts-red);
}
.page-heading{
  margin: 0 0 1.1rem;
  font-family: var(--ts-font-nav);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ts-black);
  line-height: 1.08;
}
.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); }
.services-grid{
  margin-top: 1.75rem !important;
}
.service-card{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 2rem 1.75rem 1.85rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.045);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}
.service-card-mark{
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.15rem;
}
.service-card-line{
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--ts-gold), rgba(212,175,55,.2));
}
.service-card-diamond{
  width: 7px;
  height: 7px;
  background: var(--ts-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.service-card-title{
  margin: 0 0 .7rem;
  font-family: var(--ts-font-nav);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
  color: var(--ts-gold);
}
.service-card-desc{
  margin: 0;
  flex: 1;
  font-family: var(--ts-font-body);
  color: #343b45;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
}

/* Contact — office cards */
.office-card{
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(17,17,17,.045);
  padding: 1.5rem 1.4rem 1.35rem;
}
.office-card--main{
  border-color: rgba(212,175,55,.28);
  background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}
.office-card-label{
  font-family: var(--ts-font-nav);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ts-red);
  margin-bottom: .45rem;
}
.office-card-title{
  margin: 0 0 .75rem;
  font-family: var(--ts-font-nav);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ts-black);
  letter-spacing: .01em;
}
.office-card-address{
  font-family: var(--ts-font-body);
  color: #343b45;
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.office-card-meta{
  display: grid;
  gap: .55rem;
  margin-bottom: 1rem;
  font-family: var(--ts-font-body);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.6;
}
.office-card-meta a{
  color: var(--ts-black);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,12,12,.2);
}
.office-card-meta a:hover{
  color: var(--ts-red);
  border-bottom-color: var(--ts-red);
}
.office-meta-label{
  display: inline-block;
  min-width: 3.6rem;
  margin-right: .45rem;
  font-family: var(--ts-font-nav);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ts-gold);
}
.office-card-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

/* Enquiry form */
.enquiry-form .form-label{
  font-family: var(--ts-font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #2b3036;
  margin-bottom: .4rem;
}
.enquiry-form .form-control,
.enquiry-form .form-select{
  border-radius: 10px;
  border-color: rgba(17,17,17,.12);
  padding: .72rem .9rem;
  font-family: var(--ts-font-body);
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ts-black);
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus{
  border-color: rgba(122,12,12,.35);
  box-shadow: 0 0 0 .2rem rgba(122,12,12,.08);
}
.enquiry-form textarea.form-control{
  min-height: 110px;
  resize: vertical;
}
.enquiry-actions .btn[disabled]{
  opacity: .7;
  cursor: wait;
}
.enquiry-alert{
  border-radius: 10px;
}

.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,.88);
  font-family: var(--ts-font-body);
  font-weight: 400;
  line-height: 1.65;
}
.footer a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-family: var(--ts-font-body);
  font-weight: 400;
}
.footer a:hover{ color: var(--ts-gold); }
.footer .text-gold{
  font-family: var(--ts-font-nav);
  font-weight: 700;
  letter-spacing: .04em;
}
.footer p,
.footer .small{
  font-family: var(--ts-font-body);
  font-weight: 400;
  line-height: 1.7;
}

/* 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-logo-tile{
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }
  .brand-divider{ height: 36px; }
  .brand-wordmark{
    height: 34px;
    max-width: min(180px, 38vw);
  }
  .brand-wrapper{ gap: 10px; }
  .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 .header-cta{
    width: 100%;
    margin-top: .35rem;
    text-align: center;
  }
}

.home-section-label{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ts-font-nav);
  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: -88px;
  padding-top: 88px;
}
.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-family: var(--ts-font-body);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: rgba(255,255,255,.9);
  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 .section-subtitle{
  font-family: var(--ts-font-body);
  font-size: 1.125rem; /* ~18px */
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #343b45;
}
.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 .fw-semibold{
  font-family: var(--ts-font-display);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ts-black);
  margin-bottom: .2rem;
}
.home-about-feature .text-muted,
.home-about-feature .small{
  font-family: var(--ts-font-body);
  font-size: .95rem !important;
  font-weight: 400;
  line-height: 1.65;
  color: #3a424e !important;
}
.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);
}
.home-about-collage-card .text-gold,
.home-about-collage-card .fw-semibold{
  font-family: var(--ts-font-nav);
  font-weight: 700;
  letter-spacing: .03em;
}
.home-about-collage-card .small{
  font-family: var(--ts-font-body);
  font-size: .88rem !important;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

/* 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-family: var(--ts-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .55rem;
}
.home-service-desc{
  font-family: var(--ts-font-body);
  font-size: .95rem;
  font-weight: 400;
  color: var(--ts-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.home-service-link{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--ts-font-nav);
  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-family: var(--ts-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.home-project-year{
  font-family: var(--ts-font-body);
  font-size: .82rem;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  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{
  font-family: var(--ts-font-body);
  font-weight: 400;
  color: rgba(255,255,255,.82);
  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-family: var(--ts-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ts-gold);
  line-height: 1;
  margin-bottom: .65rem;
}
.home-why-desc{
  font-family: var(--ts-font-body);
  font-size: .92rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* 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-family: var(--ts-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.home-video-desc{
  font-family: var(--ts-font-body);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ts-muted);
  margin: 0;
  line-height: 1.65;
}

/* 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{
  font-family: var(--ts-font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  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; }
  body{ font-size: .9875rem; }
  .section-subtitle,
  .home-about .section-subtitle{
    font-size: 1.0625rem; /* ~17px */
  }
}
@media (max-width:575px){
  body{ font-size: .975rem; }
  .nav-link-lux{ font-size: .92rem; }
  .section-subtitle,
  .home-about .section-subtitle{
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .brand-wrapper{ gap: 8px; }
  .brand-logo-tile{
    width: 48px;
    height: 48px;
    border-radius: 9px;
    padding: 3px;
  }
  .brand-divider{ height: 30px; }
  .brand-wordmark{
    height: 28px;
    max-width: min(150px, 42vw);
  }
  .footer-brand{
    gap: 10px;
  }
  .footer-brand-tile{
    width: 56px;
    height: 56px;
    border-radius: 10px;
  }
  .footer-brand-divider{ height: 36px; }
  .footer-brand-wordmark{
    height: 34px;
    max-width: min(200px, 58vw);
  }
  .footer-logo{ height: 56px; }
}
