/* =========================================================
   LUCKNOW HERITAGE PRIVATE LIMITED
   Design tokens — gold & black Awadhi heritage theme
   ========================================================= */
:root {
  --black: #0b0907;
  --black-soft: #14100b;
  --black-card: #1c160e;
  --black-card-2: #221a10;
  --gold: #d4af37;
  --gold-light: #f3d77a;
  --gold-pale: #e8c766;
  --gold-dark: #8a6c20;
  --bronze: #a9722f;
  --cream: #f6efe1;
  --muted: #b8ad94;
  --muted-2: #8c8270;
  --border-gold: rgba(212, 175, 55, .32);
  --border-gold-soft: rgba(212, 175, 55, .16);
  --shadow-gold: 0 0 0 1px rgba(212, 175, 55, .25), 0 14px 34px rgba(0, 0, 0, .55);
  --radius: 6px;
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .96rem;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  color: var(--cream);
  letter-spacing: .02em;
  margin: 0;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* subtle jaali (lattice) texture for dark sections — echoes Awadhi stone lattice work */
.jaali-bg {
  background-color: var(--black);
  background-image:
    radial-gradient(circle at 0 0, rgba(212, 175, 55, .05) 1px, transparent 1.6px),
    radial-gradient(circle at 12px 12px, rgba(212, 175, 55, .05) 1px, transparent 1.6px);
  background-size: 24px 24px;
}

.section-alt {
  background: var(--black-soft);
}

/* =========== utility =========== */
.text-gold {
  color: var(--gold);
}

.text-muted-gold {
  color: var(--muted);
  text-align: justify;
  line-height: 1.8;
}

.fw-600 {
  font-weight: 600;
}

.kicker {
  font-family: var(--sans);
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
}

/* =========== buttons =========== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  color: #1a1206 !important;
  border: none;
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .82rem;
  text-transform: uppercase;
  padding: .75rem 1.7rem;
  border-radius: 2px;
  box-shadow: 0 6px 18px rgba(212, 175, 55, .25);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #1a1206;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light) !important;
  font-weight: 600;
  letter-spacing: .05em;
  font-size: .82rem;
  text-transform: uppercase;
  padding: .72rem 1.6rem;
  border-radius: 2px;
  transition: all .25s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #1a1206 !important;
  border-color: var(--gold);
}

/* =========== section heading w/ arch divider (signature motif) =========== */
.section-head {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-head h2 {
  font-size: 2.1rem;
  margin: .5rem 0 .9rem;
}

.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.arch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  color: var(--gold);
}

.arch-divider svg {
  width: 46px;
  height: 20px;
}

.arch-divider .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =========== top utility bar =========== */
.topbar {
  background: var(--black-card);
  border-bottom: 1px solid var(--border-gold-soft);
  font-size: .78rem;
  padding: .4rem 0;
  color: var(--muted);
}

.topbar a {
  color: var(--muted);
}

.topbar a:hover {
  color: var(--gold);
}

.topbar .sep {
  opacity: .3;
  margin: 0 .6rem;
}

/* =========== navbar =========== */
.navbar-heritage {
  background: rgba(11, 9, 7, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-gold);
  padding: .55rem 0;
}

.navbar-heritage.is-sticky {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  object-fit: cover;
  background: var(--black);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .b1 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--gold-light);
  letter-spacing: .04em;
  font-weight: 700;
}

.brand-text .b2 {
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--muted);
}

.navbar-heritage .nav-link {
  color: var(--cream) !important;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
}

.navbar-heritage .nav-link.active,
.navbar-heritage .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-heritage .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .15rem;
  height: 1px;
  background: var(--gold);
}

.navbar-heritage .dropdown-menu {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  padding: .4rem 0;
}

.navbar-heritage .dropdown-item {
  color: var(--cream);
  font-size: .8rem;
  letter-spacing: .05em;
  padding: .55rem 1.2rem;
}

.navbar-heritage .dropdown-item:hover {
  background: rgba(212, 175, 55, .12);
  color: var(--gold);
}

.navbar-toggler {
  border-color: var(--border-gold) !important;
}

.navbar-toggler-icon {
  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.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* =========== page hero (internal pages) =========== */
.page-hero {
  position: relative;
  padding: 5.2rem 0 3.6rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212, 175, 55, .14), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.page-hero .skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: .5;
  pointer-events: none;
}

.page-hero .crumb {
  color: var(--muted);
  font-size: .82rem;
  letter-spacing: .05em;
}

.page-hero .crumb a:hover {
  color: var(--gold);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-top: .6rem;
}

/* =========== home hero =========== */
.home-hero {
  position: relative;
  background: var(--black);
  border-bottom: 1px solid var(--border-gold);
}

.home-hero .hero-art {
  position: relative;

  overflow: hidden;
  background: linear-gradient(180deg, #3a2a14 0%, #1c130a 55%, #0b0907 100%);
}

.home-hero .hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, rgba(11, 9, 7, .95) 0%, rgb(11 9 7 / 36%) 69%, transparent 89%);
}

.home-hero .skyline-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.home-hero .hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 5%;
  width: 100%;
  z-index: 2;
}

.hero-caption {
  /* background: rgba(0, 0, 0, 0.55); */
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(1px);
}

.home-hero .hero-caption .tagline-pill {
  display: inline-block;
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: .16em;
  padding: .5rem 1.1rem;
  margin-bottom: 1.2rem;
}

.home-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}

.home-hero h1 span {
  display: block;
  color: var(--gold-light);
}

.home-hero .lede {
  color: var(--muted);
  max-width: 480px;
  margin-top: 1rem;
  font-size: .95rem;
}

.home-hero .hero-cta {
  margin-top: 1.6rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* side strip with two stacked image tiles (matches reference collage) */
.hero-strip {
  display: flex;
  flex-direction: column;
  height: 540px;
  gap: 0;
}

.hero-strip .tile {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-left: 1px solid var(--border-gold);
}

.hero-strip .tile:first-child {
  border-bottom: 1px solid var(--border-gold);
}

.hero-strip .tile .ph {
  position: absolute;
  inset: 0;
}

.hero-strip .tile .cap {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* =========== placeholder image system (no external photos needed) =========== */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  overflow: hidden;
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .5) 0, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, .4) 0, transparent 2px);
  background-size: 30px 30px;
}

.ph .ph-icon {
  width: 34%;
  max-width: 64px;
  opacity: .85;
  position: relative;
  z-index: 1;
}

.ph .ph-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.2;
}

.ph .ph-label {
  position: relative;
  z-index: 1;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, .75);
  text-align: center;
  padding: 0 .6rem;
}

.ph-1 {
  background: linear-gradient(135deg, #3a2a14, #15100a);
}

.ph-2 {
  background: linear-gradient(135deg, #2a200f, #0e0b07);
}

.ph-3 {
  background: linear-gradient(135deg, #46330f, #1a130a);
}

.ph-4 {
  background: linear-gradient(135deg, #33240f, #120e08);
}

.ph-5 {
  background: linear-gradient(135deg, #3d2a10, #181208);
}

/* =========== about / feature icon blocks =========== */
.feature-ico {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  background: radial-gradient(circle, rgba(212, 175, 55, .08), transparent);
}

.feature-ico svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.feature-block {
  text-align: center;
  padding: 1.2rem .6rem;
}

.feature-block h5 {
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
}

.feature-block p {
  color: var(--muted);
  font-size: .85rem;
  margin: 0;
}

/* =========== generic cards =========== */
.card-heritage {
  background: var(--black-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  height: 100%;
}

.card-heritage:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.card-heritage .ph {
  aspect-ratio: 4/3;
}

.card-heritage .card-cap {
  padding: .85rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border-gold-soft);
}

.card-heritage .card-cap h6 {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}

.card-heritage .card-cap p {
  font-size: .78rem;
  color: var(--muted);
  margin: .3rem 0 0;
}

/* service card with side icon style (used on services page) */
.service-row {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--black-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  padding: 1.4rem;
  height: 100%;
  transition: border-color .3s ease, transform .3s ease;
}

.service-row:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.service-row .ico {
  flex: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}

.service-row h5 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: .35rem;
  letter-spacing: .03em;
}

.service-row p {
  font-size: .84rem;
  color: var(--muted);
  margin: 0;
}

/* =========== stats strip =========== */
.stats-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-dark));
  color: #1a1206;
  padding: 1.4rem 0;
}

.stats-strip .stat {
  text-align: center;
}

.stats-strip .stat .num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
}

.stats-strip .stat .lab {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =========== before/after =========== */
.ba-pair {
  display: flex;
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-pair .ph {
  aspect-ratio: 1/1;
  flex: 1;
}

.ba-pair .tag {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
  background: var(--black);
  color: var(--gold-light);
  font-size: .62rem;
  letter-spacing: .1em;
  padding: .2rem .5rem;
  border: 1px solid var(--border-gold);
  text-transform: uppercase;
}

/* =========== gallery filter =========== */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--muted);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 20px;
  transition: all .25s ease;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #1a1206;
  border-color: var(--gold);
}

.gallery-item {
  transition: opacity .35s ease, transform .35s ease;
}

.gallery-item.hide {
  display: none;
}

/* =========== timeline (about) =========== */
.value-card {
  border: 1px solid var(--border-gold-soft);
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
}

.value-card .feature-ico {
  margin: 0 0 1rem;
}

.value-card h5 {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.value-card p {
  color: var(--muted);
  font-size: .85rem;
  margin: 0;
}

/* =========== team / career role cards =========== */
.role-card {
  text-align: center;
  padding: 1.8rem 1.1rem;
  border: 1px solid var(--border-gold-soft);
  background: var(--black-card);
  border-radius: var(--radius);
  height: 100%;
  transition: transform .3s ease, border-color .3s ease;
}

.role-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.role-card .feature-ico {
  width: 56px;
  height: 56px;
}

.role-card .feature-ico svg {
  width: 26px;
  height: 26px;
}

.role-card h6 {
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .86rem;
  margin-bottom: .3rem;
}

.role-card p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
}

/* =========== contact =========== */
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item .ico {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item .ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-item h6 {
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .2rem;
}

.contact-item p,
.contact-item a {
  font-size: .85rem;
  color: var(--muted);
  margin: 0;
}

.form-control-gold {
  background: var(--black-card) !important;
  border: 1px solid var(--border-gold-soft) !important;
  color: var(--cream) !important;
  border-radius: 2px !important;
  padding: .7rem .9rem !important;
  font-size: .88rem !important;
}

.form-control-gold:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 .15rem rgba(212, 175, 55, .18) !important;
}

.form-control-gold::placeholder {
  color: var(--muted-2);
}

.map-frame {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

/* =========== CTA band =========== */
.cta-band {
  background: var(--black-card-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3.4rem 0;
  text-align: center;
}

.cta-band h3 {
  font-size: 1.7rem;
  margin-bottom: .6rem;
}

.cta-band p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

/* =========== footer =========== */
.footer-heritage {
  background: #070605;
  border-top: 1px solid var(--border-gold);
  padding: 3.6rem 0 0;
}

.footer-heritage h6 {
  color: var(--gold-light);
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-heritage .f-brand {
  display: flex;
  gap: .8rem;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-heritage .f-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.footer-heritage .f-brand .b1 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-light);
}

.footer-heritage .f-brand .b2 {
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--muted);
}

.footer-heritage p {
  color: var(--muted);
  font-size: .85rem;
}

.footer-heritage ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-heritage ul li {
  margin-bottom: .6rem;
  font-size: .85rem;
}

.footer-heritage ul li a {
  color: var(--muted);
}

.footer-heritage ul li a:hover {
  color: var(--gold);
}

.footer-heritage ul li a::before {
  content: "› ";
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.social-row a:hover {
  background: var(--gold);
  color: #1a1206;
}

.social-row svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border-gold-soft);
  margin-top: 2.6rem;
  padding: 1.2rem 0;
  font-size: .78rem;
  color: var(--muted-2);
  text-align: center;
}

/* =========== bootstrap-icon sizing inside icon wrappers =========== */
.feature-ico i,
.service-row .ico i,
.role-card .feature-ico i,
.contact-item .ico i {
  color: var(--gold);
  line-height: 1;
}

.feature-ico i {
  font-size: 1.7rem;
}

.service-row .ico i {
  font-size: 1.3rem;
}

.role-card .feature-ico i {
  font-size: 1.4rem;
}

.contact-item .ico i {
  font-size: 1.05rem;
}

.ph .ph-icon i {
  font-size: 2.1rem;
  color: var(--gold-light);
  opacity: .9;
}

.social-row a i {
  font-size: 1rem;
}

.arch-divider i {
  font-size: 1.3rem;
}

/* =========== back to top =========== */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1206;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* =========== reveal on scroll =========== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========== preloader-free fade =========== */
section {
  padding: 4.4rem 0;
}

@media (max-width:991.98px) {
  section {
    padding: 3.2rem 0;
  }

  .home-hero .hero-art,
  .hero-strip {
    height: 500px;
  }

  .navbar-heritage .dropdown-menu {
    border: none;
    background: transparent;
    padding-left: 1rem;
  }
}
/* ===========================
   Responsive
=========================== */
@media (max-width: 767.98px) {

    .home-hero h1 {
        font-size: 2.1rem;
    }

    .page-hero h1 {
        font-size: 1.85rem;
    }

    .stats-strip .stat .num {
        font-size: 1.4rem;
    }

    /* Hide Right Side Hero Images on Mobile */
    .hero-strip {
        display: none !important;
    }

    /* Left Hero Full Width */
    .hero-art,
    .hero-img {
        height: 450px;
    }

    .hero-caption {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }
}


/* ===========================
   Hero Section
=========================== */

.hero-art {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.hero-img {
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 550px;
    color: #fff;
}

.hero-strip {
    height: 650px;
    display: flex;
    flex-direction: column;
}

.tile {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.tile-img {
    width: 100%;
    height: 100%;
    display: block;   /* <-- Desktop ke liye visible */
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

.tile:hover .tile-img {
    transform: scale(1.05);
}

.cap {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #f7d46b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}


/* ===========================
   About Section
=========================== */

.about-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    transition: .4s ease;
}

.about-img:hover {
    transform: scale(1.03);
}


/* ===========================
   Services
=========================== */

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: .5s ease;
}

.card-heritage {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    background: #111;
    height: 100%;
}

.card-heritage:hover .service-img {
    transform: scale(1.08);
}

.card-cap {
    padding: 15px;
    text-align: center;
    background: #111;
    color: #fff;
}


/* ===========================
   Gallery
=========================== */

.gallery-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    transition: .4s ease;
}

.card-heritage:hover .gallery-img {
    transform: scale(1.05);
}