/* =====================
   CSS Variables & Tokens
===================== */
:root {
  --clr-bg:          #0c0c0f;
  --clr-surface:     #131318;
  --clr-surface2:    #1a1a22;
  --clr-border:      rgba(255,255,255,0.07);
  --clr-red:         #C0443C;
  --clr-red-glow:    rgba(192,68,60,0.25);
  --clr-red-light:   #d9534a;
  --clr-gold:        #c8a96e;
  --clr-text:        #e8e4de;
  --clr-text-muted:  #888899;
  --clr-white:       #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* =====================
   Reset & Base
===================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  aspect-ratio: auto;
}

/* Hero & banner images */
.hero img,
.section img,
.distribution-image img,
.about-banner,
.distribution-banner {
  max-width: 100%;
  height: auto;
}

/* Distribution card images */
.distribution-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Partner photos */
.partner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* =====================
   Noise Texture Overlay
===================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* =====================
   Header
===================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 80px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(12, 12, 15, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--clr-border);
  transition: background 0.4s ease, border-color 0.4s ease;
  box-sizing: border-box;
}

.logo {
  height: 58px;
  width: auto;
  filter: brightness(1.05);
  transition: transform 0.3s var(--ease-out), filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}

header nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

header nav a {
  text-decoration: none;
  color: rgba(232, 228, 222, 0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--clr-red);
  transition: width 0.35s var(--ease-out);
}

header nav a:hover {
  color: var(--clr-white);
}

header nav a:hover::after {
  width: 100%;
}

/* =====================
   Hero (Homepage)
===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('images/background2.png') center center / cover no-repeat;
  width: 100%;
  box-sizing: border-box;
}

/* Dark overlay on hero image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,12,15,0.55) 0%,
    rgba(12,12,15,0.35) 50%,
    rgba(12,12,15,0.80) 100%
  );
  z-index: 1;
}

/* Radial red accent on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(192,68,60,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease-out) 0.2s, transform 1s var(--ease-out) 0.2s;
}

.hero-eyebrow.show {
  opacity: 1;
  transform: translateY(0);
}

h1.hero-text {
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: opacity 1.2s var(--ease-out) 0.4s, transform 1.2s var(--ease-out) 0.4s;
  opacity: 0;
  transform: translateY(40px);
}

h1.hero-text.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-rule {
  width: 60px;
  height: 1.5px;
  background: var(--clr-red);
  margin: 28px auto;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.8s var(--ease-out) 0.9s, transform 0.8s var(--ease-out) 0.9s;
}

.hero-rule.show {
  opacity: 1;
  transform: scaleX(1);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(232,228,222,0.65);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out) 1.1s, transform 1s var(--ease-out) 1.1s;
}

.hero-sub.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   Blank Hero (Inner Pages)
===================== */
.blank-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 20px 80px;
  min-height: 300px;
  background: linear-gradient(180deg, var(--clr-surface) 0%, var(--clr-bg) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.blank-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(250px, 90%, 600px);
  max-width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-red), transparent);
}

.blank-hero-content h1,
#blank-hero-text {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* =====================
   CTA Button
===================== */
.cta-button {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: transparent;
  border: 1px solid rgba(192,68,60,0.6);
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.cta-button.show,
.hero .cta-button {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.4s ease, border-color 0.4s ease, transform 0.2s ease,
              opacity 1s var(--ease-out) 1.4s, transform 1s var(--ease-out) 1.4s;
}

.hero .cta-button {
  opacity: 0;
  transform: translateY(20px);
}

.hero .cta-button.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--clr-red);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.cta-button:hover {
  color: var(--clr-white);
  border-color: var(--clr-red);
  transform: translateY(-2px);
}

.cta-button:hover::before {
  transform: translateX(0);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

/* =====================
   Section Layout
===================== */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px;
  max-width: 1280px;
  margin: auto;
  gap: 80px;
  width: 100%;
  box-sizing: border-box;
}

.section-text {
  max-width: 520px;
  flex: 1;
}

.section-text h2 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 16px;
  display: block;
}

.section-text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 15.5px;
  margin-top: 18px;
}

.section img {
  width: 500px;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--clr-border);
  flex-shrink: 0;
}

/* =====================
   Fade Animations
===================== */
.fade-in-from-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.fade-in-from-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.fade-in-from-left.show,
.fade-in-from-right.show,
.fade-in-up.show {
  opacity: 1;
  transform: translate(0);
}

/* =====================
   See More Button
===================== */
.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-red);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.see-more-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.see-more-btn:hover {
  color: var(--clr-red-light);
  gap: 14px;
}

/* =====================
   Stats Section
===================== */
.stats {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0 60px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 50px 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--clr-border);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1;
}

.slot-machine {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.slot-machine .plus-sign {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 300;
  color: var(--clr-red);
  margin-right: 4px;
}

.slot-machine .count {
  min-width: 2ch;
  text-align: center;
  display: inline-block;
}

.stat-item p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-top: 12px;
}

/* =====================
   Distribution Section (Index)
===================== */
.distribution-section {
  text-align: center;
  padding: 100px 40px;
  background: var(--clr-surface);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.distribution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), var(--clr-red-glow), var(--clr-border), transparent);
}

.distribution-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.distribution-section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 16px;
  display: block;
}

.distribution-section h2 {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  margin-bottom: 14px;
}

.distribution-section > p {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 60px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.distribution-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}

.distribution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192,68,60,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px var(--clr-red-glow);
}

.distribution-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

.distribution-card-img-wrap {
  overflow: hidden;
  height: 190px;
}

.distribution-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.distribution-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--clr-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.distribution-card p {
  font-size: 14px;
  color: var(--clr-text-muted);
  line-height: 1.65;
  flex: 1;
}

.see-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.see-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.see-more:hover {
  color: var(--clr-red-light);
  gap: 12px;
}

/* =====================
   Contact Section (Index)
===================== */
.contact-heading,
.about-contact-heading {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 16px;
}

.contact-subtext {
  text-align: center;
  font-size: 14px;
  color: var(--clr-text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}

.contact-section,
.about-contact-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 0 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.map-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.map-text,
.about-map-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
}

iframe {
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--clr-border);
  display: block;
  filter: grayscale(0.3) brightness(0.9);
}

.contact-card,
.about-contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 38px;
  font-size: 15px;
  color: var(--clr-text);
  line-height: 1.7;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-card strong,
.about-contact-card strong {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-red);
  display: block;
  margin-bottom: 6px;
}

.contact-details,
.about-contact-details {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--clr-border);
  font-size: 14px;
  color: var(--clr-text-muted);
}

/* =====================
   Distribution Details Page
===================== */

.distribution-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Fades from transparent to white at the bottom */
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 90%), url('images/distribution.png') center center / cover no-repeat;
}

.distribution-details {
  padding: 80px 60px;
  max-width: 1280px;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}

.distribution-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
  position: relative;
}

.distribution-row::before {
  content: '';
  position: absolute;
  left: -60px;
  right: -60px;
  bottom: -60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}

.distribution-row:last-child::before {
  display: none;
}

.distribution-row.reverse {
  flex-direction: row-reverse;
}

.distribution-image {
  flex: 1;
  min-width: 0;
}

.distribution-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--clr-border);
}

.distribution-text {
  flex: 1;
  min-width: 0;
  max-width: 500px;
}

.distribution-text h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.distribution-text .section-label {
  margin-bottom: 12px;
}

.distribution-text p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 15.5px;
}

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

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.8) 85%, rgba(0,0,0,0.8) 100%), url('images/aboutus3.png') center center / cover no-repeat;
}
/* Dark overlay on .about-hero image */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,12,15,0.55) 0%,
    rgba(12,12,15,0.35) 50%,
    rgba(12,12,15,0.80) 100%
  );
  z-index: 1;
}

/* Radial red accent on hero */
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(192,68,60,0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 20px;
  max-width: 900px;
}

.about-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1s var(--ease-out) 0.2s, transform 1s var(--ease-out) 0.2s;
}

.about-hero-eyebrow.show {
  opacity: 1;
  transform: translateY(0);
}

h1.about-hero-text {
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 300;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: opacity 1.2s var(--ease-out) 0.4s, transform 1.2s var(--ease-out) 0.4s;
  opacity: 0;
  transform: translateY(40px);
}

h1.about-hero-text.show {
  opacity: 1;
  transform: translateY(0);
}

.about-hero-rule {
  width: 60px;
  height: 1.5px;
  background: var(--clr-red);
  margin: 28px auto;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.8s var(--ease-out) 0.9s, transform 0.8s var(--ease-out) 0.9s;
}

.about-hero-rule.show {
  opacity: 1;
  transform: scaleX(1);
}

.about-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(232,228,222,0.65);
  letter-spacing: 0.03em;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-out) 1.1s, transform 1s var(--ease-out) 1.1s;
}

.about-hero-sub.show {
  opacity: 1;
  transform: translateY(0);
}

#about-expanded {
  margin-top: 0;
  padding-top: 160px;
}

#about-expanded .section-text p + p {
  margin-top: 16px;
}

/* =====================
   Partners Page
===================== */
.partner-hero-wrapper {
  background: radial-gradient(ellipse 80% 70% at 70% 50%, #3a1210, #0f0608 60%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.partner-hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 30% 50%, rgba(192,68,60,0.08), transparent 70%);
  pointer-events: none;
}

.partner-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
  padding: 160px 60px 160px;
  min-height: 70vh;
  position: relative;
  z-index: 2;
}

.partner-content {
  flex: 1;
  max-width: 520px;
}

.partner-content h1 {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.partner-content p {
  font-size: 16px;
  color: rgba(232,228,222,0.65);
  line-height: 1.75;
}

.cta-button.whatsapp-cta {
  background: transparent;
  color: var(--clr-white);
  border: 1px solid rgba(192,68,60,0.6);
  font-weight: 500;
  font-size: 13px;
}

.partner-visuals-web {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.partner-photo {
  background: var(--clr-surface2);
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
  position: absolute;
  flex-shrink: 0;
}

.partner-photo:hover {
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(192,68,60,0.3);
}

.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Desktop sizes and positions */
.partner-photo.p1 { 
  width: 80px; 
  height: 80px; 
  top: 8%; 
  left: 4%; 
}

.partner-photo.p2 { 
  width: 100px; 
  height: 100px; 
  top: 0; 
  right: 14%; 
}

.partner-photo.p3 { 
  width: 90px; 
  height: 90px; 
  top: 38%; 
  left: 0; 
}

.partner-photo.p4-centerpiece {
  width: 200px; 
  height: 200px;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--clr-surface);
  border: 2px solid rgba(192,68,60,0.35);
}

.partner-photo.p4-centerpiece:hover { 
  transform: translate(-50%, -50%) scale(1.04); 
}

.partner-photo.p5 { 
  width: 110px; 
  height: 110px; 
  top: 48%; 
  right: 0; 
}

.partner-photo.p6 { 
  width: 70px; 
  height: 70px; 
  bottom: 4%; 
  left: 18%; 
}

.partner-photo.p7 { 
  width: 100px; 
  height: 100px; 
  bottom: 0; 
  right: 8%; 
}

/* =====================
   Future Brands Hero
===================== */
.future-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 100px;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(192,68,60,0.1) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.future-hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 90%, 600px);
  max-width: calc(100% - 32px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-red), transparent);
  opacity: 0.6;
}

.future-coming-soon {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.future-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.15;
  max-width: 800px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.future-hero > p {
  margin: 24px auto 0;
  font-size: 15px;
  color: rgba(232,228,222,0.65);
  max-width: 460px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.future-dots {
  display: flex;
  gap: 10px;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.future-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  animation: pulse 1.6s ease-in-out infinite;
}

.future-dots span:nth-child(2) { 
  animation-delay: 0.2s; 
  background: var(--clr-red); 
  opacity: 0.7; 
}

.future-dots span:nth-child(3) { 
  animation-delay: 0.4s; 
}

@keyframes pulse {
  0%, 100% { 
    opacity: 0.3; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.3); 
  }
}

/* =====================
   Footer
===================== */
footer {
  text-align: center;
  padding: 50px 40px;
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(80px, 30%, 120px);
  max-width: calc(100% - 40px);
  height: 1.5px;
  background: var(--clr-red);
}

footer p {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

footer p:first-child {
  color: var(--clr-gold);
  font-weight: 500;
  margin-bottom: 4px;
}

/* =====================
   Scroll Anchor Offsets
===================== */
#about, #distribution, #brands, #partners {
  scroll-margin-top: 80px;
}
#contact {
  scroll-margin-top: 80px;
}
#distribution-network {
  scroll-margin-top: 80px;
}
#global-sourcing-solutions,
#seamless-trade-facilitation,
#tailored-partnerships,
#future-opportunities {
  scroll-margin-top: 80px;
}

/* =====================
   Responsive Breakpoints
===================== */
@media (max-width: 1100px) {
  h1.hero-text { font-size: 62px; }
  .distribution-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 80px 40px; gap: 50px; }
  .stats { padding: 0 40px 80px; }
}

@media (max-width: 900px) {
  header { padding: 0 24px; }
  header nav { gap: 20px; }
  header nav a { font-size: 12px; }

  .partner-hero { flex-direction: column; padding: 120px 30px 80px; text-align: center; gap: 40px; }
  
  .partner-visuals-web { 
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    min-height: 360px;
    margin: 0 auto;
    position: relative;
  }

  /* Tablet scaled sizes - 75% of desktop */
  .partner-photo.p1 { width: 60px; height: 60px; top: 8%; left: 4%; }
  .partner-photo.p2 { width: 75px; height: 75px; top: 0; right: 14%; }
  .partner-photo.p3 { width: 68px; height: 68px; top: 38%; left: 0; }
  .partner-photo.p4-centerpiece { 
    width: 150px; 
    height: 150px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .partner-photo.p5 { width: 82px; height: 82px; top: 48%; right: 0; }
  .partner-photo.p6 { width: 53px; height: 53px; bottom: 4%; left: 18%; }
  .partner-photo.p7 { width: 75px; height: 75px; bottom: 0; right: 8%; }

  .partner-content h1 { font-size: 42px; }

  .future-hero {
    padding: 120px 30px 80px;
    min-height: 70vh;
  }

  .future-hero h1 {
    font-size: clamp(42px, 6vw, 56px);
  }

  .future-hero > p {
    font-size: 14px;
    max-width: 420px;
  }

  .distribution-row, .distribution-row.reverse {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
  .distribution-details { padding: 80px 30px; }
}

@media (max-width: 768px) {
  /* Header */
  header {
    padding: 14px 16px;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  header nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  header nav a { 
    font-size: 11px;
    white-space: nowrap;
  }

  .logo {
    height: 48px;
    width: auto;
  }

  /* Hero section */
  .hero {
    min-height: 90vh;
    padding: 0 16px;
  }

  h1.hero-text { 
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.15;
  }

  .hero-sub { 
    font-size: 13.5px;
    max-width: 100%;
  }

  .cta-button {
    font-size: 11px;
    padding: 12px 28px;
    margin-top: 28px;
  }

  /* Sections */
  .section { 
    flex-direction: column;
    padding: 50px 16px;
    gap: 30px;
    margin-top: 0;
  }

  .section-text {
    max-width: 100%;
  }

  .section img { 
    width: 100%;
    height: auto;
    max-height: 240px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
  }

  /* Stats */
  .stats { 
    flex-direction: column;
    gap: 0;
    padding: 0 16px 50px;
    margin-bottom: 60px;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .stat-item {
    padding: 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

  .stat-number { 
    font-size: clamp(48px, 12vw, 64px);
    line-height: 1;
  }

  .stat-item p {
    font-size: 10px;
    margin-top: 10px;
  }

  /* Distribution section */
  .distribution-section { 
    padding: 60px 16px;
  }

  .distribution-section h2 {
    font-size: clamp(28px, 6vw, 42px);
  }

  .distribution-grid { 
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .distribution-card {
    border-radius: 8px;
  }

  .distribution-card-img-wrap {
    height: 160px;
  }

  .distribution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .distribution-card-body {
    padding: 18px;
  }

  .distribution-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .distribution-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Contact section */
  .contact-heading, 
  .about-contact-heading { 
    font-size: clamp(28px, 6vw, 42px);
    padding-top: 60px;
    padding-bottom: 12px;
  }

  .contact-subtext {
    font-size: 12px;
    padding: 10px 16px 20px;
    margin-bottom: 0;
  }

  .contact-section, 
  .about-contact-section {
    flex-direction: column;
    align-items: center;
    padding: 0 16px 60px;
    gap: 24px;
  }

  .map-container {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  iframe {
    width: 100% !important;
    height: 240px !important;
    border-radius: 6px;
  }

  .contact-card, 
  .about-contact-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    font-size: 13.5px;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .contact-card strong,
  .about-contact-card strong {
    font-size: 9px;
    margin-top: 16px;
    margin-bottom: 4px;
  }

  .contact-details,
  .about-contact-details {
    margin-top: 16px;
    padding-top: 16px;
    font-size: 13px;
  }

  /* Distribution details page */
  .distribution-row,
  .distribution-row.reverse {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 60px;
  }

  .distribution-row::before {
    display: none;
  }

  .distribution-details { 
    padding: 50px 16px;
  }

  .distribution-image img {
    width: 100%;
    height: auto;
    max-height: 280px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
  }

  .distribution-text {
    max-width: 100%;
  }

  .distribution-text h2 {
    font-size: clamp(24px, 5.5vw, 36px);
    margin-bottom: 14px;
  }

  .distribution-text p {
    font-size: 13.5px;
    line-height: 1.7;
  }

  /* About page */
  #about-expanded {
    padding-top: 60px;
  }

  /* Blank hero */
  .blank-hero {
    padding: 100px 16px 50px;
    min-height: 200px;
  }

  .blank-hero-content h1,
  #blank-hero-text { 
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.15;
  }

  /* Partner section */
  .partner-hero-wrapper {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .partner-hero {
    flex-direction: column;
    gap: 36px;
    padding: 100px 16px 80px;
    min-height: auto;
  }

  .partner-content {
    max-width: 100%;
    text-align: center;
  }

  .partner-content h1 {
    font-size: clamp(28px, 7vw, 42px);
    margin-bottom: 16px;
  }

  .partner-content p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .partner-visuals-web {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    min-height: 240px;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile scaled sizes - 50% of desktop */
  .partner-photo.p1 { width: 40px; height: 40px; top: 8%; left: 4%; }
  .partner-photo.p2 { width: 50px; height: 50px; top: 0; right: 14%; }
  .partner-photo.p3 { width: 45px; height: 45px; top: 38%; left: 0; }
  .partner-photo.p4-centerpiece { 
    width: 100px; 
    height: 100px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(192,68,60,0.35);
  }
  .partner-photo.p4-centerpiece:hover {
    transform: translate(-50%, -50%) scale(1.05);
  }
  .partner-photo.p5 { width: 55px; height: 55px; top: 48%; right: 0; }
  .partner-photo.p6 { width: 35px; height: 35px; bottom: 4%; left: 18%; }
  .partner-photo.p7 { width: 50px; height: 50px; bottom: 0; right: 8%; }

  /* Future brands */
  .future-hero {
    padding: 100px 16px 80px;
    min-height: 75vh;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(192,68,60,0.08) 0%, transparent 70%);
  }

  .future-hero::before {
    width: clamp(250px, 90%, 500px);
    top: 60px;
  }

  .future-hero h1 {
    font-size: clamp(28px, 7vw, 44px);
    max-width: 100%;
  }

  .future-hero > p {
    font-size: 13.5px;
    max-width: 100%;
    padding: 0 8px;
  }

  .future-coming-soon {
    font-size: 9px;
    letter-spacing: 0.3em;
  }

  .future-dots {
    margin-top: 40px;
  }

  .future-dots span {
    width: 7px;
    height: 7px;
  }

  /* Footer */
  footer {
    padding: 36px 16px;
  }

  footer p {
    font-size: 10px;
    line-height: 2;
  }

  /* Scroll offsets */
  #about, #distribution, #brands, #partners,
  #contact, #distribution-network {
    scroll-margin-top: 64px;
  }
}
