/* ============================================================
   RAJAWALI RATTAN EXPORT — Main Stylesheet
   Design: Organic Luxury / Editorial Natural
   ============================================================ */

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

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --cream:     #F7F3EE;
  --ivory:     #EDE8E1;
  --sand:      #D4C5B0;
  --rattan:    #B89A6A;
  --rattan-dk: #8A6F3E;
  --bark:      #4A3728;
  --forest:    #2C3E2D;
  --charcoal:  #1C1C1C;
  --white:     #FFFFFF;
  --muted:     #8A8279;

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

  --nav-h: 80px;
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bark);
}

.display-serif {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rattan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
}

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

p.lead-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(247, 243, 238, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
}

.site-nav .nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bark);
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-cta {
  background: var(--bark);
  color: var(--cream) !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  transition: background var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rattan-dk) !important; color: var(--white) !important; }

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--bark);
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-top: 1px solid var(--sand);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-cta { display: inline-block; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary-rattan {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bark);
  color: var(--cream);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-rattan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rattan-dk);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.btn-primary-rattan:hover::before { transform: scaleX(1); }
.btn-primary-rattan span { position: relative; z-index: 1; }
.btn-primary-rattan:hover { color: var(--white); }

.btn-outline-rattan {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--bark);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--bark);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-rattan:hover {
  background: var(--bark);
  color: var(--cream);
}

.btn-light-rattan {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(247,243,238,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-light-rattan:hover {
  background: var(--cream);
  color: var(--bark);
  border-color: var(--cream);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bark);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(28, 20, 14, 0.72) 0%,
    rgba(28, 20, 14, 0.35) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--rattan);
}

.hero-eyebrow span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 750px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--sand);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(237, 232, 225, 0.8);
  max-width: 440px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--sand);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sand), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Intro Strip ─────────────────────────────────────────── */
.intro-strip {
  background: var(--bark);
  padding: 2rem 0;
  overflow: hidden;
}

.intro-strip-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.intro-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.intro-stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
}

.intro-stat .label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,197,176,0.6);
  font-weight: 400;
  max-width: 100px;
  line-height: 1.3;
}

.intro-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,197,176,0.2);
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 7rem 0;
}

.section-sm { padding: 4rem 0; }
.section-lg { padding: 10rem 0; }

.container-rattan {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── About Intro (Home) ──────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image .img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-intro-image .img-accent {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2.5rem;
  right: -2.5rem;
  border: 6px solid var(--cream);
}

.about-intro-text .section-label { margin-bottom: 1rem; }
.about-intro-text .section-title { margin-bottom: 1.5rem; }
.about-intro-text p { margin-bottom: 1.2rem; }

.about-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge-rattan {
  background: var(--ivory);
  border: 1px solid var(--sand);
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bark);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.why-us {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89a6a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-us-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us-header .section-label { color: var(--rattan); }
.why-us-header .section-title { color: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(212,197,176,0.12);
}

.why-card {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(212,197,176,0.12);
  border-bottom: 1px solid rgba(212,197,176,0.12);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rattan);
  transition: width var(--transition);
}

.why-card:hover { background: rgba(184,154,106,0.06); }
.why-card:hover::before { width: 100%; }

.why-card:nth-child(3n) { border-right: none; }

.why-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--rattan);
}

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(212,197,176,0.65);
  line-height: 1.75;
}

/* ── Product Grid ────────────────────────────────────────── */
.product-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--sand);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--bark);
  color: var(--cream);
  border-color: var(--bark);
}

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

.product-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(74,55,40,0.12);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-body {
  padding: 1.4rem;
  border-top: 1px solid var(--ivory);
}

.product-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bark);
  margin-bottom: 0.3rem;
}

.product-meta {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
}

.product-meta span::before {
  content: attr(data-label) ': ';
  color: var(--sand);
}

/* ── Process Steps ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  padding: 3rem 2rem;
  border-right: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  position: relative;
  counter-increment: step;
  background: var(--white);
  transition: background var(--transition);
}

.process-step:hover { background: var(--ivory); }

.process-step::before {
  content: '0' counter(step);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.process-step:hover::before { color: var(--rattan); }

.process-step:nth-child(3n) { border-right: none; }
.process-step:nth-last-child(-n+3) { border-bottom: none; }

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Certifications ──────────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cert-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--ivory);
  transition: var(--transition);
}

.cert-card:hover {
  border-color: var(--rattan);
  box-shadow: 0 8px 30px rgba(184,154,106,0.1);
}

.cert-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rattan);
}

.cert-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.cert-card p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Export Map / Countries ──────────────────────────────── */
.export-countries {
  background: var(--bark);
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.country-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,197,176,0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.country-card:hover {
  background: rgba(184,154,106,0.12);
  border-color: rgba(184,154,106,0.35);
}

.country-flag {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.country-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.country-note {
  font-size: 0.7rem;
  color: rgba(212,197,176,0.55);
  letter-spacing: 0.1em;
}

/* ── Craftsmanship Section ───────────────────────────────── */
.craft-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.craft-image {
  position: relative;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.craft-text {
  background: var(--ivory);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--rattan-dk);
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--rattan);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--rattan-dk);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23f7f3ee' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-banner .container-rattan {
  position: relative;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-banner h2 em { font-style: italic; color: var(--sand); }

.cta-banner p {
  color: rgba(237,232,225,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rattan);
}

.contact-detail-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-detail-text strong {
  display: block;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 0.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-rattan .form-group {
  margin-bottom: 1.2rem;
}

.form-rattan label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-rattan input,
.form-rattan select,
.form-rattan textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-rattan input:focus,
.form-rattan select:focus,
.form-rattan textarea:focus {
  border-color: var(--rattan);
}

.form-rattan textarea { resize: vertical; min-height: 130px; }

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

.select-wrap { position: relative; }

.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--rattan);
  pointer-events: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.2rem;
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 500;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

.footer-cert-badges {
  display: flex;
  gap: 0.8rem;
}

.footer-cert-badges span {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background: var(--bark);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b89a6a' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container-rattan { position: relative; }

.page-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rattan);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.page-hero-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--rattan);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.1;
  max-width: 650px;
  margin-bottom: 1rem;
}

.page-hero h1 em { font-style: italic; color: var(--sand); }

.page-hero-desc {
  font-size: 1rem;
  color: rgba(212,197,176,0.65);
  max-width: 480px;
  line-height: 1.8;
}

/* ── About Page ──────────────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--sand);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 8px; height: 8px;
  background: var(--rattan);
  border-radius: 50%;
  transform: translateX(-50%);
  margin-left: 1px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rattan);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.timeline-item h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.85rem; color: var(--muted); }

.gallery-masonry {
  columns: 2;
  gap: 1rem;
}

.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
}

.gallery-masonry .gal-item img {
  width: 100%;
  transition: transform 0.6s ease;
}

.gallery-masonry .gal-item:hover img { transform: scale(1.04); }

/* ── Team / Craftsmen ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.team-card:hover img { filter: grayscale(0); }
.team-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card p { font-size: 0.8rem; color: var(--rattan); }

/* ── OEM / Custom Page ───────────────────────────────────── */
.oem-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.oem-feature {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid var(--rattan);
}

.oem-feature h4 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.oem-feature p { font-size: 0.85rem; color: var(--muted); }

/* ── Process Page ────────────────────────────────────────── */
.process-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 7rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid var(--ivory);
}

.process-detail:nth-child(even) { direction: rtl; }
.process-detail:nth-child(even) > * { direction: ltr; }
.process-detail:last-child { border-bottom: none; margin-bottom: 0; }

.process-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-detail h3 { font-size: 2rem; margin-bottom: 1rem; }
.process-detail p { font-size: 0.9rem; color: var(--muted); line-height: 1.85; }

.process-detail img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ── Export Experience Page ──────────────────────────────── */
.export-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--sand);
  margin-bottom: 5rem;
}

.export-stat-item {
  padding: 3rem 2rem;
  border-right: 1px solid var(--sand);
  text-align: center;
}

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

.export-stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.export-stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center .lead-text { margin: 0 auto; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.divider-rattan {
  width: 60px;
  height: 1px;
  background: var(--rattan);
  margin: 1.5rem 0;
}

.divider-rattan.center { margin: 1.5rem auto; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(2n) { border-right: none; }
  .why-card:nth-child(3n) { border-right: 1px solid rgba(212,197,176,0.12); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .craft-split { grid-template-columns: 1fr; }
  .craft-text { padding: 3rem 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .process-detail { grid-template-columns: 1fr; gap: 2rem; }
  .process-detail:nth-child(even) { direction: ltr; }
  .oem-features { grid-template-columns: 1fr; }
  .export-stats { grid-template-columns: repeat(2, 1fr); }
  .export-stat-item:nth-child(2n) { border-right: none; }
  .export-stat-item:nth-child(3),
  .export-stat-item:nth-child(4) { border-top: 1px solid var(--sand); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .countries-grid { grid-template-columns: 1fr 1fr; }
  .export-stats { grid-template-columns: 1fr 1fr; }
  .intro-divider { display: none; }
  .intro-strip-inner { justify-content: center; gap: 2rem; }
}