﻿/* ===== Aurevia Exports - MAIN STYLESHEET ===== */
/* Google Fonts are linked directly in each page's <head> (not @import here) —
   @import inside a stylesheet is a separate blocking network request that
   delays when THIS file's own rules (including the --primary/--secondary
   variables below) take effect, causing a visible flash of pre-override
   colors on every page load until the font finishes loading. */

/* CSS Variables */
:root {
  --primary: #1a3829;
  --secondary: #c9a84c;
  --accent: #e8d5a3;
  --light: #f5f0e6;
  --white: #ffffff;
  --dark: #0e1f16;
  --gray: #6b7280;
  --light-gray: #eee8da;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,56,41,0.10);
  --shadow-lg: 0 8px 40px rgba(26,56,41,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-logo: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x:hidden must be on BOTH html and body — mobile browsers use
   html as the root scroller, so body alone doesn't stop a wide element
   from forcing the whole page to render zoomed-out to fit it. */
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--primary); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* Typography */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { font-size: 1rem; color: var(--gray); }

/* Section Helpers */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--secondary); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); color: var(--primary); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: var(--transition); letter-spacing: 0.03em; }
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #b8922e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--accent); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ===== HEADER / NAVBAR ===== */
.topbar { background: var(--primary); color: rgba(255,255,255,0.85); font-size: 0.8rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; }
.topbar-left span, .topbar-right span { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a:hover { color: var(--secondary); }

.navbar { background: var(--white); padding: 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(26,56,41,0.07); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: grid; grid-template-columns: 40px 1fr; grid-template-rows: auto auto; align-items: center; column-gap: 10px; text-decoration: none; }
.nav-logo::before { content: ''; grid-row: 1 / 3; grid-column: 1; width: 40px; height: 40px; background: url("data:image/svg+xml,<svg viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'><circle cx='22' cy='22' r='20' stroke='%23c9a84c' stroke-width='1.5'/><path d='M14 30L22 13L30 30' stroke='%23c9a84c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/><line x1='17' y1='24.5' x2='27' y2='24.5' stroke='%23c9a84c' stroke-width='1.6' stroke-linecap='round'/><path d='M22 13C21 10 18 9 18 11C18 13 20.5 13.5 22 13Z' fill='%23c9a84c'/><path d='M22 13C23 10 26 9 26 11C26 13 23.5 13.5 22 13Z' fill='%23c9a84c'/></svg>") center/contain no-repeat; flex-shrink: 0; }
.nav-logo .logo-main { grid-column: 2; grid-row: 1; font-family: var(--font-logo); font-size: 1.55rem; font-weight: 600; color: var(--secondary); letter-spacing: 0.1em; line-height: 1.1; }
.nav-logo .logo-sub { grid-column: 2; grid-row: 2; font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary); font-weight: 400; line-height: 1; opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 16px; font-weight: 500; font-size: 0.9rem; border-radius: var(--radius); transition: var(--transition); color: var(--primary); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 20px; height: 2px; background: var(--secondary); border-radius: 2px; }
.nav-close-item { display: none; }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* SITE SEARCH — icon + expandable overlay bar (injected by js/main.js) */
.nav-search-btn {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; padding: 0;
  border: 2px solid var(--border); background: var(--light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.nav-search-btn:hover { border-color: var(--secondary); background: rgba(201,168,76,0.08); color: var(--secondary); }
.nav-search-bar {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 998;
  background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.nav-search-bar.open { max-height: 100px; }
.nav-search-inner { display: flex; gap: 10px; align-items: center; padding: 16px 24px; }
.nav-search-inner input {
  flex: 1; padding: 10px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 0.9rem; font-family: var(--font-body); outline: none; transition: var(--transition);
}
.nav-search-inner input:focus { border-color: var(--secondary); }
.nav-search-go {
  padding: 10px 20px; background: var(--secondary); color: var(--white); border: none;
  border-radius: var(--radius); font-weight: 600; font-size: 0.85rem; cursor: pointer; flex-shrink: 0;
}
.nav-search-go:hover { background: #b8922e; }
.nav-search-close { background: none; border: none; font-size: 1.1rem; color: var(--gray); cursor: pointer; padding: 8px; flex-shrink: 0; }
@media (max-width: 480px) { .nav-search-inner { padding: 14px 16px; } .nav-search-inner input { font-size: 0.85rem; } }

.search-results-banner {
  grid-column: 1 / -1; padding: 14px 20px; background: var(--light); border-radius: var(--radius-lg);
  margin-bottom: 20px; font-size: 0.9rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.search-results-banner a { color: var(--secondary); font-weight: 600; }
.nav-cta { background: var(--secondary); color: var(--white); padding: 10px 22px; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; transition: var(--transition); }
.nav-cta:hover { background: #b8922e; }
/* position + z-index above .nav-links (999) so the button stays clickable
   on top of the open mobile menu — otherwise the dropdown panel can paint
   over it and swallow taps meant for the close (X) icon. */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; position: relative; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #2d5c40 60%, #1a3829 100%); color: var(--white); padding: 100px 0 80px; min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; 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='%23c9a84c' 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"); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--accent); padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--secondary); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); }
.stat-item { text-align: left; }
.stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--secondary); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 380px; height: 440px; }
.hero-card { position: absolute; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); backdrop-filter: blur(10px); padding: 28px; }
.hero-card-main { width: 320px; top: 0; left: 30px; }
.hero-card-float { width: 200px; bottom: 20px; right: 0; background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.25); }
.hcard-icon { width: 48px; height: 48px; background: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.hcard-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.hcard-text { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 0; }
.hcard-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.hcard-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.hcard-list li::before { content: '✓'; width: 18px; height: 18px; background: rgba(201,168,76,0.2); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.float-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--secondary); }
.float-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--light); padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 40px; height: 40px; background: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--primary); }
.trust-text span { font-size: 0.78rem; color: var(--gray); }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual { position: relative; }
.about-img-main { width: 100%; border-radius: var(--radius-lg); background: linear-gradient(135deg, #e8d5a3, #c9a84c); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about-img-main svg { opacity: 0.3; }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 20px 24px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg); }
.about-img-badge .badge-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--secondary); display: block; }
.about-img-badge .badge-text { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.about-content { padding: 20px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.about-feature { padding: 20px; background: var(--light); border-radius: var(--radius); border: 1px solid var(--border); }
.about-feature-icon { font-size: 1.5rem; margin-bottom: 10px; }
.about-feature h4 { color: var(--primary); margin-bottom: 6px; font-size: 0.95rem; }
.about-feature p { font-size: 0.82rem; margin: 0; }

/* ===== PRODUCTS ===== */
.products { background: var(--light); }
.products-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 22px; border-radius: 100px; font-size: 0.875rem; font-weight: 500; background: var(--white); color: var(--gray); border: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.product-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); min-width: 0;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img .product-emoji { font-size: 3rem; }
.product-badge { position: absolute; top: 10px; left: 10px; background: rgba(201,168,76,0.92); backdrop-filter: blur(4px); color: var(--white); font-size: 0.62rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.product-badge.new { background: rgba(22,163,74,0.92); }
.product-badge.hot { background: rgba(220,38,38,0.92); }
.product-info { padding: 14px 16px; }
.product-category { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--secondary); font-weight: 600; margin-bottom: 4px; }
.product-name { font-family: var(--font-heading); font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; line-height: 1.3; }
.product-desc {
  font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-origin { font-size: 0.72rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.product-action { background: var(--primary); color: var(--white); padding: 7px 15px; border-radius: var(--radius); font-size: 0.76rem; font-weight: 600; transition: var(--transition); }
.product-action:hover { background: var(--secondary); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { padding: 36px 28px; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--secondary), var(--accent)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), #2d5c40); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.service-title { font-family: var(--font-heading); color: var(--primary); margin-bottom: 12px; font-size: 1.2rem; }
.service-desc { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--secondary); transition: var(--transition); }
.service-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.why-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); }
.why-card:hover { border-color: var(--secondary); box-shadow: 0 6px 24px rgba(201,168,76,0.15); transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h4 { color: var(--primary); font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; margin: 0; }
.why-us { background: var(--primary); color: var(--white); }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.65); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.why-item h4 { color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin: 0; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-stat-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.why-stat-card .stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--secondary); display: block; margin-bottom: 6px; }
.why-stat-card .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.why-stat-card.highlight { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.25); grid-column: span 2; }

/* ===== MARKETS ===== */
.markets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; margin-top: 40px; }
.market-card { padding: 20px 16px; text-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.market-card:hover { border-color: var(--secondary); box-shadow: 0 4px 16px rgba(201,168,76,0.15); transform: translateY(-3px); }
.market-flag { font-size: 2.2rem; margin-bottom: 8px; }
.market-name { font-weight: 600; font-size: 0.88rem; color: var(--primary); margin-bottom: 2px; }
.market-region { font-size: 0.75rem; color: var(--gray); }

/* ===== PROCESS ===== */
.process { background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; margin-top: 48px; }
.process-steps::before { display: none; }
.process-step { display: flex; gap: 20px; align-items: flex-start; background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition); }
.process-step:hover { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(201,168,76,0.12); }
.step-number { font-family: var(--font-heading); font-size: 2rem; color: var(--secondary); line-height: 1; flex-shrink: 0; opacity: 0.6; }
.step-content h4 { color: var(--primary); font-size: 0.95rem; margin-bottom: 6px; }
.step-content p { font-size: 0.82rem; color: var(--gray); margin: 0; line-height: 1.65; }
.step-num { width: 72px; height: 72px; background: var(--white); border: 3px solid var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--secondary); margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(201,168,76,0.2); }
.step-icon { font-size: 1.4rem; }
.step-title { font-weight: 600; font-size: 0.9rem; color: var(--primary); margin-bottom: 8px; }
.step-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white); transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.t-stars { color: var(--secondary); font-size: 1rem; margin-bottom: 16px; }
.t-quote { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), #2d5c40); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.t-role { font-size: 0.78rem; color: var(--gray); }
.t-country { font-size: 0.72rem; color: var(--secondary); font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--secondary) 0%, #b8922e 100%); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 50px; height: 50px; background: var(--light); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { color: var(--primary); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; margin: 0; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--primary); background: var(--white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-main { font-family: var(--font-logo); font-size: 1.5rem; color: var(--secondary); letter-spacing: 0.1em; font-weight: 600; }
.footer-brand .logo-sub { font-size: 0.55rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--secondary); font-weight: 400; opacity: 0.8; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
.social-link:hover { background: var(--secondary); border-color: var(--secondary); }
.footer-col h5 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-newsletter input { width: 100%; padding: 11px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius) var(--radius) 0 0; color: var(--white); font-size: 0.875rem; font-family: var(--font-body); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter input:focus { outline: none; border-color: var(--secondary); }
.footer-newsletter button { width: 100%; padding: 11px; background: var(--secondary); color: var(--white); font-weight: 600; font-size: 0.875rem; border-radius: 0 0 var(--radius) var(--radius); transition: var(--transition); }
.footer-newsletter button:hover { background: #b8922e; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p, .footer-bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-links { display: flex; gap: 20px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #2d5c40 100%); color: var(--white); padding: 80px 0 64px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a, .breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ===== ABOUT PAGE EXTRAS ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 32px 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { font-size: 0.88rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #2d5c40); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 2.5rem; color: var(--white); font-family: var(--font-heading); font-weight: 700; border: 4px solid var(--accent); }
.team-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--secondary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 0.82rem; }

.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cert-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: var(--transition); }
.cert-card:hover { border-color: var(--secondary); box-shadow: 0 4px 16px rgba(201,168,76,0.15); }
.cert-icon { font-size: 2rem; margin-bottom: 10px; }
.cert-card h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 4px; }
.cert-card p { font-size: 0.78rem; margin: 0; }

/* ===== PRODUCTS PAGE EXTRAS ===== */
.products-hero-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.category-sidebar { display: flex; flex-direction: column; gap: 8px; }
.cat-btn { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); text-align: left; transition: var(--transition); cursor: pointer; }
.cat-btn:hover, .cat-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.cat-btn:hover .cat-icon, .cat-btn.active .cat-icon { background: rgba(255,255,255,0.15); }
.cat-icon { width: 36px; height: 36px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.cat-name { font-weight: 600; font-size: 0.875rem; }
.cat-count { margin-left: auto; font-size: 0.75rem; background: var(--light-gray); color: var(--gray); padding: 2px 8px; border-radius: 100px; }
.cat-btn.active .cat-count { background: rgba(255,255,255,0.2); color: var(--white); }

/* ===== CONTACT PAGE ===== */
.map-placeholder { background: linear-gradient(135deg, var(--light), var(--accent)); border-radius: var(--radius-lg); height: 320px; display: flex; align-items: center; justify-content: center; font-size: 4rem; margin-bottom: 28px; border: 1px solid var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card-stack { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .topbar { display: none; }
  /* position:absolute anchored to .navbar (not position:fixed anchored to
     the viewport) — this is deliberate. A fixed-position child breaks if
     ANY ancestor gets a transform/filter/backdrop-filter (creates a new
     containing block, so "fixed" stops meaning "relative to viewport").
     .navbar is already position:sticky, so absolute positioning here is
     naturally contained by it and top:100% always lands exactly below the
     navbar — immune to that whole bug class, and no hardcoded height guess. */
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; border-radius: var(--radius); width: 100%; }
  .nav-close-item { display: block; text-align: right; padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--border); }
  .nav-close-btn { background: none; border: none; font-size: 0.85rem; font-weight: 700; color: var(--primary); cursor: pointer; padding: 10px 14px; font-family: var(--font-body); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .markets-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .why-stat-card.highlight { grid-column: span 2; }
  .artisan-grid { grid-template-columns: 1fr 1fr; }
  .profile-stats-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .products-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .artisan-grid { grid-template-columns: 1fr; }
  .products-stats-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: flex-start; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== MISC ===== */
.divider { width: 60px; height: 3px; background: var(--secondary); border-radius: 2px; margin: 16px 0; }
.divider.center { margin: 16px auto; }
.highlight-text { color: var(--secondary); }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
