/* ═══════════════════════════════════════════════════
   IGX — Interlude Global Export
   Design: Opsi A — Editorial Dark Luxury
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --bg:          #0D0D0B;
  --surface:     #161614;
  --surface-alt: #1E1E1B;
  --gold:        #D4A422;
  --gold-soft:   rgba(212, 164, 34, 0.10);
  --gold-mid:    rgba(212, 164, 34, 0.25);
  --ink:         #F5F2EC;
  --ink-muted:   #9A9690;
  --ink-subtle:  #5A5750;
  --border:      #2A2A26;
  --border-strong: #3A3A36;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --ease-out:    cubic-bezier(0.32, 0.72, 0, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 80px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  outline: none;
  width: 100%;
  padding: 12px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: var(--ink-subtle); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
textarea { resize: vertical; min-height: 120px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── SHARED TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
              transform 0.7s var(--ease-out) var(--delay, 0s);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) var(--delay, 0s);
}
.fade-up.visible, .fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(13, 13, 11, 0.92);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link:hover::after { color: var(--ink); width: 100%; }
.nav-link.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-mid);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold); color: var(--bg); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.nav-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1A1208 0%, #0D0D0B 50%, #0A0F12 100%);
  background-size: cover;
  background-position: center;
  /* CMS: background-image: url('...') */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(13,13,11,0.85) 0%, rgba(13,13,11,0.4) 55%, rgba(13,13,11,0.1) 100%),
    linear-gradient(to bottom, rgba(13,13,11,0.55) 0%, transparent 25%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 96px;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-word {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 144px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
}
.hero-word-accent { color: var(--gold); font-style: italic; }
.hero-scroll {
  position: absolute;
  bottom: 48px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.hero-scroll:hover { opacity: 1; }
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--ink));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  writing-mode: vertical-rl;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 80vh;
}
.about-visual {
  position: relative;
  background: var(--surface);
}
.about-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1E1A10 0%, #0D0D0B 100%);
  background-size: cover;
  background-position: center;
  /* CMS: background-image: url('...') */
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: none;
}
.about-img[src] { display: block; }
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,11,0.6) 0%, transparent 50%);
}
.about-stat-card {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  background: rgba(13, 13, 11, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  padding: 24px;
  z-index: 2;
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  vertical-align: top;
  margin-top: 4px;
}
.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}
.about-content {
  padding: 96px 64px 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story p {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-team { margin-top: 48px; }
.team-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-member { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.team-photo {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface-alt);
  background-size: cover;
  background-position: center 15%;
  /* CMS: background-image: url('...') */
}
.team-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}
.team-role {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   CORE VALUES
═══════════════════════════════════════════════════ */
.values {
  padding: 112px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.values-header {
  margin-bottom: 64px;
  max-width: 480px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.value-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.25s;
}
.value-item:hover { background: var(--surface); }
.value-num {
  font-family: var(--font-display);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.25s, border-color 0.25s;
  border: 1px solid var(--border-strong);
  width: 52px;
  height: 52px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
}
.value-item:hover .value-num { color: var(--gold); border-color: var(--gold); }
.value-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.value-desc {
  font-size: 12.5px;
  color: rgba(245,242,236,0.7);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   TRADES — FEATURED
═══════════════════════════════════════════════════ */
.trade-featured {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 640px;
  overflow: hidden;
}
.trade-featured-reverse {
  direction: rtl;
}
.trade-featured-reverse > * { direction: ltr; }

.trade-visual {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.trade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}
.trade-img[src] { display: block; }
.trade-visual-rattan {
  background:
    linear-gradient(135deg, #1A1208 0%, #2A1E08 50%, #0D0D0B 100%);
  /* CMS: background-image: url('...') */
  background-size: cover;
  background-position: center;
}
.trade-visual-coffee {
  background:
    linear-gradient(135deg, #0A0A07 0%, #1A1208 40%, #120C04 100%);
  /* CMS: background-image: url('...') */
  background-size: cover;
  background-position: center;
}
.trade-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(13,13,11,0.7) 100%);
}
.trade-featured-reverse .trade-visual-overlay {
  background: linear-gradient(to left, transparent 40%, rgba(13,13,11,0.7) 100%);
}
.trade-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(212, 164, 34, 0.04);
  transition: opacity 0.4s;
}
.trade-featured:hover .trade-visual::after { opacity: 1; }
.trade-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.trade-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.trade-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 440px;
}
.trade-brand-ref {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  width: fit-content;
}
.trade-brand-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.trade-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}
.btn-trade {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.btn-trade:hover { background: var(--gold); color: var(--bg); }
.btn-trade svg { transition: transform 0.2s; }
.btn-trade:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   TRADES — SECONDARY
═══════════════════════════════════════════════════ */
.trades-secondary {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.trades-secondary .container { max-width: 1200px; margin: 0 auto; padding: 0; }
.trades-secondary .section-eyebrow { margin-bottom: 8px; }
.trades-secondary .section-title { margin-bottom: 48px; }
.secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.secondary-card {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transition: background 0.25s;
}
.secondary-card:hover { background: var(--surface-alt); }
.secondary-photo {
  aspect-ratio: 4/3;
  background: var(--surface-alt);
  background-size: cover;
  background-position: center;
  /* CMS: background-image: url('...') */
  position: relative;
}
.secondary-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--surface) 100%);
}
.secondary-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.secondary-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1;
}
.secondary-desc {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   BRANDS SHOWCASE
═══════════════════════════════════════════════════ */
.brands {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}
.brands-intro {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-top: 0;
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
.brand-card {
  background: var(--bg);
  transition: background 0.25s;
}
.brand-card:hover { background: var(--surface-alt); }
.brand-card-inner {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}
.brand-logo-wrap {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.brand-logo-placeholder {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Replace with actual logo image when available */
}
.brand-logo-wrap img {
  max-height: 64px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: lighten;
}
.brand-info { flex: 1; }
.brand-category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.brand-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  width: fit-content;
  margin-top: auto;
}
.brand-link:hover { color: var(--gold); border-color: var(--gold); }
.brand-link svg { transition: transform 0.2s; }
.brand-link:hover svg { transform: translate(3px, -3px); }

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  padding: 128px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(212,164,34,0.05) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-gold-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 40px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: #E8B82A; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact {
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form-col {
  padding: 96px 64px 96px 48px;
  border-right: 1px solid var(--border);
}
.contact-form-col .section-title { margin-bottom: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background 0.2s;
}
.btn-submit:hover { background: #E8B82A; }
.btn-submit:disabled { background: var(--ink-subtle); cursor: not-allowed; }
.form-success, .form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  padding: 14px 16px;
}
.form-success { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-mid); }
.form-error { background: rgba(180,35,35,0.08); color: #E05555; border: 1px solid rgba(180,35,35,0.25); }
.contact-info-col { padding: 96px 48px 96px 64px; }
.contact-details { margin-bottom: 40px; }
.contact-item { margin-bottom: 28px; }
.contact-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item-value {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.7;
}
.contact-link { transition: color 0.2s; }
.contact-link:hover { color: var(--ink); }
.contact-map {
  border: 1px solid var(--border);
  overflow: hidden;
  filter: grayscale(1) contrast(1.1) brightness(0.4);
  transition: filter 0.3s;
}
.contact-map:hover { filter: grayscale(0.5) contrast(1) brightness(0.6); }
.contact-map iframe { display: block; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}
.footer-logo-link {
  display: block;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  margin-bottom: 28px;
  text-align: justify;
  text-align-last: justify;
}
.footer-social { display: flex; justify-content: space-between; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 8px;
}
.footer-nav-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-nav-link {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--ink-subtle);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45); }

/* ═══════════════════════════════════════════════════
   MOBILE NAV OVERLAY
═══════════════════════════════════════════════════ */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,11,0.97);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-link {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: -0.02em;
  transition: color 0.2s;
  padding: 8px 0;
}
.nav-mobile-link:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about { grid-template-columns: 1fr; }
  .about-visual { min-height: unset; display: flex; flex-direction: column; }
  .about-photo { position: relative; inset: auto; }
  .about-img { position: relative; inset: auto; width: 100%; height: auto; object-fit: fill; }
  .about-photo-overlay { display: none; }
  .about-stat-card { position: relative; bottom: auto; left: auto; transform: none; width: auto; border-top: none; }
  .about-content { padding: 64px 32px; }
  .trade-featured { grid-template-columns: 1fr; }
  .trade-visual { min-height: 200px; aspect-ratio: unset; }
  .trade-img { position: relative; inset: auto; width: 100%; height: auto; object-fit: fill; }
  .trade-visual-overlay { display: none; }
  .trade-featured-reverse { direction: ltr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-col { border-right: none; border-bottom: 1px solid var(--border); padding: 64px 32px; }
  .contact-info-col { padding: 48px 32px 64px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 44px; }

  .hero-content { padding: 0 24px 80px; }
  .hero-word { font-size: clamp(56px, 15vw, 96px); }
  .hero-scroll { right: 24px; bottom: 32px; }

  .about-content { padding: 48px 24px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .values { padding: 72px 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .trade-content { padding: 48px 24px; }
  .trade-desc { max-width: 100%; }

  .trades-secondary { padding: 72px 24px; }
  .secondary-grid { grid-template-columns: 1fr; gap: 2px; }
  .secondary-card { grid-template-columns: 1fr; }
  .secondary-photo { aspect-ratio: 16/9; }
  .secondary-photo::after { background: linear-gradient(to bottom, transparent 50%, var(--surface) 100%); }

  .brands { padding: 72px 0; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card-inner { padding: 40px 32px; }

  .cta-banner { padding: 80px 24px; }

  .values-grid { grid-template-columns: 1fr; }
  .value-item { padding: 24px; }

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

  .footer-inner { padding: 48px 24px 32px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 20px 24px; flex-direction: column; gap: 4px; text-align: center; }

  .wa-float { bottom: 24px; right: 24px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero-word { font-size: clamp(48px, 18vw, 80px); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .footer-nav { grid-template-columns: 1fr; }
  .brands-header { padding: 0 24px; }
  .stat-num { font-size: 28px; }
}
