/* ============================================================
   PUPUK ORGANIK ANGKASA — style.css
   CV. Arpindo Perkasa, Payakumbuh, Sumatera Barat
   ============================================================ */

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

:root {
  --forest: #1a3a2a;
  --moss:   #2d5a3d;
  --leaf:   #4a8c5c;
  --sage:   #7fb08a;
  --cream:  #f5f0e8;
  --warm:   #ede5d0;
  --earth:  #8b6e4e;
  --gold:   #c9a84c;
  --dark:   #0f1f17;
  --text:   #2c3e30;
}

/* === RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* === PARTICLES === */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle { position: absolute; opacity: 0; animation: floatLeaf linear infinite; }
.particle svg { display: block; }
@keyframes floatLeaf {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

/* === SCROLL PROGRESS === */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: var(--gold);
  z-index: 9999; transition: width 0.1s; width: 0;
}

/* === NAV === */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 0 60px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
nav.solid { background: rgba(26,58,42,0.97); box-shadow: 0 2px 40px rgba(0,0,0,0.2); }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--cream); line-height: 1.1;
}
.logo-text span { font-size: 0.75rem; font-weight: 300; letter-spacing: 2px; display: block; color: var(--sage); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  opacity: 0.8; transition: opacity 0.3s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 24px !important; border-radius: 2px;
  opacity: 1 !important; font-weight: 600 !important;
}
.nav-cta:hover { background: #e0bb60 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(15,31,23,0.98); backdrop-filter: blur(12px);
  padding: 20px; z-index: 999; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--cream); text-decoration: none; padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1rem;
}

/* === SECTION COMMON === */
.section { padding: 100px 60px; max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--leaf); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
  color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { color: #5a7060; font-size: 1rem; line-height: 1.8; max-width: 560px; margin-bottom: 60px; }

/* === BUTTONS === */
.btn-primary {
  background: var(--gold); color: var(--dark); padding: 15px 36px;
  border: none; border-radius: 2px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.5px; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #e0bb60; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
.btn-ghost {
  background: transparent; color: var(--cream); padding: 15px 36px;
  border: 1px solid rgba(245,240,232,0.35); border-radius: 2px;
  font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s;
  font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,240,232,0.07); }

/* === HERO === */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--dark) 0%, var(--forest) 40%, var(--moss) 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,92,0.15) 0%, transparent 70%);
}
.hero-bg-circle.c1 { width: 700px; height: 700px; top: -200px; right: -100px; }
.hero-bg-circle.c2 { width: 400px; height: 400px; bottom: -100px; left: 100px; }
.hero-content {
  padding: 140px 60px 80px; max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.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.4);
  padding: 6px 16px; border-radius: 100px; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300;
  color: var(--cream); line-height: 1.08; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  color: rgba(245,240,232,0.7); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 28px; max-width: 480px; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-motto {
  margin-bottom: 32px; padding: 14px 20px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px; display: inline-block; animation: fadeUp 0.8s 0.25s ease both;
}
.hero-motto span:first-child {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-style: italic; color: var(--gold); display: block;
}
.hero-motto span:last-child {
  font-size: 0.72rem; color: rgba(245,240,232,0.5); letter-spacing: 1px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; animation: fadeUp 0.8s 0.4s ease both; }
.stat { border-left: 2px solid var(--gold); padding-left: 16px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--cream); }
.stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.5); letter-spacing: 1px; text-transform: uppercase; }
.hero-visual { display: flex; align-items: center; justify-content: center; animation: fadeUp 0.8s 0.4s ease both; }
.hero-orb {
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--leaf), var(--forest));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(74,140,92,0.4), inset 0 0 60px rgba(0,0,0,0.2);
  animation: orbFloat 4s ease-in-out infinite; position: relative;
}
.hero-orb img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%; opacity: 0.85;
}
.hero-orb-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--cream); text-align: center; line-height: 1.6;
}
.hero-orb-text .big { font-size: 4rem; font-weight: 300; display: block; }
@keyframes orbFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* === PAGE HEADER (untuk halaman non-home) === */
.page-header {
  background: linear-gradient(160deg, var(--dark) 0%, var(--forest) 100%);
  padding: 140px 60px 80px; text-align: center;
}
.page-header .section-tag { color: var(--sage); }
.page-header .section-title { color: var(--cream); margin-bottom: 0; }

/* === FEATURES === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(74,140,92,0.1);
  border: 1px solid rgba(74,140,92,0.15);
}
.feature-card {
  background: var(--cream); padding: 48px 36px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.feature-card:hover { background: var(--warm); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 12px;
}
.feature-desc { font-size: 0.9rem; line-height: 1.8; color: #5a7060; }

/* === PRODUCTS === */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--cream); border-radius: 4px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(26,58,42,0.15); }
.product-img {
  height: 220px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover; position: absolute;
  top: 0; left: 0;
}
.product-img .img-fallback { position: relative; z-index: 1; }
.product-img.green { background: linear-gradient(135deg, var(--moss), var(--leaf)); }
.product-img.brown { background: linear-gradient(135deg, var(--earth), #a07850); }
.product-img.blue  { background: linear-gradient(135deg, #2a4a6a, #3a6a9a); }
.product-img.amber { background: linear-gradient(135deg, #ffe0b2, #ffcc80); }
.product-img.green2{ background: linear-gradient(135deg, #e8f5e0, #a5d6a7); }
.product-img.pink  { background: linear-gradient(135deg, #f8bbd0, #f48fb1); }
.product-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; text-transform: uppercase; z-index: 2;
}
.product-info { padding: 28px; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.product-tagline { font-size: 0.85rem; color: #7a9080; margin-bottom: 16px; line-height: 1.6; }
.product-price { font-size: 1.3rem; font-weight: 600; color: var(--leaf); margin-bottom: 20px; font-family: 'Cormorant Garamond', serif; }
.product-btn {
  width: 100%; background: var(--forest); color: var(--cream);
  border: none; padding: 12px; border-radius: 2px; font-size: 0.85rem;
  font-weight: 500; cursor: pointer; transition: background 0.3s;
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.5px; text-decoration: none;
  display: block; text-align: center;
}
.product-btn:hover { background: var(--moss); }

/* === ABOUT === */
.about-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--forest) 100%);
  color: var(--cream);
}
.about-inner {
  max-width: 1200px; margin: 0 auto; padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; padding: 40px; backdrop-filter: blur(10px);
}
.about-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--gold); margin-bottom: 16px; }
.about-card-text { font-size: 1.4rem; font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.7; color: var(--cream); }
.about-milestones { margin-top: 24px; }
.milestone { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.milestone:last-child { border-bottom: none; }
.milestone-year { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); font-weight: 600; min-width: 60px; }
.milestone-text { font-size: 0.9rem; color: rgba(245,240,232,0.7); line-height: 1.6; }
.about-content .section-title { color: var(--cream); }
.about-content .section-tag { color: var(--sage); }
.about-content .section-subtitle { color: rgba(245,240,232,0.65); max-width: 100%; }
.values-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.value-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  background: rgba(255,255,255,0.05); border-radius: 2px; border-left: 3px solid var(--gold);
}
.value-emoji { font-size: 1.5rem; }
.value-text strong { display: block; font-size: 0.95rem; color: var(--cream); margin-bottom: 2px; }
.value-text span { font-size: 0.82rem; color: rgba(245,240,232,0.55); }

/* === TEAM === */
.team-section { background: var(--cream); padding: 80px 60px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  margin: 0 auto 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--moss), var(--leaf));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--leaf); margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: #5a7060; line-height: 1.7; }

/* === BLOG === */
.blog-controls {
  display: flex; gap: 16px; margin-bottom: 40px;
  flex-wrap: wrap; align-items: center;
}
.blog-search {
  flex: 1; min-width: 200px; padding: 12px 18px;
  border: 1px solid rgba(74,140,92,0.3); border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  background: white; outline: none; transition: border-color 0.3s;
}
.blog-search:focus { border-color: var(--leaf); }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(74,140,92,0.25); background: white;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
  color: var(--moss); letter-spacing: 0.3px;
}
.filter-btn:hover, .filter-btn.active { background: var(--leaf); color: white; border-color: var(--leaf); }
.blog-count { font-size: 0.82rem; color: #9aaa9a; margin-bottom: 24px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  background: white; border-radius: 4px; overflow: hidden;
  transition: all 0.3s; cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 45px rgba(26,58,42,0.12); }
.blog-card.hidden { display: none; }
.blog-card-img {
  height: 200px; display: flex; align-items: center;
  justify-content: center; font-size: 4rem; position: relative; overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; }
.blog-card-img .img-fallback { position: relative; z-index: 1; }
.blog-card-img.bg1  { background: linear-gradient(135deg, #e8f5e0, #c8e6c0); }
.blog-card-img.bg2  { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.blog-card-img.bg3  { background: linear-gradient(135deg, #e8f0fe, #c5cae9); }
.blog-card-img.bg4  { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.blog-card-img.bg5  { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }
.blog-card-img.bg6  { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: #9aaa9a; }
.blog-cat { background: rgba(74,140,92,0.12); color: var(--leaf); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.blog-info { padding: 24px; }
.blog-info .blog-meta { margin-bottom: 12px; }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--forest); line-height: 1.4; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.85rem; color: #6a806a; line-height: 1.7; margin-bottom: 16px; }
.blog-read { font-size: 0.8rem; font-weight: 600; color: var(--leaf); display: inline-flex; align-items: center; gap: 6px; }
.blog-no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: #9aaa9a; font-size: 1rem; display: none; }

/* === BLOG DETAIL === */
.blog-detail-hero {
  background: linear-gradient(160deg, var(--dark), var(--forest));
  padding: 140px 60px 80px; text-align: center;
}
.blog-detail-cat {
  display: inline-block; background: rgba(201,168,76,0.2); color: var(--gold);
  padding: 5px 16px; border-radius: 100px; font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.blog-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400;
  color: var(--cream); line-height: 1.2; max-width: 800px;
  margin: 0 auto 20px;
}
.blog-detail-meta { color: rgba(245,240,232,0.5); font-size: 0.85rem; }
.blog-detail-cover {
  max-width: 760px; margin: 0 auto;
  height: 360px; overflow: hidden; border-radius: 4px; margin-top: -40px; position: relative; z-index: 2;
}
.blog-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-body { max-width: 760px; margin: 0 auto; padding: 60px 20px; }
.blog-detail-body p { font-size: 1.05rem; line-height: 1.9; color: var(--text); margin-bottom: 24px; }
.blog-detail-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--forest); margin: 40px 0 16px; }
.blog-detail-body ul { margin: 0 0 24px 24px; }
.blog-detail-body ul li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 8px; }
.blog-detail-body .highlight {
  background: linear-gradient(135deg, var(--warm), #e8dfc8);
  border-left: 4px solid var(--gold); padding: 24px 28px;
  margin: 32px 0; border-radius: 0 4px 4px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-style: italic; color: var(--forest); line-height: 1.7;
}
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--leaf); color: var(--leaf);
  padding: 10px 22px; border-radius: 2px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  margin-bottom: 20px; transition: all 0.3s; text-decoration: none;
}
.back-btn:hover { background: var(--leaf); color: white; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--forest); margin-bottom: 20px; }
.contact-info p { color: #5a7060; line-height: 1.8; margin-bottom: 32px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: white; border-radius: 4px; }
.contact-icon { font-size: 1.5rem; }
.contact-label { font-size: 0.75rem; color: #9aaa9a; text-transform: uppercase; letter-spacing: 1px; }
.contact-val { font-size: 0.95rem; color: var(--forest); font-weight: 500; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; color: #5a7060; font-weight: 500; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px; border: 1px solid rgba(74,140,92,0.25);
  border-radius: 2px; background: white; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--leaf); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; background: rgba(74,140,92,0.1); border: 1px solid var(--leaf);
  border-radius: 4px; padding: 16px 20px; color: var(--leaf);
  font-size: 0.9rem; text-align: center;
}

/* === FOOTER === */
footer { background: var(--dark); padding: 60px; position: relative; z-index: 1; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: rgba(245,240,232,0.45); font-size: 0.85rem; line-height: 1.8; margin-top: 16px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(245,240,232,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(245,240,232,0.3); font-size: 0.8rem; }
.footer-social { display: flex; gap: 16px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: rgba(245,240,232,0.5); cursor: pointer; transition: all 0.3s;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* === MOBILE === */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .section { padding: 70px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; padding: 70px 24px; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-detail-hero { padding: 120px 24px 60px; }
  .blog-detail-body { padding: 40px 16px; }
  .page-header { padding: 120px 24px 60px; }
  .team-section { padding: 60px 24px; }
  .blog-controls { flex-direction: column; }
  .blog-search { width: 100%; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}
