/* ============================================================
   Yılmaz Töner Deri — style.css
   Dark editorial, premium B2B leather sourcing site
   ============================================================ */

/* ─── VARIABLES ─────────────────────────────────────────────── */

:root {
  --bg-deep:       #0f0b09;
  --bg-dark:       #160e09;
  --bg-card:       #1c1109;
  --bg-card-alt:   #211508;
  --bg-section:    #13100d;
  --bg-section-alt:#110d0a;

  --brown-rich:    #4a2c14;
  --brown-mid:     #6b3d1e;
  --brown-warm:    #8b5230;

  --cream:         #e8ddd0;
  --cream-soft:    #d6c9b8;
  --cream-muted:   #b5a48f;
  --beige:         #c4aa8a;

  --amber:         #c8882a;
  --amber-soft:    #d4a044;
  --amber-glow:    rgba(200, 136, 42, 0.15);
  --amber-border:  rgba(200, 136, 42, 0.35);

  --gold-line:     #a07830;

  --text-primary:  #e2d5c4;
  --text-secondary:#a89880;
  --text-muted:    #6e5e4a;
  --text-label:    #c8882a;

  --border:        rgba(200, 150, 80, 0.12);
  --border-hover:  rgba(200, 136, 42, 0.4);

  --header-h:      76px;
  --radius:        2px;
  --radius-card:   4px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --transition: 0.3s ease;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-soft); }

ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 300; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; }

/* ─── CONTAINER ──────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg-deep);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-soft);
  border-color: var(--amber-soft);
  color: var(--bg-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 136, 42, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(226, 213, 196, 0.35);
}
.btn-secondary:hover {
  border-color: var(--amber-border);
  color: var(--amber-soft);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream-muted);
  border-color: var(--border);
  font-size: 0.75rem;
}
.btn-outline:hover {
  border-color: var(--amber-border);
  color: var(--amber-soft);
  transform: translateY(-2px);
}

/* ─── SECTION SHARED ─────────────────────────────────────────── */

section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
  opacity: 0.6;
}

section h2 { margin-bottom: 1rem; }

.section-intro {
  color: var(--text-secondary);
  max-width: 640px;
  margin-bottom: 3rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── GRAIN OVERLAY ──────────────────────────────────────────── */

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.055'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.7;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(15, 11, 9, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

#header.header-scrolled {
  height: 64px;
  background: rgba(12, 9, 7, 0.97);
  border-bottom-color: rgba(200, 136, 42, 0.2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* ─ Logo (header) — bigger and more prominent ─ */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  max-height: 68px;   /* was 52px */
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(200, 136, 42, 0.15));
  transition: filter var(--transition);
}
.logo:hover img { filter: drop-shadow(0 2px 12px rgba(200, 136, 42, 0.3)); }

.logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}

/* ─ Nav ─ */
#main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
#main-nav ul li a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: color var(--transition);
}
#main-nav ul li a:hover { color: var(--amber-soft); }

/* ─ Lang Switcher ─ */
.header-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.lang-switcher { display: flex; align-items: center; gap: 0.05rem; }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.lang-btn:hover { color: var(--amber-soft); }
.lang-btn.active { color: var(--amber); }

.lang-divider { color: var(--text-muted); font-size: 0.65rem; opacity: 0.35; }

/* ─ Hamburger ─ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream-muted);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO — 2-column: content left, photo right
══════════════════════════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(70, 35, 8, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 5% 85%, rgba(50, 25, 5, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(10, 6, 3, 0.9) 0%, transparent 50%),
    linear-gradient(160deg, #0f0b09 0%, #1a0f07 40%, #120a05 70%, #0a0604 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.007) 3px, rgba(255,255,255,0.007) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255,255,255,0.004) 3px, rgba(255,255,255,0.004) 4px);
  pointer-events: none;
}

/* 2-col hero inner */
.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.hero-content { max-width: 640px; }

/* ─ Hero logo mark (big, in hero section) ─ */
.hero-brand-mark {
  margin-bottom: 2.5rem;
}
.hero-brand-mark img {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(200, 136, 42, 0.30));
}
.hero-logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
}

/* ─ Hero label / heading ─ */
.hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--amber);
}

#hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.85;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-dot { color: var(--amber); opacity: 0.5; }

/* ─ Hero right: photo frame ─ */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-photo-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200, 136, 42, 0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,136,42,0.08);
  aspect-ratio: 3/4;
  /* CSS leather fallback if photo fails to load */
  background:
    radial-gradient(ellipse at 30% 20%, rgba(120, 65, 15, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(80, 40, 8, 0.5) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.012) 8px, rgba(255,255,255,0.012) 9px),
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.008) 8px, rgba(255,255,255,0.008) 9px),
    linear-gradient(160deg, #2a1505 0%, #1a0d04 50%, #0f0804 100%);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85) contrast(1.05) saturate(0.9);
  transition: filter 0.4s ease, transform 0.6s ease;
}
.hero-photo-frame:hover img { filter: brightness(0.9) contrast(1.05) saturate(1); transform: scale(1.02); }

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,6,3,0.7) 0%, transparent 50%),
    linear-gradient(to right, rgba(10,6,3,0.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero-photo-caption {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  padding-right: 4px;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */

.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}
.trust-icon { color: var(--amber); font-size: 0.45rem; }

/* ══════════════════════════════════════════════════════════════
   ABOUT — text left + highlights, photo right
══════════════════════════════════════════════════════════════ */

#about { background: var(--bg-section); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
  line-height: 1.85;
}
.about-text p:last-of-type { margin-bottom: 2rem; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 0;
}
.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--amber);
  opacity: 0;
  transition: opacity var(--transition);
}
.highlight-card:hover { background: var(--bg-card-alt); border-color: var(--border-hover); }
.highlight-card:hover::before { opacity: 1; }
.highlight-icon { font-size: 0.85rem; color: var(--amber); margin-bottom: 0.5rem; opacity: 0.7; }
.highlight-card div:last-child {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream-muted);
  line-height: 1.5;
}

/* ─ About photo ─ */
.about-photo {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200, 136, 42, 0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) contrast(1.08) saturate(0.85);
  transition: filter 0.4s ease;
}
.about-photo:hover img { filter: brightness(0.88) contrast(1.08) saturate(0.9); }

.about-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(10,6,3,0.85) 0%, transparent 100%);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS — Chapter II
══════════════════════════════════════════════════════════════ */

#products { background: var(--bg-dark); }

/* Cinematic leather strip photo */
.section-photo-strip {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid rgba(200, 136, 42, 0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.section-photo-strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.7) contrast(1.1) saturate(0.75);
}
.strip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,6,3,0.7) 0%, transparent 40%, transparent 60%, rgba(10,6,3,0.7) 100%),
    linear-gradient(to bottom, rgba(10,6,3,0.3) 0%, transparent 40%, rgba(10,6,3,0.5) 100%);
  pointer-events: none;
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.product-card {
  background: var(--bg-card);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: var(--bg-card-alt);
  transform: translateY(-4px);
  z-index: 1;
}
.product-card:hover .product-texture { opacity: 1; }
.product-card:hover .product-code { color: var(--amber-soft); }

/* ─ Card image block ─ */
.product-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(120, 68, 15, 0.55) 0%, transparent 65%),
    linear-gradient(160deg, #231005 0%, #140b03 60%, #0f0b08 100%);
  flex-shrink: 0;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.85) contrast(1.06);
  transition: filter 0.45s ease, transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  filter: brightness(0.90) saturate(1.0) contrast(1.08);
  transform: scale(1.04);
}
.product-card-img-wide {
  height: 220px;
}

/* ─ Card body ─ */
.product-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
  flex: 1;
}

/* ─ Hover texture overlay (stays on card-img) ─ */
.product-card-img .product-texture {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.product-card:hover .product-card-img .product-texture { opacity: 1; }

/* Per-product CSS fallback colours (show when image missing) */
[data-product="shoe"]     .product-card-img { background: radial-gradient(ellipse at 40% 35%, rgba(110,58,14,0.65) 0%, transparent 60%), linear-gradient(155deg,#231005,#130a02); }
[data-product="suede"]    .product-card-img { background: radial-gradient(ellipse at 60% 55%, rgba(90,55,28,0.60) 0%, transparent 58%), linear-gradient(155deg,#1f0f06,#120804); }
[data-product="cow"]      .product-card-img { background: radial-gradient(ellipse at 35% 50%, rgba(130,65,12,0.65) 0%, transparent 62%), linear-gradient(155deg,#261205,#150b02); }
[data-product="sheep"]    .product-card-img { background: radial-gradient(ellipse at 55% 40%, rgba(100,72,38,0.55) 0%, transparent 58%), linear-gradient(155deg,#201007,#130b04); }
[data-product="goat"]     .product-card-img { background: radial-gradient(ellipse at 45% 60%, rgba(80,52,22,0.60) 0%, transparent 60%), linear-gradient(155deg,#1c0e05,#120903); }
[data-product="lining"]   .product-card-img { background: radial-gradient(ellipse at 65% 50%, rgba(70,50,28,0.50) 0%, transparent 58%), linear-gradient(155deg,#1a0d05,#120903); }
[data-product="bag"]      .product-card-img { background: radial-gradient(ellipse at 30% 35%, rgba(120,70,18,0.70) 0%, transparent 62%), linear-gradient(155deg,#261306,#150b02); }
[data-product="semi"]     .product-card-img { background: radial-gradient(ellipse at 50% 55%, rgba(50,38,18,0.65) 0%, transparent 58%), linear-gradient(155deg,#1a0e05,#0f0a03); }
[data-product="wetsalt"]  .product-card-img { background: radial-gradient(ellipse at 55% 38%, rgba(35,45,50,0.60) 0%, transparent 58%), linear-gradient(155deg,#111517,#080b0d); }
[data-product="materials"].product-card-img { background: radial-gradient(ellipse at 45% 45%, rgba(100,62,22,0.65) 0%, transparent 62%), linear-gradient(155deg,#221106,#130b02); }
[data-product="printed"]  .product-card-img { background: radial-gradient(ellipse at 45% 40%, rgba(95,48,75,0.65) 0%, transparent 60%), linear-gradient(155deg,#1e0d16,#120810); }
[data-product="wetblue"]  .product-card-img { background: radial-gradient(ellipse at 40% 45%, rgba(18,55,95,0.70) 0%, transparent 58%), linear-gradient(155deg,#050d1a,#030810); }

[data-product="shoe"]     .product-texture { background: radial-gradient(ellipse at 80% 20%, rgba(100,55,15,0.25) 0%, transparent 60%); }
[data-product="suede"]    .product-texture { background: radial-gradient(ellipse at 20% 80%, rgba(80,50,25,0.2) 0%, transparent 55%); }
[data-product="cow"]      .product-texture { background: radial-gradient(ellipse at 70% 70%, rgba(120,60,10,0.3) 0%, transparent 60%); }
[data-product="sheep"]    .product-texture { background: radial-gradient(ellipse at 30% 30%, rgba(90,65,35,0.2) 0%, transparent 55%); }
[data-product="goat"]     .product-texture { background: radial-gradient(ellipse at 60% 40%, rgba(70,45,20,0.22) 0%, transparent 60%); }
[data-product="lining"]   .product-texture { background: radial-gradient(ellipse at 80% 80%, rgba(60,40,20,0.18) 0%, transparent 55%); }
[data-product="bag"]      .product-texture { background: radial-gradient(ellipse at 20% 20%, rgba(110,65,20,0.28) 0%, transparent 60%); }
[data-product="semi"]     .product-texture { background: radial-gradient(ellipse at 50% 60%, rgba(40,30,15,0.3) 0%, transparent 55%); }
[data-product="wetsalt"]  .product-texture { background: radial-gradient(ellipse at 70% 30%, rgba(30,40,45,0.3) 0%, transparent 55%); }
[data-product="materials"].product-texture { background: radial-gradient(ellipse at 50% 50%, rgba(80,55,20,0.2) 0%, transparent 60%); }
[data-product="printed"]  .product-texture { background: radial-gradient(ellipse at 60% 40%, rgba(120,60,90,0.22) 0%, transparent 58%); }
[data-product="wetblue"]  .product-texture { background: radial-gradient(ellipse at 50% 50%, rgba(30,70,120,0.22) 0%, transparent 58%); }

.product-card-wide {
  grid-column: span 3;
}
.product-card-wide .product-card-body {
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 1.25rem;
  align-items: start;
}

.product-code {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  transition: color var(--transition);
}
.product-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.product-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   SOURCING & EXPORT — photo left, timeline right
══════════════════════════════════════════════════════════════ */

#sourcing { background: var(--bg-section-alt); }

.sourcing-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

/* ─ Sourcing photo ─ */
.sourcing-photo {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200, 136, 42, 0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.sourcing-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.8) contrast(1.08) saturate(0.8);
  transition: filter 0.4s ease;
}
.sourcing-photo:hover img { filter: brightness(0.85) contrast(1.08) saturate(0.85); }

.sourcing-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,6,3,0.65) 0%, transparent 50%),
    linear-gradient(to right, rgba(10,6,3,0.2) 0%, transparent 40%);
  pointer-events: none;
}

/* ─ Process timeline ─ */
.process-timeline { display: flex; flex-direction: column; list-style: none; }

.process-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:hover { border-color: var(--amber-border); }

.step-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.02em;
}
.step-content h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.step-content p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════════════════════ */

#why-us { background: var(--bg-section); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.why-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background var(--transition);
}
.why-card:hover { background: var(--bg-card-alt); }
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.75rem; right: 1.75rem;
  height: 1px;
  background: var(--amber);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover::after { opacity: 0.35; }

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--brown-mid);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.why-card h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}
.why-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   MARKETS
══════════════════════════════════════════════════════════════ */

#markets { background: var(--bg-dark); }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.market-card:hover { border-color: var(--amber-border); transform: translateY(-5px); background: var(--bg-card-alt); }

.market-card:nth-child(1) { background: linear-gradient(135deg, #1c1109, #1a1207); }
.market-card:nth-child(2) { background: linear-gradient(135deg, #191008, #1b1109); }
.market-card:nth-child(3) { background: linear-gradient(135deg, #1a1008, #1c1108); }
.market-card:nth-child(4) { background: linear-gradient(135deg, #181009, #1a100a); }
.market-card:nth-child(5) { background: linear-gradient(135deg, #1b1108, #1a1008); }
.market-card:nth-child(6) { background: linear-gradient(135deg, #181009, #1b1008); }

.market-region {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brown-mid);
  line-height: 1;
  opacity: 0.6;
}
.market-card h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.market-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 32px; height: 2px;
  background: var(--amber);
  opacity: 0.4;
  transition: width var(--transition), opacity var(--transition);
}
.market-card:hover::after { width: 48px; opacity: 0.7; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */

#contact { background: var(--bg-section-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.contact-value { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.contact-value a { color: var(--cream-muted); transition: color var(--transition); }
.contact-value a:hover { color: var(--amber-soft); }

.contact-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber-border);
  box-shadow: 0 0 0 3px rgba(200, 136, 42, 0.08);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */

#footer { background: var(--bg-deep); border-top: 1px solid var(--border); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.footer-logo { display: inline-flex; margin-bottom: 1.25rem; }
.footer-logo .logo-fallback {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream-muted);
  display: none;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; max-width: 280px; }

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav ul li a,
.footer-contact ul li a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-nav ul li a:hover,
.footer-contact ul li a:hover { color: var(--amber-soft); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; }
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer-langs { display: flex; gap: 0.25rem; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo img { height: 420px; }

  .sourcing-layout { grid-template-columns: 1fr; }
  .sourcing-photo { position: static; }
  .sourcing-photo img { height: 320px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-wide { grid-column: span 2; }
  .product-card-wide .product-card-body { grid-template-columns: auto 1fr; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  /* Header */
  .hamburger { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(12, 9, 7, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    z-index: 999;
  }
  #main-nav.nav-open { display: block; }
  #main-nav ul { flex-direction: column; gap: 0; padding: 0 1.5rem; }
  #main-nav ul li a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
  #main-nav ul li:last-child a { border-bottom: none; }

  /* Logo smaller on mobile */
  .logo img { max-height: 52px; }
  .hero-brand-mark img { width: 180px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: span 1; }
  .product-card-wide .product-card-body { grid-template-columns: 1fr; }

  .section-photo-strip img { height: 160px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* Markets */
  .markets-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Process */
  .process-step { grid-template-columns: 52px 1fr; gap: 1.25rem; padding: 1.5rem 0; }
  .step-number { font-size: 1.8rem; }

  /* About highlights */
  .about-highlights { grid-template-columns: 1fr; }

  /* Contact */
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { text-align: center; }
  .contact-form-wrap { padding: 1.75rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }

  /* Trust bar */
  .trust-bar-inner { gap: 0.5rem 1.5rem; justify-content: flex-start; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}

@media (max-width: 400px) {
  .markets-grid { grid-template-columns: 1fr; }
}
