@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #0a0706;
  --bg-secondary: #151010;
  --bg-card: #1a1412;
  --bg-glass: rgba(26,20,18,0.85);
  --accent: #c8944a;
  --accent-light: #e0b878;
  --accent-dark: #8b6230;
  --text-primary: #f5efe8;
  --text-secondary: #b8a898;
  --text-muted: #7a6e64;
  --border: rgba(200,148,74,0.15);
  --border-hover: rgba(200,148,74,0.4);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(200,148,74,0.15), 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.25s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Subtle noise grain overlay */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.4;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,7,6,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(10,7,6,0.95); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); text-decoration: none; letter-spacing: 2px; }
.logo span { color: var(--text-primary); font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(10,7,6,0.7), rgba(10,7,6,0.4)), url('img/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,148,74,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 80%, rgba(139,98,48,0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 24px; }
.hero-badge {
  display: inline-block; padding: 8px 24px; border: 1px solid var(--border-hover);
  border-radius: 50px; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
  animation: fadeInDown 1s ease;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; margin-bottom: 20px; animation: fadeInUp 1s ease 0.2s both; }
.hero h1 .highlight { color: var(--accent); display: block; }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; animation: fadeInUp 1s ease 0.4s both; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1s ease 0.6s both; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase; transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--bg-primary); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: 0.6s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: linear-gradient(135deg, var(--accent-light), var(--accent)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,148,74,0.35); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg-primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,148,74,0.2); }

.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-indicator span { display: block; width: 24px; height: 40px; border: 2px solid var(--text-muted); border-radius: 12px; position: relative; }
.scroll-indicator span::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollDot 2s infinite; }

/* SECTION DIVIDER */
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0.3; }

/* SECTIONS */
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label { display: inline-block; color: var(--accent); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; background: linear-gradient(135deg, var(--text-primary), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ABOUT */
.about { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-image:hover img { transform: scale(1.05); }
.about-image::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border); border-radius: var(--radius); pointer-events: none; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 20px; background: linear-gradient(135deg, var(--text-primary), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat { text-align: center; padding: 20px; background: var(--bg-card); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.stat:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* VISION-MISSION */
.vm-section { background: var(--bg-primary); position: relative; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card {
  padding: 48px; background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden;
}
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); background-size: 200% 100%; animation: shimmerBar 3s ease infinite; }
@keyframes shimmerBar { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.vm-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.vm-icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--accent); transition: var(--transition); }
.vm-card:hover .vm-icon { transform: scale(1.15); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 16px; color: var(--accent-light); }
.vm-card p { color: var(--text-secondary); }

/* PRODUCTS */
.products { background: var(--bg-secondary); }
.product-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px; border: 1px solid var(--border);
  background: transparent; color: var(--text-secondary); font-size: 0.85rem;
  font-weight: 500; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px;
}
.tab-btn.active, .tab-btn:hover { background: var(--accent); color: var(--bg-primary); border-color: var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--bg-card); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition); cursor: pointer;
}
.product-card:hover { border-color: var(--border-hover); transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-glow); }
.product-img { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,7,6,0.5) 0%, transparent 50%); opacity: 0; transition: var(--transition); }
.product-card:hover .product-img::after { opacity: 1; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.product-card:hover .product-img img { transform: scale(1.1); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 4px 14px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--bg-primary); font-size: 0.7rem; font-weight: 600; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.product-info { padding: 20px; }
.product-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-info p { color: var(--text-muted); font-size: 0.88rem; }

/* SUSTAINABILITY */
.sustainability { background: var(--bg-primary); position: relative; }
.sustainability::before { content: ''; position: absolute; inset: 0; background: url('img/leather-texture.png') center/cover no-repeat; opacity: 0.04; pointer-events: none; }
.sustain-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; position: relative; z-index: 1; }
.sustain-card {
  padding: 36px 28px; background: var(--bg-glass); border-radius: var(--radius);
  border: 1px solid var(--border); backdrop-filter: blur(10px); transition: var(--transition);
}
.sustain-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.sustain-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(200,148,74,0.15), rgba(200,148,74,0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; color: var(--accent); transition: var(--transition); }
.sustain-card:hover .sustain-icon { background: linear-gradient(135deg, rgba(200,148,74,0.25), rgba(200,148,74,0.1)); transform: scale(1.1); }
.sustain-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.sustain-card p { color: var(--text-secondary); font-size: 0.9rem; }
.sustain-stat { margin-top: 12px; font-weight: 600; color: var(--accent); font-size: 0.85rem; }

/* CERTIFICATIONS */
.certifications { background: var(--bg-secondary); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.cert-card {
  padding: 28px; background: var(--bg-card); border-radius: var(--radius-sm);
  border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.cert-card:hover { border-color: var(--border-hover); }
.cert-icon { font-size: 2rem; margin-bottom: 12px; color: var(--accent); }
.cert-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--accent-light); }
.cert-card p { font-size: 0.82rem; color: var(--text-muted); }

/* TEAM */
.team { background: var(--bg-primary); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.team-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 36px 28px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(200,148,74,0.2);
  transition: var(--transition);
  overflow: hidden;
}
.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card:hover .team-avatar { transform: scale(1.08); box-shadow: 0 4px 28px rgba(200,148,74,0.35); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
.team-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }

/* WHY US */
.why-us { background: var(--bg-secondary); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.why-card { display: flex; gap: 16px; padding: 28px; background: var(--bg-card); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { border-color: var(--border-hover); transform: translateX(6px); box-shadow: var(--shadow-glow); }
.why-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; min-width: 40px; }
.why-card h3 { font-size: 1rem; margin-bottom: 6px; }
.why-card p { font-size: 0.88rem; color: var(--text-secondary); }

/* CONTACT */
.contact { background: var(--bg-primary); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: rgba(200,148,74,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--accent); }
.contact-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-secondary); font-size: 0.9rem; text-decoration: none; }
.contact-item a:hover { color: var(--accent); }
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); min-height: 420px; }
.contact-map iframe { display: block; }

/* FOOTER */
.footer { background: var(--bg-secondary); padding: 60px 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); margin-top: 12px; font-size: 0.9rem; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,148,74,0.1); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* FLOATING ACTION BUTTONS */
.floating-btns {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; gap: 14px;
}
.fab {
  width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; text-decoration: none; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.fab:hover { transform: scale(1.12); }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.fab-call { background: var(--accent); }
.fab-call:hover { box-shadow: 0 6px 28px rgba(200,148,74,0.45); }
.fab-whatsapp { animation: fabPulse 2.5s ease-in-out infinite; }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: none; }

/* NAV OVERLAY */
.nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-secondary); flex-direction: column;
    padding: 80px 32px 32px; gap: 24px; transition: var(--transition);
    border-left: 1px solid var(--border); z-index: 999;
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .about-grid, .vm-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1rem; }
  section { padding: 64px 0; }
  .section-title { font-size: 1.8rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-info { padding: 14px; }
  .product-info h3 { font-size: 0.95rem; }
  .product-info p { font-size: 0.8rem; }

  .contact-map { min-height: 300px; }
  .contact-map iframe { min-height: 300px !important; }
  .contact-info h3 { font-size: 1.3rem; }

  .vm-card { padding: 32px 24px; }
  .sustain-card { padding: 28px 20px; }
  .team-card { padding: 28px 20px; }

  .floating-btns { bottom: 20px; right: 16px; }
  .fab { width: 52px; height: 52px; font-size: 1.4rem; }

  .footer-grid { gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-card { padding: 20px 16px; }

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

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }
  .hero h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.65rem; padding: 6px 16px; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; gap: 12px; }
  .btn { padding: 12px 28px; font-size: 0.82rem; width: 100%; max-width: 280px; justify-content: center; }
  .cert-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
