/* ================================================================
   SRM — Professional Design System
   Paleta: Negro / Oro / Crema
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@200;300;400&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #B89A5C;
  --gold-light: #D4B87A;
  --gold-pale: #F5EDD8;
  --black: #0D0B09;
  --dark: #1A1712;
  --charcoal: #2E2B26;
  --stone: #6B6558;
  --cream: #F9F6F0;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100vw; max-width: 100%; }
body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

/* ── HEADER / NAV ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}

.header.scrolled {
  background: rgba(13, 11, 9, 0.96);
  backdrop-filter: blur(16px);
  padding: 13px 60px;
  box-shadow: 0 1px 0 rgba(184, 154, 92, 0.15);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 36px;
  display: block;
  transition: filter 0.3s;
}

/* White logo on hero, black+white-filter when scrolled */
.header:not(.scrolled) .logo-img {
  filter: brightness(10);
}

.header.scrolled .logo-img {
  filter: brightness(10);
}

.nav {
  display: flex;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

/* Burger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(13, 11, 9, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transition: transform 8s var(--ease);
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.03);
}

.page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.85) 0%, rgba(13, 11, 9, 0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 64px;
  width: 100%;
}

.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.01em;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── HERO (homepage) ── */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 85%, rgba(184, 154, 92, 0.14) 0%, transparent 60%),
    linear-gradient(160deg, #0D0B09 0%, #1E1A14 50%, #0D0B09 100%);
}

.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(184, 154, 92, 0.07);
  transform: translate(-50%, -50%);
}

.r1 {
  width: 650px;
  height: 650px;
  animation: rpulse 7s ease-in-out infinite;
}

.r2 {
  width: 1000px;
  height: 1000px;
  animation: rpulse 7s ease-in-out infinite 2.5s;
}

@keyframes rpulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: .35
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 28px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fu 1s forwards 0.4s;
}

.hero-logo {
  height: 72px;
  margin: 0 auto 36px;
  display: block;
  filter: brightness(10);
  opacity: 0;
  animation: fu 1s forwards 0.65s;
}

.hero-title {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  opacity: 0;
  animation: fu 1s forwards 0.9s;
}

.hero-title span {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 48px;
  opacity: 0;
  animation: fu 1s forwards 1.1s;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu 1s forwards 1.3s;
}

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fu-center 1s forwards 2s;
}

.hero-scroll span {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sb 2s ease-in-out infinite;
}

@keyframes sb {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  49% {
    transform: scaleY(1);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fu-center {
  from {
    opacity: 0;
    transform: translate(-50%, 26px)
  }

  to {
    opacity: 1;
    transform: translateX(-50%)
  }
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 38px;
  text-decoration: none;
  transition: all 0.35s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 38px;
  text-decoration: none;
  transition: all 0.35s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 14px 38px;
  text-decoration: none;
  transition: all 0.35s;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* ── UTILITIES ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-delay-4 {
  transition-delay: 0.48s;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.eyebrow.light {
  color: var(--gold-light);
}

.eyebrow.light::before {
  background: var(--gold-light);
}

.section-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title.white {
  color: var(--white);
}

.section-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.88;
  color: var(--stone);
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── SPLIT LAYOUT ── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.6;
  transition: transform 8s var(--ease);
}

.split-visual:hover img {
  transform: scale(1.04);
}

.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 11, 9, 0.4), rgba(184, 154, 92, 0.06));
}

.split-badge {
  position: absolute;
  bottom: 44px;
  left: 44px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.split-badge-num {
  font-family: var(--serif);
  font-size: 78px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.split-badge-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 13px;
  line-height: 1.7;
}

.split-content {
  padding: 84px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.split-content.dark {
  background: var(--dark);
}

.split-content.charcoal {
  background: var(--charcoal);
}

/* ── TWO PANEL (dark side by side) ── */
.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.panel {
  padding: 84px 68px;
  position: relative;
  overflow: hidden;
}

.panel-dark {
  background: var(--dark);
}

.panel-charcoal {
  background: var(--charcoal);
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.panel-ghost {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 300;
  color: rgba(184, 154, 92, 0.05);
  line-height: 1;
  user-select: none;
}

.panel-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.panel-tag {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.feature-card {
  background: var(--white);
  padding: 48px 34px;
  position: relative;
  overflow: hidden;
  transition: background 0.5s var(--ease);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--gold);
  transition: height 0.45s var(--ease);
}

.feature-card:hover {
  background: var(--dark);
}

.feature-card:hover::after {
  height: 2px;
}

.feature-card .business-logo {
  height: 52px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
}

.feature-card .business-logo img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.4s, filter 0.4s;
}

.feature-card:hover .business-logo img {
  opacity: 1;
  filter: brightness(1.15);
}

.feature-card .card-num {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 200;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 13px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 16px;
  transition: color 0.4s;
}

.feature-card:hover h3 {
  color: var(--white);
}

.feature-card p {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--stone);
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.6);
}

/* Image cards */
.img-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}

.img-card:hover img {
  transform: scale(1.04);
  opacity: 0.92;
}

.img-card-info {
  padding: 22px 26px;
  background: var(--white);
}

.img-card-name {
  font-size: 17.5px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 5px;
}

.img-card-sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--stone);
}

/* Overlay image card */
.img-card-overlay .img-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 30px;
  background: linear-gradient(to top, rgba(13, 11, 9, 0.85), transparent);
}

.img-card-overlay .img-card-caption h3 {
  font-size: 21px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 6px;
}

.img-card-overlay .img-card-caption span {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BRAND LOGOS GRID ── */
.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(184, 154, 92, 0.08);
}

.brand-logo-card {
  background: var(--black);
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.brand-logo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 154, 92, 0);
  transition: border-color 0.4s;
  pointer-events: none;
}

.brand-logo-card:hover {
  background: #0a0805;
}

.brand-logo-card:hover::after {
  border-color: rgba(184, 154, 92, 0.25);
}

.brand-logo-card img {
  width: 100%;
  max-width: 180px;
  height: 60px;
  object-fit: contain;
  display: block;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.4s;
}

.brand-logo-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Niche & Masive brand names (SVG logos from assets) */
.brand-svg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 48px;
  align-items: center;
  justify-items: center;
  padding: 0 40px;
}

.brand-logo-svg {
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  display: block;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.4s;
  filter: brightness(0) invert(1);
}

.brand-logo-svg:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* ── SECTIONS ── */
.sec {
  padding: 100px 0;
}

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

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

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

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

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

/* Distribution gallery */
.dist-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.dist-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  opacity: 0.68;
  transition: opacity 0.4s;
}

.dist-img:hover {
  opacity: 1;
}

.dist-banner {
  width: 100%;
  display: block;
  opacity: 0.65;
  max-height: 340px;
  object-fit: cover;
  margin-top: 3px;
}

/* Stats strip */
.stats-strip {
  background: var(--black);
  padding: 72px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 36px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(184, 154, 92, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-num {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── SAIRAM SPOTLIGHT ── */
.sairam-block {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  margin-top: 3px;
}

.sairam-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 68px;
}

.sairam-logo {
  height: 250px;
  margin-bottom: 28px;
  filter: brightness(10);
  display: block;
}

.sairam-title {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.sairam-title em {
  font-style: italic;
  color: var(--gold-light);
}

.sairam-desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 32px;
}

.sairam-right {
  position: relative;
  overflow: hidden;
}

.sairam-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  display: block;
}

.sairam-right::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--dark) 0%, transparent 40%);
}

/* ── CONTACT FORM ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  background: var(--dark);
  padding: 84px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title {
  color: var(--white);
}

.contact-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 44px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-detail h4 {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 200;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-detail p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.contact-form-side {
  background: var(--white);
  padding: 84px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-size: 30px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 38px;
}

.form-title em {
  font-style: italic;
  color: var(--gold);
}

.f-row {
  margin-bottom: 28px;
}

.f-label {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 9px;
}

.f-req {
  color: var(--gold);
}

.f-input,
.f-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(107, 101, 88, 0.22);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.f-input:focus,
.f-textarea:focus {
  border-bottom-color: var(--gold);
}

.f-textarea {
  resize: none;
  height: 84px;
}

.f-btn {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 16px 46px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.35s;
  margin-top: 8px;
}

.f-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.f-btn::after {
  content: '→';
  font-family: var(--serif);
  font-size: 15px;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  padding: 52px 60px 36px;
  border-top: 1px solid rgba(184, 154, 92, 0.1);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 36px;
}

.footer-brand .footer-logo-img {
  height: 30px;
  filter: brightness(10);
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.18);
}

.footer-nav-group {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.18);
}

.footer-up {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-up:hover {
  opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .brands-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 1024px) {
  .header {
    padding: 18px 32px;
  }

  .header.scrolled {
    padding: 12px 32px;
  }

  .nav-links {
    gap: 20px;
  }

  .split-layout,
  .contact-wrap,
  .two-panel {
    grid-template-columns: 1fr;
  }

  .split-content,
  .panel,
  .contact-info,
  .contact-form-side {
    padding: 60px 36px;
  }

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

  .sairam-block {
    grid-template-columns: 1fr;
  }

  .sairam-right {
    min-height: 220px;
  }

  .container {
    padding: 0 36px;
  }

  .page-hero-content {
    padding: 0 36px 48px;
  }

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

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

  .mobile-toggle {
    display: flex;
  }

  .header {
    padding: 16px 22px;
  }

  .header.scrolled {
    padding: 11px 22px;
  }

  .sec {
    padding: 64px 0;
  }

  .container {
    padding: 0 22px;
  }

  .card-grid,
  .card-grid-3,
  .dist-gallery {
    grid-template-columns: 1fr;
  }

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

  .brand-svg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0;
  }

  .footer {
    padding: 44px 22px 28px;
  }

  .footer-nav-group {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    padding: 48px 22px;
  }

  .sairam-left {
    padding: 52px 22px;
  }
}

@media (max-width: 480px) {
  .brands-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ── FROM SUBPAGES ── */
.brands-section {
  padding: 100px 0;
}

.brand-banner {
  overflow: hidden;
  margin-bottom: 3px;
}

.brand-banner img {
  width: 100%;
  display: block;
  opacity: 0.85;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}

.brand-banner:hover img {
  transform: scale(1.02);
  opacity: 1;
}

.cat-section {
  padding: 100px 0;
}

.cat-section.alt {
  background: var(--dark);
}

.cat-section.alt .section-title {
  color: var(--white);
}

.cat-section.alt .eyebrow {
  color: var(--gold-light);
}

.cat-section.alt .eyebrow::before {
  background: var(--gold-light);
}

.puntos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
@media(max-width:1024px){ .puntos-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px){ .puntos-grid { grid-template-columns: 1fr; } }

.arabia-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  padding: 52px;
  margin-bottom: 3px;
}

.arabia-logo {
  width: 160px;
  object-fit: contain;
}

.arabia-sub {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.arabia-title {
  font-size: 34px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 18px;
}

.proximos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}

.proy-full-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  opacity: .78;
}

@media(max-width:768px) {
  .arabia-block {
    grid-template-columns: 1fr;
    padding: 32px 22px;
  }

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

/* ── FONT SIZE +20% OVERRIDES ── */
.section-text {
  font-size: 20px !important;
}

.panel-text {
  font-size: 19px !important;
}

.feature-card p {
  font-size: 13.5px !important;
}

.img-card-sub {
  font-size: 12.5px !important;
}

.sairam-desc {
  font-size: 18.5px !important;
}

.contact-detail p {
  font-size: 18px !important;
}

.contact-sub {
  font-size: 19px !important;
}

.footer-copy {
  font-size: 12px !important;
}

p[style*="font-size:16px"] {
  font-size: 19px !important;
}

p[style*="font-size:11.5px"] {
  font-size: 14px !important;
}

p[style*="font-size:11px"] {
  font-size: 13.5px !important;
}

p.arabia-sub {
  font-size: 12px !important;
}

.arabia-block .section-text {
  font-size: 20px !important;
}

/* ── CRITICAL FIXES ── */
.feature-card .business-logo img {
  filter: invert(1) brightness(0.2) !important;
  opacity: 0.9 !important;
}

.feature-card:hover .business-logo img {
  filter: invert(0) brightness(10) !important;
  opacity: 1 !important;
}

.img-card-overlay .img-card-caption {
  z-index: 20 !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%) !important;
}

.img-card-overlay .img-card-caption h3 {
  color: #fff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.img-card-overlay .img-card-caption span {
  color: var(--gold) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* ── DISTRIBUCION LOGOS COLOR FIX ── */
#distribucion .brand-logo-svg {
  filter: none !important;
  opacity: 1 !important;
}

#distribucion .brand-logo-svg:hover {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.05) !important;
}

/* ── ELEGANT PARTICLES ── */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(184, 154, 92, 0.4);
  box-shadow: 0 0 15px rgba(184, 154, 92, 0.8), 0 0 30px rgba(184, 154, 92, 0.2);
  animation: floatUp linear infinite;
  opacity: 0;
}

@keyframes floatUp {
  0% {
    transform: translateY(100px) scale(0.5);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translateY(-150px) scale(1.2);
    opacity: 0;
  }
}

/* ── FOOTER HIGH CONTRAST OVERRIDES ── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: 0.1em;
}

.footer-col a {
  font-size: 14.5px !important;
  font-weight: 400 !important;
  color: #f0f0f0 !important;
  opacity: 1 !important;
}

.footer-col a:hover {
  color: var(--gold) !important;
  text-decoration: underline;
}

.footer-copy {
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: #cccccc !important;
}

.footer-tagline {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #eaeaea !important;
}

/* ── MOBILE RESPONSIVE OVERRIDES ── */
.grid-3-col {
  grid-template-columns: repeat(3, 1fr) !important;
}

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

@media (max-width: 768px) {

  /* Grids */
  .grid-3-col {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }

  .luxury-thumbs-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Sairam Luxury & Split visuals */
  .responsive-visual {
    margin-bottom: 32px;
  }

  /* Typography Scaling (-20% from the previous +20% increases) */
  .section-text {
    font-size: 16px !important;
  }

  .panel-text {
    font-size: 16px !important;
  }

  .sairam-desc {
    font-size: 16px !important;
  }

  .contact-detail p {
    font-size: 15px !important;
  }

  .contact-sub {
    font-size: 15px !important;
  }

  p[style*="font-size:16px"] {
    font-size: 15px !important;
  }

  /* Hero Text scaling */
  .hero-title {
    font-size: 42px !important;
    line-height: 1.1 !important;
  }

  .page-hero-title {
    font-size: 36px !important;
  }

  .section-title {
    font-size: 32px !important;
  }

  /* Fix padding for mobile sections */
  .sec,
  .cat-section {
    padding: 60px 0 !important;
  }
}

@media (max-width: 480px) {
  .grid-3-col {
    grid-template-columns: 1fr !important;
  }

  .hero-title {
    font-size: 34px !important;
  }

  .page-hero-title {
    font-size: 28px !important;
  }
}

/* ── ACCESSIBILITY & LANG TOOLBAR ── */
.acc-sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 9999;
  transform: translateY(-50%) translateX(-100%);
  display: flex;
  align-items: stretch;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.acc-sidebar.open {
  transform: translateY(-50%) translateX(0);
}

.acc-toggle {
  position: absolute;
  right: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 48px;
  background: rgba(13, 11, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  border-radius: 0 8px 8px 0;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(184, 154, 92, 0.2);
  border-left: none;
  backdrop-filter: blur(10px);
  transition: color 0.3s, width 0.3s;
}

.acc-toggle:hover {
  color: var(--gold-light);
  width: 48px;
  right: -48px;
}

.acc-menu {
  background: rgba(13, 11, 9, 0.95);
  border: 1px solid rgba(184, 154, 92, 0.2);
  border-left: none;
  padding: 16px 12px;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.acc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.acc-divider {
  height: 1px;
  background: rgba(184, 154, 92, 0.15);
  margin: 4px 0;
}

.acc-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-btn:hover {
  background: rgba(184, 154, 92, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.acc-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Accessibility Global Modifiers */
body.font-bold,
body.font-bold * {
  font-weight: 600 !important;
}

body.font-bold h1,
body.font-bold h2,
body.font-bold h3,
body.font-bold em {
  font-weight: 700 !important;
}

body.font-bold .hero-title {
  font-weight: 400 !important;
}

body.font-scale-1 .section-text,
body.font-scale-1 p {
  font-size: 1.15em !important;
  line-height: 1.9;
}

body.font-scale-2 .section-text,
body.font-scale-2 p {
  font-size: 1.3em !important;
  line-height: 2.0;
}

body.font-scale-minus-1 .section-text,
body.font-scale-minus-1 p {
  font-size: 0.9em !important;
  line-height: 1.7;
}

body.font-scale-1 .section-title {
  font-size: clamp(36px, 4.5vw, 60px) !important;
}

body.font-scale-2 .section-title {
  font-size: clamp(40px, 5.5vw, 68px) !important;
}

body.font-scale-minus-1 .section-title {
  font-size: clamp(26px, 3.5vw, 48px) !important;
}