/* ==========================================================
   OMKARA OVERSEAS — Heritage Artisan
   Production CSS · Polished, complete, mobile-perfect
   ========================================================== */

:root {
  --bg: #fdf8f0;
  --bg-warm: #f7ead4;
  --bg-cream: #faf3e3;
  --paper: #ffffff;
  --terracotta: #c4623f;
  --terracotta-dark: #a64f30;
  --indigo: #1f3a5f;
  --indigo-soft: #2d4d7a;
  --ink: #2a1f17;
  --ink-soft: #5a4538;
  --ink-muted: #8a7560;
  --border: #e6d5b8;
  --border-soft: #f0e2c5;
  --gold: #c89b4a;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --shadow-sm: 0 2px 8px rgba(42, 31, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(42, 31, 23, 0.08);
  --shadow-lg: 0 20px 50px rgba(42, 31, 23, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================== */
.topbar {
  background: var(--indigo);
  color: #f0e2c5;
  padding: 10px 0;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--gold); font-size: 0.85rem; }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: color 0.3s, transform 0.3s;
}
.topbar-right a:hover { color: var(--gold); transform: translateY(-2px); }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
  background: var(--bg);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img {
  height: 56px;
  width: auto;
  transition: height 0.3s;
}
.navbar.scrolled .logo-wrap img { height: 48px; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.4s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--terracotta);
  color: var(--bg);
  padding: 11px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 0 var(--terracotta-dark);
}
.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 98, 63, 0.3);
}

.nav-cta-mobile { display: none; }
.nav-links li:last-child { display: none; }

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--ink);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.3s;
}
.menu-toggle:hover { background: var(--bg-warm); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--bg-warm);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  cursor: pointer;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--bg);
  border-color: var(--terracotta);
  box-shadow: 0 2px 0 var(--terracotta-dark);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 98, 63, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-secondary:hover {
  background: var(--indigo);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--terracotta);
  border-radius: 12px;
  z-index: 0;
}
.hero-img-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--terracotta) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.15) 0%, transparent 35%),
    radial-gradient(circle at 75% 80%, rgba(31, 58, 95, 0.15) 0%, transparent 40%);
}
.hero-img-content {
  text-align: center;
  z-index: 2;
  padding: 40px;
  position: relative;
}
.hero-img-content i {
  font-size: 4rem;
  color: var(--paper);
  margin-bottom: 16px;
  display: block;
  opacity: 0.9;
}
.hero-img-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 8px;
  font-weight: 500;
}
.hero-img-content p {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: var(--paper);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  border: 1px solid var(--border);
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-stat strong {
  font-family: 'Cormorant Garamond', serif;
  display: block;
  font-size: 2.4rem;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

/* ==========================================================
   SECTIONS
   ========================================================== */
section { padding: 100px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ==========================================================
   COLLECTION GRID (Home page)
   ========================================================== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.collection-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 40px 32px;
  text-align: left;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.collection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}
.collection-card:hover::before { transform: scaleX(1); }
.collection-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s;
}
.collection-card:hover .collection-icon {
  background: var(--terracotta);
  transform: rotate(-5deg);
}
.collection-icon i {
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: color 0.4s;
}
.collection-card:hover .collection-icon i { color: var(--paper); }
.collection-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}
.collection-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================
   STORY / WHY US
   ========================================================== */
.story {
  background: var(--bg-warm);
  position: relative;
}
.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.story-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.story-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  opacity: 0.15;
  border-radius: 12px;
}
.story-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--terracotta) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.story-img i {
  font-size: 5rem;
  color: var(--paper);
  opacity: 0.9;
}
.story-img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper);
  z-index: 2;
  text-align: center;
}
.story-features {
  margin-top: 36px;
}
.story-features li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.story-features li:last-child { border-bottom: none; }
.story-features .feat-icon {
  width: 48px;
  height: 48px;
  background: var(--paper);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
  font-size: 1.15rem;
  border: 1px solid var(--border);
}
.story-features .feat-body strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.story-features .feat-body span {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ==========================================================
   PROCESS SECTION (About page)
   ========================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 36px 26px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}
.process-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.process-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ==========================================================
   EXPORT BANNER (countries)
   ========================================================== */
.export-banner {
  background: var(--indigo);
  color: var(--paper);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.export-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(196, 98, 63, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(200, 155, 74, 0.15) 0%, transparent 40%);
}
.export-banner > .container { position: relative; z-index: 1; }
.export-banner h4 {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
}
.country-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.country-list li {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}
.country-list li:hover {
  background: var(--gold);
  color: var(--indigo);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================================
   TESTIMONIALS / TRUST
   ========================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.trust-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-card i {
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-bottom: 14px;
  display: block;
}
.trust-card strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}
.trust-card span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ==========================================================
   CTA SECTION
   ========================================================== */
.cta-section {
  padding: 110px 0;
  text-align: center;
  background: var(--bg);
}
.cta-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--paper);
  padding: 70px 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
}
.cta-content::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--terracotta);
  line-height: 1;
  font-style: italic;
  opacity: 0.15;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-section h2 em { font-style: italic; color: var(--terracotta); }
.cta-section p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ==========================================================
   FOOTER
   ========================================================== */
footer {
  background: var(--ink);
  padding: 80px 0 28px;
  color: #c9b89c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer-brand p {
  color: #a39376;
  font-size: 0.95rem;
  max-width: 340px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer-social-row {
  display: flex;
  gap: 12px;
}
.footer-social-row a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.3s;
}
.footer-social-row a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 500;
  font-style: italic;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: #a39376;
  font-size: 0.94rem;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col a i {
  color: var(--terracotta);
  width: 16px;
  font-size: 0.85rem;
}
.footer-bottom {
  border-top: 1px solid #4a3a2c;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: #7a6c52;
  font-size: 0.86rem;
  align-items: center;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #7a6c52; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ==========================================================
   PAGE HEADER (inner pages)
   ========================================================== */
.page-header {
  padding: 80px 0 70px;
  text-align: center;
  background: var(--bg-warm);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--terracotta);
  border-radius: 50%;
  opacity: 0.08;
}
.page-header > .container { position: relative; z-index: 1; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb i { font-size: 0.7rem; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.page-header h1 em { font-style: italic; color: var(--terracotta); }
.page-header p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================
   ABOUT PAGE — STORY INTRO
   ========================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-intro-grid .visual-block {
  position: relative;
  aspect-ratio: 4/5;
}
.about-intro-grid .visual-block::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--terracotta);
  border-radius: 12px;
}
.about-intro-grid .visual-block-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--indigo) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-intro-grid .visual-block-inner i { font-size: 5rem; color: var(--paper); opacity: 0.9; }
.about-intro-grid h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.15;
}
.about-intro-grid h2 em { font-style: italic; color: var(--terracotta); }
.about-intro-grid p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-intro-grid p:last-of-type { margin-bottom: 0; }

/* Mission/Values columns */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 30px;
}
.mv-card {
  background: var(--paper);
  padding: 40px 36px;
  border-radius: 14px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--terracotta);
}
.mv-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
  font-style: italic;
}
.mv-card h3 i {
  color: var(--terracotta);
  margin-right: 12px;
  font-size: 1.4rem;
  font-style: normal;
}
.mv-card p { color: var(--ink-soft); line-height: 1.75; }

/* ==========================================================
   PRODUCTS PAGE
   ========================================================== */
.products-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--terracotta);
}
.product-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--terracotta) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card:nth-child(3n+2) .product-image {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--indigo) 100%);
}
.product-card:nth-child(3n+3) .product-image {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--indigo) 100%);
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%);
}
.product-image i {
  font-size: 3.6rem;
  color: var(--paper);
  opacity: 0.85;
  z-index: 2;
}
.product-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 50px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}
.product-info { padding: 28px 26px; }
.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 500;
}
.product-info p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.product-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-meta i { color: var(--terracotta); }

.product-inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  background: var(--bg-warm);
  color: var(--terracotta);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.product-inquiry-btn:hover {
  background: var(--terracotta);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 44px 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 110px;
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
}
.contact-info-card h3 em { font-style: italic; color: var(--terracotta); }
.contact-info-card > p {
  color: var(--ink-soft);
  margin-bottom: 30px;
  line-height: 1.7;
}
.contact-detail-list { margin-bottom: 28px; }
.contact-detail-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
}
.contact-detail-list li:last-child { border-bottom: none; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.contact-detail-list li:hover .contact-icon {
  background: var(--terracotta);
  color: var(--paper);
  transform: rotate(-5deg);
}
.contact-detail-content strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-detail-content a,
.contact-detail-content span {
  color: var(--ink);
  font-size: 0.98rem;
  transition: color 0.3s;
  font-weight: 500;
  word-break: break-word;
}
.contact-detail-content a:hover { color: var(--terracotta); }

.social-row {
  display: flex;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.social-row a {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: all 0.3s;
  font-size: 1.05rem;
}
.social-row a:hover {
  background: var(--terracotta);
  color: var(--paper);
  transform: translateY(-3px);
}

/* Inquiry Form */
.inquiry-form-card {
  background: var(--paper);
  border-radius: 14px;
  padding: 44px 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.inquiry-form-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 500;
}
.inquiry-form-card h3 em { font-style: italic; color: var(--terracotta); }
.inquiry-form-card > p {
  color: var(--ink-soft);
  margin-bottom: 30px;
  line-height: 1.7;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.form-group label .req { color: var(--terracotta); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-cream);
  border: 1.5px solid var(--border);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.96rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(196, 98, 63, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a4538' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: var(--paper);
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 0 var(--terracotta-dark);
}
.form-submit:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 98, 63, 0.35);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success {
  background: #e8f5e9;
  border: 1.5px solid #66bb6a;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 16px;
  display: none;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; flex-shrink: 0; }

.form-helper {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}
.form-helper a { color: var(--terracotta); font-weight: 600; }

/* Map */
.map-section {
  margin-top: 70px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--terracotta); }
.faq-question {
  width: 100%;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s;
  gap: 16px;
}
.faq-question:hover { color: var(--terracotta); }
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--bg-warm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.active .faq-icon {
  background: var(--terracotta);
  color: var(--paper);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--ink-soft);
  line-height: 1.75;
  padding: 0 26px;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 26px 22px;
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON & POPUP
   ========================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
}
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.08);
  background: var(--whatsapp-dark);
}
.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: var(--whatsapp);
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  animation: waBadgeBounce 1s ease-in-out infinite alternate;
}
@keyframes waBadgeBounce {
  to { transform: translateY(-3px); }
}

/* Popup */
.wa-popup {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 340px;
  max-width: calc(100vw - 48px);
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 96;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}
.wa-popup.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.wa-popup-header {
  background: var(--whatsapp-dark);
  color: white;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.wa-popup-avatar {
  width: 46px;
  height: 46px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.wa-popup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wa-popup-meta strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.wa-popup-meta span {
  font-size: 0.78rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wa-popup-meta span::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}
.wa-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.3s;
}
.wa-popup-close:hover { background: rgba(255, 255, 255, 0.25); }

.wa-popup-body {
  padding: 22px 20px 20px;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(0,0,0,0.015) 20px, rgba(0,0,0,0.015) 40px),
    var(--bg-cream);
}
.wa-popup-msg {
  background: var(--paper);
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  position: relative;
  max-width: 90%;
}
.wa-popup-msg-time {
  font-size: 0.7rem;
  color: var(--ink-muted);
  margin-top: 4px;
  text-align: right;
}
.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--whatsapp);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 4px;
  transition: all 0.3s;
}
.wa-popup-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .story-grid,
  .about-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-info-card { position: static; }
  .collection-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-badge { left: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Hide desktop nav, show hamburger */
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 90px 32px 32px;
    gap: 8px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    background: var(--terracotta);
    color: var(--bg);
    text-align: center;
    border-radius: 8px;
    padding: 14px 20px;
    border-bottom: none;
    font-weight: 600;
  }

  /* Body scroll lock when menu open */
  body.menu-open { overflow: hidden; }

  /* Show the inquiry CTA in mobile menu */
  .nav-links li:last-child { display: block; }

  /* Backdrop */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 98;
  }
  .menu-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }

  .topbar { font-size: 0.76rem; padding: 8px 0; }
  .topbar-inner { justify-content: center; gap: 12px; }
  .topbar-left { gap: 12px; justify-content: center; flex-wrap: wrap; }
  .topbar-left span:nth-child(2),
  .topbar-left span:nth-child(3) { display: none; }
  .topbar-right { justify-content: center; }

  section { padding: 70px 0; }
  .hero { padding: 50px 0 80px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-stats { gap: 24px; margin-top: 36px; padding-top: 30px; }
  .hero-stat strong { font-size: 1.9rem; }
  .hero-badge { left: 0; bottom: 20px; padding: 14px 18px; }
  .hero-badge-icon { width: 38px; height: 38px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .section-head { margin-bottom: 50px; }
  .collection-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .process-card, .trust-card { padding: 24px 18px; }
  .process-num { font-size: 2.4rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .country-list { gap: 10px; }
  .country-list li { padding: 10px 18px; font-size: 1rem; }

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

  .contact-info-card,
  .inquiry-form-card { padding: 32px 26px; }

  .cta-content { padding: 50px 28px; }
  .cta-content::before { font-size: 6rem; left: 18px; top: -5px; }

  .map-section { margin-top: 50px; }
  .map-section iframe { height: 320px; }

  /* WhatsApp float adjustments */
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float-btn { width: 56px; height: 56px; font-size: 1.55rem; }
  .wa-popup { bottom: 90px; right: 18px; left: 18px; width: auto; max-width: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .topbar { font-size: 0.72rem; }
  .topbar-left { gap: 10px; }
  .topbar-right { gap: 10px; }
  .logo-wrap img { height: 46px; }
  .navbar.scrolled .logo-wrap img { height: 42px; }
  .hero h1 { font-size: 2rem; }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; }
  .hero-lede { font-size: 1rem; }
  .hero-stats { justify-content: space-between; }
  .hero-stat strong { font-size: 1.6rem; }
  .hero-stat span { font-size: 0.7rem; }
  .section-title { font-size: 2rem; }
  .process-grid, .trust-grid { grid-template-columns: 1fr; }
  .country-list li { font-size: 0.95rem; padding: 9px 16px; }
  .contact-info-card, .inquiry-form-card { padding: 28px 22px; }
  .cta-content { padding: 40px 22px; }
  .footer-brand img { height: 52px; }
}

/* ==========================================================
   PRINT STYLES
   ========================================================== */
@media print {
  .topbar, .navbar, .wa-float, .wa-popup, footer { display: none; }
}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */
:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
