:root {
  --shell: #3d2b1f;
  --shell-light: #5c4033;
  --beige: #f5efe6;
  --sand: #e8ddd0;
  --sand-dark: #d4c5b2;
  --green: #4a6741;
  --green-light: #6b8f5e;
  --white: #fdfcfa;
  --charcoal: #1c1712;
  --charcoal-soft: #2e2620;
  --gold: #c9a96e;
  --gold-light: #e0c898;
  --text-muted: #7a6a5c;
  --radius: 2px;
}

/* ─── CUSTOM SCROLLBAR ─────────────────── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--sand);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 2px solid var(--sand);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--shell);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--sand);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HEADER ─────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 43, 31, 0.08);
  padding: 0 5%;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: box-shadow 0.3s;
  box-sizing: border-box;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--shell);
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  margin-top: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
nav a:hover {
  color: var(--shell);
}
nav a:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  background: var(--shell);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--shell-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--shell);
  border: 1px solid var(--shell);
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--shell);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--shell);
  border: none;
  padding: 12px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--shell);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(74, 103, 65, 0.18) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201, 169, 110, 0.12) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, 0.015) 60px, rgba(255, 255, 255, 0.015) 61px),
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255, 255, 255, 0.015) 60px, rgba(255, 255, 255, 0.015) 61px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(245, 239, 230, 0.72);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}

.hero-stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.hero-stat .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5);
  margin-top: 4px;
  display: block;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  opacity: 0.85;
}

.hero-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(74, 103, 65, 0.3) 0%, rgba(61, 43, 31, 0.6) 100%);
  border: 1px solid rgba(201, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.hero-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.coconut-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #6b4e3d 0%, #3d2b1f 60%, #1c1712 100%);
  border: 2px solid rgba(201, 169, 110, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 2px 8px rgba(201, 169, 110, 0.15);
  position: relative;
}

.coconut-icon::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 20%;
  width: 25%;
  height: 25%;
  background: rgba(201, 169, 110, 0.25);
  border-radius: 50%;
  filter: blur(6px);
}

/* ─── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: var(--sand);
  padding: 40px 5%;
  border-bottom: 1px solid var(--sand-dark);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-right: 1px solid var(--sand-dark);
  flex: 1;
  min-width: 180px;
}
.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}

.trust-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--shell);
  font-weight: 500;
  line-height: 1.3;
}
.trust-text span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ─── SECTION COMMONS ────────────────────── */
section {
  padding: 100px 5%;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-label span {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: var(--shell);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.products-explore .section-title em {
  font-style: normal;
}

.max-container {
  max-width: 1200px;
  margin: 0 auto;
}

.products-section {
  display: block !important;
}

.products-explore {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.products-explore .section-label {
  justify-content: center;
}

.products-explore-desc {
  margin-left: auto;
  margin-right: auto;
}

.products-explore-btn {
  display: inline-block;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.products-explore {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.products-explore-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 20px auto 36px;
  max-width: 520px;
  font-style: normal;
}
.products-explore-btn {
  font-size: 13px;
  padding: 14px 36px;
  letter-spacing: 0.16em;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s;
}

.product-card:hover {
  border-color: var(--sand-dark);
  box-shadow: 0 8px 40px rgba(61, 43, 31, 0.08);
}
.product-card:hover::before {
  height: 100%;
}

.product-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.product-icon-area {
  width: 56px;
  height: 56px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  color: var(--shell);
  line-height: 1.25;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shell);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    gap 0.25s,
    color 0.2s;
}
.product-link:hover {
  gap: 14px;
  color: var(--gold);
}
.product-link::after {
  content: '→';
}

/* ─── WHY COVANA ─────────────────────────── */
.why-section {
  background: var(--shell);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: 'COVANAA';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  white-space: nowrap;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left .section-title {
  color: var(--white);
}
.why-left .section-label span {
  color: var(--gold);
}
.why-left .section-label::before {
  background: var(--gold);
}

.why-subtitle {
  color: rgba(245, 239, 230, 0.6);
  margin-top: 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.why-list {
  list-style: none;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}
.why-item:first-child {
  border-top: 1px solid rgba(245, 239, 230, 0.08);
}

.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 2px;
}

.why-text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
}
.why-text span {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.55);
  line-height: 1.6;
}

/* ─── FEATURED PRODUCT ───────────────────── */
.featured-section {
  background: var(--beige);
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.featured-visual {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--shell) 0%, #2a1c12 100%);
  position: relative;
  overflow: hidden;
}

.featured-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(74, 103, 65, 0.3) 0%, transparent 60%);
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: var(--gold);
  color: var(--shell);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 600;
}

.featured-icon-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.charcoal-visual {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 35% 30%, #4a3828 0%, #1c1712 70%);
  border-radius: 12px;
  transform: rotate(15deg);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 4px rgba(255, 255, 255, 0.05);
}

.charcoal-visual2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at 40% 35%, #3a2e24 0%, #0e0b09 70%);
  border-radius: 10px;
  transform: rotate(-10deg) translate(40px, 30px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
}

.featured-content .section-title {
  margin-bottom: 8px;
}

.featured-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 24px;
}

.featured-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-bottom: 36px;
}

.spec-item {
  background: var(--white);
  padding: 18px 16px;
  text-align: center;
}
.spec-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--shell);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.spec-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.featured-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── QUALITY ─────────────────────────────── */
.quality-section {
  background: var(--white);
}

.quality-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.quality-header {
  text-align: center;
  margin-bottom: 70px;
}
.quality-header .section-label {
  justify-content: center;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-bottom: 60px;
}

.quality-card {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.25s;
}
.quality-card:hover {
  background: var(--beige);
}

.quality-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.quality-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--shell);
  margin-bottom: 10px;
  line-height: 1.3;
}

.quality-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.quality-cta {
  text-align: center;
}

/* ─── PACKAGING ───────────────────────────── */
.packaging-section {
  background: var(--sand);
  padding: 100px 5%;
}

.packaging-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.packaging-list {
  list-style: none;
}
.packaging-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.pack-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--shell);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pack-info strong {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--shell);
  letter-spacing: 0.03em;
}
.pack-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.incoterms-box {
  background: var(--shell);
  padding: 36px;
  color: var(--white);
}

.incoterms-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.incoterms-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.incoterm-tag {
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.incoterms-note {
  font-size: 12.5px;
  color: rgba(245, 239, 230, 0.55);
  line-height: 1.7;
}

/* ─── PROCESS ─────────────────────────────── */
.process-section {
  background: var(--beige);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--sand-dark) 100%);
}

.process-step {
  flex: 1;
  text-align: center;
  padding-top: 60px;
  position: relative;
}

.step-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
}

.step-dot.active {
  background: var(--gold);
  width: 20px;
  height: 20px;
  top: 18px;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.2);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}

.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--shell);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0 16px;
}

/* ─── ABOUT ───────────────────────────────── */
.about-section {
  background: var(--white);
  padding: 100px 5%;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-body {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-vision {
  background: var(--beige);
  border-left: 3px solid var(--gold);
  padding: 22px 26px;
  margin-bottom: 36px;
}

.about-vision p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--shell);
  line-height: 1.5;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.about-img-block {
  aspect-ratio: 1;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  position: relative;
  overflow: hidden;
}

.about-img-block:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
  background: var(--shell);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 4px;
}

.about-img-block:first-child::after {
  content: 'From Paradise Soil';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.15);
  letter-spacing: 0.05em;
  text-transform: none;
  white-space: nowrap;
}

/* ─── RFQ FORM ────────────────────────────── */
.rfq-section {
  background: var(--charcoal);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.rfq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--green-light) 50%, var(--gold) 100%);
}

.rfq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rfq-left .section-title {
  color: var(--white);
  margin-bottom: 20px;
}
.rfq-left .section-label::before {
  background: var(--gold);
}
.rfq-left .section-label span {
  color: var(--gold);
}

.rfq-desc {
  color: rgba(245, 239, 230, 0.55);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  list-style: none;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: rgba(245, 239, 230, 0.7);
  font-size: 13.5px;
}
.contact-item span:first-child {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s;
  margin-top: 24px;
}
.wa-btn:hover {
  background: #1ebe5d;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.4);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.form-group select option {
  background: var(--charcoal-soft);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--shell);
  border: none;
  padding: 15px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--gold-light);
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--charcoal-soft);
  padding: 60px 5% 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.footer-brand .logo-name {
  color: var(--beige);
}
.footer-brand .logo-sub {
  color: var(--gold);
}

.footer-tagline {
  color: rgba(245, 239, 230, 0.35);
  font-size: 12.5px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-links span {
  color: rgba(245, 239, 230, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(245, 239, 230, 0.25);
}

.footer-compliance {
  font-size: 11px;
  color: rgba(245, 239, 230, 0.25);
  text-align: right;
  max-width: 440px;
  line-height: 1.6;
}

/* ─── ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}
.fade-up:nth-child(4) {
  transition-delay: 0.3s;
}
.fade-up:nth-child(5) {
  transition-delay: 0.4s;
}
.fade-up:nth-child(6) {
  transition-delay: 0.5s;
}

/* ─── SCROLL INDICATOR ───────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.4);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(245, 239, 230, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ─── HAMBURGER ───────────────────────────── */
.nav-toggle {
  display: none;
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .rfq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .trust-item {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  nav {
    display: none;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--shell);
    display: block;
  }

  /* ── HERO ── */
  section {
    padding: 60px 20px;
  }
  .hero {
    padding: 96px 20px 60px;
    min-height: 100svh;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 48px);
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    padding-top: 32px;
  }
  .hero-stat .num {
    font-size: 28px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .hero-ctas a {
    text-align: center;
    width: 100%;
  }

  /* ── TRUST BAR ── */
  .trust-inner {
    flex-direction: column;
    gap: 0;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--sand-dark);
    width: 100%;
    padding: 14px 20px;
    min-width: unset;
  }
  .trust-item:last-child {
    border-bottom: none;
  }

  /* ── PRODUCTS ── */
  .products-header {
    flex-direction: column;
    margin-bottom: 36px;
  }
  .products-header p {
    max-width: 100% !important;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .product-card {
    padding: 28px 20px;
  }

  /* ── WHY ── */
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-section::before {
    display: none;
  }

  /* ── FEATURED ── */
  .featured-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .featured-visual {
    aspect-ratio: 4/3;
  }
  .specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ── QUALITY ── */
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .quality-header {
    margin-bottom: 40px;
  }

  /* ── PACKAGING ── */
  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ── PROCESS ── */
  .process-timeline {
    flex-direction: column;
    gap: 0;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    padding-top: 0;
    padding-left: 44px;
    padding-bottom: 24px;
    text-align: left;
    position: relative;
  }
  .process-step::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 28px;
    bottom: 0;
    width: 1px;
    background: rgba(201, 169, 110, 0.2);
  }
  .process-step:last-child::after {
    display: none;
  }
  .step-dot {
    top: 2px;
    left: 0;
    transform: none;
  }
  .step-desc {
    padding: 0;
  }

  /* ── ABOUT ── */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual {
    display: none;
  }

  /* ── RFQ FORM ── */
  .rfq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

/* ── TAMBAHAN: layar sangat kecil (<400px) ── */
@media (max-width: 400px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
}
.product-card {
  /* ... existing styles ... */
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ── MOBILE CATEGORY SECTION ─────────────────── */
.mobile-cat-section {
  display: none !important;
  background: var(--beige);
  padding: 72px 20px;
}

@media (max-width: 768px) {
  .mobile-cat-section {
    display: none !important;
  }
  #featured-desktop {
    display: none !important;
  }
}
.mobile-cat-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 36px 0 28px;
}
.mobile-cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.mobile-cat-card:active {
  background: var(--sand);
  border-color: var(--gold);
}
.mobile-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.mobile-cat-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.mobile-cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--shell);
}
.mobile-cat-arrow {
  color: var(--gold);
  font-size: 16px;
  transition: transform 0.2s;
}
.mobile-cat-card:active .mobile-cat-arrow {
  transform: translateX(4px);
}
.mobile-cat-cta {
  display: block;
  text-align: center;
  background: var(--shell);
  color: var(--white);
  padding: 14px 24px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
}
.mobile-cat-cta:active {
  background: var(--shell-light);
}

@media (max-width: 768px) {
  #featured-desktop {
    display: none;
  }
  .mobile-cat-section {
    display: none !important;
  }
}
