/* Custom Luxury Brands - Main Stylesheet */

/* ── CSS VARIABLES ── */
:root {
  --black: #111111;
  --white: #FFFFFF;
  --green: #223E23;
  --brown: #7C4916;
  --tan: #DEC1A4;
  --cream: #F5F0EA;
  --green-light: rgba(34, 62, 35, 0.07);
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--black);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .georgia {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--green);
  transition: box-shadow .4s;
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}

nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
}

.logo-img {
  width: 371px;
  height: 140px;
  object-fit: contain;
  display: block;
  padding-top: 5px;
  margin-bottom: -2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .3s;
  position: relative;
  cursor: pointer;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tan);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mob-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── SHARED SECTIONS ── */
.page {
  display: none;
}

.page.active {
  display: block;
}

.sec-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
}

.sec-dark {
  background: var(--black);
  color: var(--white);
}

.sec-green {
  background: var(--green);
  color: var(--white);
}

.sec-cream {
  background: var(--cream);
}

.sec-white {
  background: var(--white);
}

.sec-tan {
  background: var(--tan);
}

.label {
  font-size: .63rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: .75rem;
  font-weight: 600;
}

.sec-white .label,
.sec-cream .label {
  color: var(--brown);
}

.title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gold-rule {
  width: 50px;
  height: 1px;
  background: var(--tan);
  margin: 1.5rem 0 1.5rem;
}

.sec-white .gold-rule,
.sec-cream .gold-rule {
  background: var(--brown);
}

.subtitle {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 620px;
  color: #666;
}

.sec-dark .subtitle {
  color: rgba(255, 255, 255, .80);
}

.sec-green .subtitle {
  color: rgba(255, 255, 255, .80);
}

/* ── PAGE HERO BANNERS ── */
.page-hero {
  margin-top: 72px;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .label {
  color: var(--tan);
}

.page-hero .title {
  color: var(--white);
  font-size: 3rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, .80);
  max-width: 640px;
  margin: 0 auto;
}

.page-hero .gold-rule {
  margin: 0 auto 1.5rem;
}


/* ── HERO (HOME) ── */
.hero {
  margin-top: 72px;
  min-height: 92vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(222, 193, 164, .06) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeUp 1s .3s forwards;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: var(--tan);
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: fadeUp 1s .5s forwards;
}

.hero p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, .80);
  max-width: 640px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1s .7s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeUp 1s .9s forwards;
}

.hs-num {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--tan);
}

.hs-lbl {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-top: .2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--tan), transparent);
  animation: pulse 2s infinite;
}

/* ── HOME: BRAND GRID ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  background: rgba(255, 255, 255, .07);
}

.brand-cell {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 1.5rem;
  transition: background .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.brand-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.brand-cell:hover .brand-bg {
  opacity: 1;
}

.brand-cell:hover {
  background: #181818;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  transition: color .3s;
}

.brand-cell:hover .brand-name {
  color: var(--white);
}

.brand-name.script {
  font-style: italic;
  letter-spacing: 1px;
  font-size: 1.05rem;
}

/* ── HOME: PRODUCT CATEGORIES ── */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.cat-item {
  text-align: center;
}

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  margin: 0 auto .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.cat-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cat-item h4 {
  font-size: .95rem;
  margin-bottom: .3rem;
}

.cat-item p {
  font-size: .76rem;
  color: #888;
  line-height: 1.5;
}

.pv-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 480px;
}

.pv-b {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.pv-b:first-child {
  grid-row: 1/3;
}

.pv-b span {
  position: relative;
  z-index: 1;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.pv-b::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent 50%);
}

.pv-1 {
  background: linear-gradient(135deg, #2a2a2a 25%, #1a1a1a 25%, #1a1a1a 50%, #2a2a2a 50%, #2a2a2a 75%, #1a1a1a 75%);
  background-size: 4px 4px;
}

.pv-2 {
  background: var(--green);
  background-image: linear-gradient(0deg, rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 6px 6px;
}

.pv-3 {
  background: var(--brown);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .03) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, .03) 75%);
  background-size: 8px 8px;
}

/* ── HOME: LOCATIONS ── */
.loc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.rp {
  padding: 1.5rem;
  background: var(--white);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.rp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}

.rp:hover .rp-bg {
  opacity: 1;
}

.rp img {
  position: relative;
  z-index: 1;
  transition: opacity .4s ease, filter .4s ease;
}

.rp:hover img {
  opacity: 1 !important;
  filter: brightness(0) invert(1);
}

.rp h4 {
  font-family: Georgia, serif;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .2rem;
  position: relative;
  z-index: 1;
  transition: color .4s ease;
}

.rp:hover h4 {
  color: var(--white);
}

.rp p {
  font-size: .68rem;
  color: #999;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  transition: color .4s ease;
}

.rp:hover p {
  color: rgba(255, 255, 255, .65);
}

.ticker {
  display: flex;
  overflow: hidden;
  position: relative;
  margin-top: 2.5rem;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 1;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--cream), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--cream), transparent);
}

.ticker-track {
  display: flex;
  gap: 1.5rem;
  animation: tick 35s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  flex-shrink: 0;
}

.ticker-dot {
  color: var(--tan);
  margin: 0 .4rem;
}

/* ── HOME: EXPERIENCE ── */
.exp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.exp-flow::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.exp-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.exp-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--tan);
  background: var(--green);
  position: relative;
  z-index: 1;
}

.exp-step h4 {
  font-size: .95rem;
  margin-bottom: .4rem;
}

.exp-step p {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

.callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.co-val {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  color: var(--tan);
  text-align: center;
  margin-bottom: .3rem;
}

.co-lbl {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}

/* ── HOME: TECH ── */
.tech-lay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.tech-pills {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tp {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.2rem;
  align-items: start;
}

.tp-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 62, 35, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
}

.tp-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0);
}

.tp h4 {
  font-size: .95rem;
  margin-bottom: .25rem;
}

.tp p {
  font-size: .82rem;
  color: #777;
  line-height: 1.6;
}

.tech-vis {
  background: var(--black);
  padding: 3rem;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(34, 62, 35, .15), transparent 50%), radial-gradient(circle at 70% 50%, rgba(124, 73, 22, .1), transparent 50%);
}

.tm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.tm {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .02);
}

.tm-v {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: var(--tan);
  margin-bottom: .2rem;
}

.tm-l {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.tech-badge {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  padding: .5rem 1.2rem;
  border: 1px solid rgba(222, 193, 164, .25);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--tan);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h3 {
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: .6rem;
}

.cta-band p {
  font-size: .88rem;
  color: rgba(17, 17, 17, .55);
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  padding: .85rem 2.5rem;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-size: .7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s;
  cursor: pointer;
}

.cta-btn:hover {
  background: #1a3220;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
  margin-top: .8rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  gap: 3rem;
  justify-content: flex-end;
}

.footer-nav-col h5 {
  font-size: .63rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: .8rem;
  font-weight: 600;
}

.footer-nav-col a {
  display: block;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  margin-bottom: .4rem;
  cursor: pointer;
  transition: color .3s;
}

.footer-nav-col a:hover {
  color: var(--white);
}

.footer-bot {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.footer-bot p {
  font-size: .7rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: 1px;
}

/* ══════ DETAIL PAGE COMPONENTS ══════ */

/* Case study card */
.case-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 3rem;
  margin-bottom: 2rem;
}

.case-card .case-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.case-card h3 {
  font-size: 1.6rem;
  margin-bottom: .3rem;
}

.case-tag {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(124, 73, 22, .08);
  padding: .35rem .8rem;
  white-space: nowrap;
}

.case-card .case-desc {
  font-size: .9rem;
  color: #555;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
}

.metric {
  padding: 1.2rem;
  background: var(--cream);
  text-align: center;
}

.metric .m-val {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: .15rem;
}

.metric .m-lbl {
  font-size: .63rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
}

/* Product detail */
.prod-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.prod-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.prod-card-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

.prod-card-visual span {
  position: relative;
  z-index: 1;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: normal;
  color: var(--white);
}

.prod-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent 60%);
}

.pcv-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.pcv-2 {
  background: var(--green);
}

.pcv-3 {
  background: #3a2a1a;
}

.pcv-4 {
  background: linear-gradient(135deg, var(--brown), #5a3510);
}

.pcv-5 {
  background: #2a3a2a;
}

.pcv-6 {
  background: #1a1a2a;
}

.pcv-7 {
  background: var(--green);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .03) 25%, transparent 25%);
}

.pcv-8 {
  background: #333;
}

.prod-card-body {
  padding: 1.5rem;
}

.prod-card-body h4 {
  font-size: 1rem;
  margin-bottom: .3rem;
}

.prod-card-body .pct {
  font-size: .68rem;
  color: var(--brown);
  letter-spacing: 1px;
  margin-bottom: .6rem;
}

.prod-card-body p {
  font-size: .8rem;
  color: #777;
  line-height: 1.6;
}

.prod-card-body .price {
  display: none;
  font-size: .75rem;
  color: var(--green);
  margin-top: .6rem;
  font-weight: 600;
}

/* Location detail */
.channel-section {
  margin-top: 4rem;
}

.channel-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.channel-header h3 {
  font-size: 1.5rem;
}

.channel-header .ch-count {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

.loc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.loc-card {
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, .06);
  background: var(--white);
  transition: border-color .3s;
}

.loc-card:hover {
  border-color: var(--tan);
}

.loc-card h4 {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.loc-card h4 img {
  max-height: 190px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.loc-card .lc-type {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: .8rem;
}

.loc-card p {
  font-size: .82rem;
  color: #777;
  line-height: 1.6;
}

.loc-card .lc-stat {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
  font-size: .7rem;
}

.loc-card .lc-stat span:first-child {
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.loc-card .lc-stat span:last-child {
  color: var(--green);
  font-weight: 600;
}

/* Experience detail */
.exp-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.exp-detail-card:nth-child(even) {
  direction: rtl;
}

.exp-detail-card:nth-child(even) > * {
  direction: ltr;
}

.exp-detail-card:last-child {
  border-bottom: none;
}

.exp-d-num {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #DEC1A5;
  margin-bottom: .5rem;
}

.exp-d-title {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}

.exp-d-text {
  font-size: .9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.exp-d-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.exp-d-feat {
  display: flex;
  gap: .6rem;
  align-items: start;
  font-size: .82rem;
  color: #555;
}

.exp-d-feat::before {
  content: '\2192';
  color: var(--brown);
  flex-shrink: 0;
  margin-top: .1rem;
}

.exp-d-vis {
  background: var(--green);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.exp-d-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(222, 193, 164, .08), transparent 70%);
}

.vis-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.vis-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: .7;
}

/* Tech detail */
.tech-section {
  margin-top: 3rem;
}

.tech-detail-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  padding: 3rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, .06);
  background: var(--white);
  transition: border-color .3s;
}

.tech-detail-card:hover {
  border-color: var(--tan);
}

.tdc-vis {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.tdc-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(222, 193, 164, .1), transparent 70%);
}

.tdc-icon {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  color: var(--tan);
  opacity: .6;
}

.tdc-body h4 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.tdc-body .tdc-tag {
  font-size: .63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1rem;
  display: block;
}

.tdc-body p {
  font-size: .85rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.tdc-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.tdc-stat {
  text-align: center;
}

.tdc-stat .ts-v {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--green);
}

.tdc-stat .ts-l {
  font-size: .6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #999;
}

/* Comparison bars */
.compare-bar {
  margin-bottom: 1.2rem;
}

.cb-header {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  margin-bottom: .4rem;
}

.cb-header span:first-child {
  color: #555;
}

.cb-header span:last-child {
  font-weight: 600;
  color: var(--green);
}

.cb-track {
  height: 6px;
  background: rgba(0, 0, 0, .06);
  border-radius: 3px;
  overflow: hidden;
}

.cb-fill {
  height: 100%;
  background: var(--green);
  border-radius: 3px;
  transition: width 1s ease;
}

/* ── HERO VIDEO BACKGROUND ── */
.hero {
  position: relative;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* ── PAGE HERO VIDEO ── */
.page-hero {
  position: relative;
}

.page-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(34, 62, 35, .55) 0%,
    rgba(34, 62, 35, .4) 40%,
    rgba(34, 62, 35, .6) 100%
  );
}

.page-hero > *:not(.page-hero-video) {
  position: relative;
  z-index: 1;
}

#page-what-we-create .page-hero,
#page-where-we-are .page-hero,
#page-who-we-are .page-hero,
#page-how-it-works .page-hero,
#page-technology .page-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#page-what-we-create .page-hero-video::after,
#page-where-we-are .page-hero-video::after,
#page-who-we-are .page-hero-video::after,
#page-how-it-works .page-hero-video::after,
#page-technology .page-hero-video::after {
  background: rgba(0, 0, 0, 0.35);
}

/* ── BRAND LOGOS ── */
.brand-cell img {
  width: auto;
  height: 75%;
  max-width: 85%;
  object-fit: contain;
  opacity: .55;
  transition: opacity .3s;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1);
}

.brand-cell:hover img {
  opacity: 1;
}

/* ── PRODUCT VISUAL BOXES (HOMEPAGE) ── */
.pv-b {
  background-size: cover;
  background-position: center;
}

/* ── PRODUCT CARD IMAGES ── */
.prod-card-visual {
  background-size: cover;
  background-position: center top;
}

.prod-card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── HOW IT WORKS VISUALS ── */
.exp-d-vis[style*="background-image"]::before {
  background: rgba(0, 0, 0, .30);
}

.exp-d-vis img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.exp-d-vis .vis-inner {
  position: relative;
  z-index: 2;
}

.exp-d-vis video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── TECHNOLOGY CARD IMAGES ── */
.tdc-vis {
  position: relative;
}

.tdc-vis img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.tdc-vis[style*="background:none"]::before {
  display: none;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── KEYFRAME ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prod-grid,
  .loc-head,
  .tech-lay,
  .exp-detail-card,
  .exp-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .exp-detail-card:nth-child(even) > * {
    direction: ltr;
  }

  .exp-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .exp-flow::before {
    display: none;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-detail-card {
    grid-template-columns: 1fr;
  }

  .tdc-vis {
    min-height: 200px;
  }

  .prod-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  nav {
    padding: 0 1rem;
    position: relative;
  }

  .logo-mark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
    z-index: 0;
  }

  .logo-img {
    width: 180px;
    height: auto;
  }

  .mob-toggle {
    display: block;
    font-size: 2rem;
    padding: 0.5rem 0.5rem;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }

  /* ── HERO: stack video above text on mobile ── */
  .hero {
    min-height: unset;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 0;
  }

  .hero-video-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  .hero-video-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-video-bg::after {
    display: none;
  }

  .hero-inner {
    padding: 2rem 1.5rem;
  }

  .scroll-cue {
    display: none;
  }

  /* ── PAGE HERO: stack video above text on mobile ── */
  .page-hero {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: unset;
    background: var(--black);
  }

  #page-what-we-create .page-hero,
  #page-where-we-are .page-hero,
  #page-who-we-are .page-hero,
  #page-how-it-works .page-hero,
  #page-technology .page-hero {
    min-height: unset;
  }

  .page-hero-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  .page-hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-hero-video::after {
    display: none;
  }

  .page-hero > *:not(.page-hero-video) {
    position: static;
    padding: 0 1.5rem;
    color: var(--white);
  }

  .page-hero > .label {
    padding-top: 2rem;
  }

  .page-hero > *:last-child {
    padding-bottom: 2.5rem;
  }

  .page-hero .title {
    margin: 0 0 1rem;
  }

  .page-hero .gold-rule {
    padding: 0;
    margin: 0 auto 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    justify-items: center;
  }

  .sec-inner {
    padding: 4.5rem 1.5rem;
  }

  .title {
    font-size: 1.9rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-row {
    grid-template-columns: 1fr;
  }

  .pv-box {
    height: 300px;
  }

  .exp-flow,
  .callouts,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .tech-vis {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    margin-bottom: -4.5rem;
    padding: 2.5rem 1.5rem;
    min-height: unset;
  }

  .prod-grid,
  .tech-lay {
    margin-top: 0;
  }

  .cta-band {
    padding: 4.5rem 1.5rem;
  }

  .tm-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rp {
    min-width: 0;
  }

  .rp img {
    max-width: 100%;
    height: auto !important;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bot {
    flex-direction: column;
    gap: .4rem;
    text-align: center;
  }

  .prod-detail-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .title {
    font-size: 2.2rem;
  }

  .case-card .metrics-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .case-card .metric {
    padding: 0.9rem 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .case-card .metric .m-val {
    font-size: 1.2rem;
  }

  .loc-cards {
    grid-template-columns: 1fr;
  }

  .tdc-stats {
    flex-wrap: wrap;
  }

  .brand-cell img {
    height: 65%;
  }

  .exp-d-vis {
    min-height: 260px;
  }

  .tdc-vis {
    min-height: 220px;
  }

  /* Collapse all inline 4-col and 3-col grids on mobile */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .grid-stats-4 {
    grid-template-columns: 1fr !important;
  }

  .prod-card-visual {
    height: 180px;
  }

  .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .grid-gap-4 {
    gap: 1.5rem !important;
  }

  .ghurka-travel {
    background-image: url('../assets/img/products/ghurka/travel-leisure-mobile.jpg') !important;
  }
  .ghurka-wallets {
    background-image: url('../assets/img/products/ghurka/wallets-slg-mobile.jpg') !important;
  }
  .ghurka-business {
    background-image: url('../assets/img/products/ghurka/business-bags-mobile.jpg') !important;
  }
  .ghurka-accessories {
    background-image: url('../assets/img/products/ghurka/accessories-mobile.jpg') !important;
  }
}
