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

:root {
  --cream: #faf8f5;
  --sage: #8fa896;
  --sage-light: #c8d5c2;
  --sage-dark: #4a6550;
  --blush: #e8d5c8;
  --blush-dark: #c4a68e;
  --charcoal: #2c2c2c;
  --mid: #6b6b6b;
  --light: #e8e4df;
  --white: #ffffff;
  --accent: #b87333;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,248,245,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light);
}
.top-bar {
  background: var(--sage-dark); color: white; font-size: 12px;
  text-align: center; padding: 7px 40px; letter-spacing: 0.08em;
  display: flex; justify-content: center; align-items: center; gap: 24px;
}
.top-bar a { color: white; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.4); }
.hdr-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 68px; gap: 16px;
}
.logo { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300; letter-spacing: 0.06em; color: var(--charcoal); flex-shrink: 0; }
.logo span { color: var(--sage-dark); font-weight: 600; }
.logo:hover { opacity: 0.85; }
.main-nav { display: flex; gap: 22px; list-style: none; align-items: center; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  font-size: 13px; font-weight: 500; color: var(--mid);
  letter-spacing: 0.02em; transition: color 0.2s; position: relative; white-space: nowrap;
}
.main-nav > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--sage-dark); transition: width 0.3s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--charcoal); }
.main-nav > li > a:hover::after,
.main-nav > li > a.active::after { width: 100%; }

/* Mega Menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: -40px;
  background: var(--white); border: 1px solid var(--light); border-radius: 12px;
  padding: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  display: none; grid-template-columns: repeat(4,1fr); gap: 8px; width: 640px;
  /* invisible bridge so cursor can travel from nav item to menu */
}
.has-mega::after {
  content: ''; position: absolute; top: 100%; left: -40px;
  width: 720px; height: 14px; background: transparent;
}
.has-mega:hover .mega-menu,
.mega-menu:hover { display: grid; }
.mega-item {
  padding: 10px 12px; border-radius: 8px; color: var(--charcoal);
  transition: background 0.2s; font-size: 13px;
  display: flex; align-items: center; gap: 10px;
}
.mega-item:hover { background: var(--cream); }
.mega-item .mi { font-size: 20px; }

/* Header right */
.hdr-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-box {
  display: flex; align-items: center; background: var(--light);
  border-radius: 40px; padding: 7px 14px; gap: 7px; transition: all 0.2s;
}
.search-box:focus-within { background: white; box-shadow: 0 0 0 2px var(--sage); }
.search-box input {
  border: none; background: none; font-size: 13px; color: var(--charcoal);
  outline: none; width: 130px; font-family: inherit;
}
.icon-btn {
  background: none; border: none; cursor: pointer; color: var(--mid);
  padding: 5px; position: relative; transition: color 0.2s; flex-shrink: 0;
}
.icon-btn:hover { color: var(--sage-dark); }
.cart-badge {
  position: absolute; top: 0; right: 0; width: 16px; height: 16px;
  background: var(--sage-dark); color: white; border-radius: 50%;
  font-size: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.cta-btn {
  background: var(--sage-dark); color: white; border: none;
  padding: 0 20px; border-radius: 40px; font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em; transition: all 0.3s;
  white-space: nowrap; flex-shrink: 0;
  height: 36px; display: inline-flex; align-items: center;
}
.cta-btn:hover { background: var(--sage); transform: translateY(-1px); }
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--charcoal); padding: 4px; }

/* ── PAGE TOP SPACING ── */
.page-top { padding-top: 108px; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, #edeae4 50%, var(--sage-light) 100%);
  padding: 72px 40px 64px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143,168,150,0.2) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--mid); margin-bottom: 20px; position: relative; }
.breadcrumb a { color: var(--sage-dark); }
.breadcrumb span { opacity: 0.5; }
.page-hero .section-label { position: relative; }
.page-hero .section-title { position: relative; max-width: 700px; }
.page-hero .section-sub { position: relative; }

/* ── SECTIONS ── */
section { padding: 80px 40px; }
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sage-dark); font-weight: 600; margin-bottom: 12px; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px,3.8vw,52px); font-weight: 300; line-height: 1.2; }
.section-title em { font-style: italic; color: var(--sage-dark); }
.section-sub { color: var(--mid); font-size: 15px; line-height: 1.7; max-width: 520px; margin-top: 16px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-dark); color: white; padding: 16px 34px;
  border-radius: 50px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; transition: all 0.3s; border: none;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(74,101,80,0.3); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--sage-dark); color: var(--sage-dark); padding: 14px 32px;
  border-radius: 50px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; transition: all 0.3s; background: none;
}
.btn-outline:hover { background: var(--sage-dark); color: white; }
.btn-white { background: white; color: var(--sage-dark); }
.btn-white:hover { background: var(--sage-light); transform: translateY(-2px); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 0 10px; height: 32px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-eco { background: #dcfce7; color: #15803d; }
.badge-sale { background: #ffedd5; color: #c2410c; }
.badge-best { background: #fef9c3; color: #a16207; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--white); border-top: 1px solid var(--light); border-bottom: 1px solid var(--light); padding: 18px 40px; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); font-weight: 500; }
.trust-icon { font-size: 19px; }

/* ── COLLECTIONS ── */
.coll-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.coll-card { border-radius: 22px; overflow: hidden; cursor: pointer; transition: transform 0.4s, box-shadow 0.4s; }
.coll-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.coll-visual { height: 280px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.coll-c1 .coll-visual { background: linear-gradient(135deg, #d4e8d4, #8fa896); }
.coll-c2 .coll-visual { background: linear-gradient(135deg, #e8d5c8, #c4a68e); }
.coll-c3 .coll-visual { background: linear-gradient(135deg, #d0dce8, #7fa0c0); }
.coll-body { padding: 24px; background: var(--cream); }
.coll-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dark); font-weight: 600; }
.coll-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin: 6px 0; }
.coll-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }
.coll-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--sage-dark); }
.coll-arrow { transition: transform 0.3s; }
.coll-card:hover .coll-arrow { transform: translateX(4px); }

/* ── CATEGORY GRID ── */
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 48px; }
.cat-card {
  background: var(--white); border: 1px solid var(--light); border-radius: 20px;
  padding: 28px 20px; text-align: center; cursor: pointer; color: var(--charcoal);
  transition: all 0.3s; display: block;
}
.cat-card:hover { border-color: var(--sage); background: var(--cream); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); }
.cat-icon { font-size: 36px; margin-bottom: 12px; }
.cat-name { font-size: 13px; font-weight: 500; }
.cat-count { font-size: 11px; color: var(--mid); margin-top: 4px; }

/* ── PRODUCT CARDS ── */
.filter-bar { display: flex; gap: 12px; margin: 40px 0 32px; flex-wrap: wrap; align-items: center; }
.filter-scroll { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border-radius: 30px; border: 1px solid var(--light); background: none; font-size: 13px; cursor: pointer; color: var(--mid); transition: all 0.2s; font-family: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }
.filter-right { margin-left: auto; }
.sort-select { border: 1px solid var(--light); padding: 8px 14px; border-radius: 8px; font-size: 13px; color: var(--mid); background: none; cursor: pointer; font-family: inherit; outline: none; }
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.prod-card {
  border-radius: 20px; overflow: hidden; background: var(--white);
  border: 1px solid var(--light); cursor: pointer; transition: all 0.3s; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--sage-light); }
.prod-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 56px; background: var(--light); position: relative; overflow: hidden; }
.prod-badge { position: absolute; top: 10px; left: 10px; z-index: 1; font-size: 11px; }
.prod-wish { position: absolute; top: 12px; right: 12px; background: white; border: none; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.prod-wish:hover { transform: scale(1.1); }
.prod-quick { position: absolute; bottom: 12px; right: 12px; background: var(--white); border: none; border-radius: 8px; padding: 8px 14px; font-size: 12px; cursor: pointer; opacity: 0; transform: translateY(6px); transition: all 0.3s; font-family: inherit; font-weight: 500; color: var(--charcoal); }
.prod-card:hover .prod-quick { opacity: 1; transform: translateY(0); }
.prod-info { padding: 16px; }
.prod-cat { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.08em; }
.prod-name { font-size: 15px; font-weight: 500; margin: 4px 0 8px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 13px; color: var(--mid); }
.prod-price strong { display: block; color: var(--charcoal); font-size: 16px; }
.add-btn { background: var(--sage-dark); color: white; border: none; border-radius: 8px; padding: 8px 14px; font-size: 12px; cursor: pointer; font-weight: 500; transition: all 0.2s; font-family: inherit; }
.add-btn:hover { background: var(--sage); }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.svc-card { background: var(--white); border-radius: 22px; padding: 36px 32px; border: 1px solid var(--light); transition: all 0.3s; }
.svc-card:hover { border-color: var(--sage); box-shadow: 0 16px 40px rgba(0,0,0,0.07); transform: translateY(-4px); }
.svc-icon { font-size: 40px; margin-bottom: 20px; }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 12px; }
.svc-desc { font-size: 14px; color: var(--mid); line-height: 1.7; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 13px; font-weight: 500; color: var(--sage-dark); }
.svc-features { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.svc-features li { font-size: 13px; color: var(--mid); display: flex; align-items: center; gap: 8px; }
.svc-features li::before { content: '✓'; color: var(--sage-dark); font-weight: 700; flex-shrink: 0; }

/* ── SUSTAINABILITY DARK ── */
.sustain-dark { background: var(--sage-dark); color: white; }
.sustain-dark .section-label { color: var(--sage-light); }
.sustain-dark .section-title { color: white; }
.sustain-dark .section-sub { color: rgba(255,255,255,0.7); max-width: none; }
.sustain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 52px; }
.sustain-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 28px; transition: all 0.3s; }
.sustain-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.sustain-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--sage-light); }
.sustain-title { font-size: 15px; font-weight: 500; margin: 8px 0 6px; }
.sustain-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.test-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.test-card { background: var(--cream); border-radius: 16px; padding: 32px; border: 1px solid var(--light); transition: all 0.3s; }
.test-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,0.07); }
.test-stars { color: #f4b942; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.test-text { font-size: 15px; color: var(--charcoal); line-height: 1.7; font-style: italic; }
.test-author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.test-name { font-size: 14px; font-weight: 500; }
.test-role { font-size: 12px; color: var(--mid); }

/* ── CLIENTS ── */
.clients-bar { padding: 60px 40px; }
.clients-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--mid); font-weight: 500; margin-bottom: 36px; }
.clients-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.client-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--light); font-weight: 600; letter-spacing: 0.08em; transition: color 0.3s; }
.client-name:hover { color: var(--sage-dark); }

/* ── NEWSLETTER ── */
.newsletter-section { background: linear-gradient(135deg, var(--blush) 0%, #f0e4d8 100%); }
.news-inner { max-width: 700px; margin: 0 auto; text-align: center; overflow: hidden; }
.news-form { display: flex; gap: 12px; margin-top: 36px; }
.news-input { flex: 1; border: 2px solid var(--light); background: white; padding: 14px 20px; border-radius: 50px; font-size: 14px; color: var(--charcoal); outline: none; transition: border-color 0.2s; font-family: inherit; }
.news-input:focus { border-color: var(--sage-dark); }
.news-btn { background: var(--sage-dark); color: white; border: none; padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap; transition: all 0.3s; font-family: inherit; }
.news-btn:hover { background: var(--sage); }
.news-note { font-size: 12px; color: var(--mid); margin-top: 14px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal-box { background: white; border-radius: 20px; max-width: 800px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; max-height: 90vh; position: relative; }
.modal-img { background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 80px; }
.modal-close { position: absolute; top: 18px; right: 18px; background: white; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.modal-body { padding: 40px; overflow-y: auto; }
.modal-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; margin-bottom: 8px; }
.modal-price { font-size: 22px; font-weight: 600; color: var(--sage-dark); margin: 12px 0; }
.modal-desc { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 8px 0 20px; }
.qty-btn { width: 36px; height: 36px; border: 1px solid var(--light); border-radius: 8px; background: none; cursor: pointer; font-size: 18px; transition: all 0.2s; }
.qty-btn:hover { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }
.qty-num { font-size: 16px; font-weight: 500; width: 40px; text-align: center; display: inline-block; }
.modal-cta { background: var(--sage-dark); color: white; border: none; padding: 16px 0; width: 100%; border-radius: 12px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.modal-cta:hover { background: var(--sage); }
.modal-perks { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid); }
.perk::before { content: '✓'; color: var(--sage-dark); font-weight: 700; }

/* ── QUOTE BAR ── */
.quote-bar {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(160px);
  background: var(--sage-dark); color: white; padding: 14px 26px;
  border-radius: 44px; font-size: 13px; font-weight: 500;
  display: flex; gap: 16px; align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1); z-index: 600; white-space: nowrap;
}
.quote-bar.active { transform: translateX(-50%) translateY(0); }
.qb-btn { background: white; color: var(--sage-dark); border: none; padding: 8px 18px; border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* ── BACK TO TOP ── */
.btt { position: fixed; bottom: 34px; right: 34px; width: 48px; height: 48px; background: var(--sage-dark); color: white; border: none; border-radius: 50%; font-size: 20px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.2); opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 500; }
.btt.visible { opacity: 1; pointer-events: all; }
.btt:hover { transform: translateY(-3px); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── FORMS ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select {
  border: 2px solid var(--light); border-radius: 10px; padding: 13px 16px;
  font-size: 14px; font-family: inherit; color: var(--charcoal);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sage-dark); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── SIDEBAR LAYOUT (products) ── */
.with-sidebar { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.sidebar-filters { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 28px; height: fit-content; position: sticky; top: 120px; }
.sidebar-section { margin-bottom: 28px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--charcoal); margin-bottom: 14px; display: block; }
.sidebar-options { display: flex; flex-direction: column; gap: 10px; }
.sidebar-opt { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); cursor: pointer; }
.sidebar-opt input { accent-color: var(--sage-dark); width: 15px; height: 15px; flex-shrink: 0; }
.sidebar-opt:hover { color: var(--charcoal); }
.clear-filters { font-size: 12px; color: var(--sage-dark); cursor: pointer; font-weight: 500; margin-top: 16px; display: inline-block; }
.results-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.results-count { font-size: 13px; color: var(--mid); }
.prod-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--light); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: var(--sage-light); }
.blog-img { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.blog-img-1 { background: linear-gradient(135deg, #d4e8d4, #8fa896); }
.blog-img-2 { background: linear-gradient(135deg, #e8d5c8, #c4a68e); }
.blog-img-3 { background: linear-gradient(135deg, #d0dce8, #7fa0c0); }
.blog-img-4 { background: linear-gradient(135deg, #f0e4d8, #e8d5c8); }
.blog-img-5 { background: linear-gradient(135deg, #dde8d9, #c8d5c2); }
.blog-img-6 { background: linear-gradient(135deg, #e8e4df, #d0dce8); }
.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dark); font-weight: 600; }
.blog-date { font-size: 12px; color: var(--mid); }
.blog-read { font-size: 12px; color: var(--mid); }
.blog-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.blog-excerpt { font-size: 13px; color: var(--mid); line-height: 1.65; }
.blog-author { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--light); }
.blog-avatar { font-size: 20px; }
.blog-author-name { font-size: 13px; font-weight: 500; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--sage-dark); margin-top: 16px; }
.blog-arrow { transition: transform 0.3s; }
.blog-card:hover .blog-arrow { transform: translateX(4px); }

/* ── FEATURED BLOG ── */
.blog-featured { background: var(--white); border: 1px solid var(--light); border-radius: 16px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 56px; }
.blog-feat-img { background: linear-gradient(135deg, #d4e8d4, #4a6550); display: flex; align-items: center; justify-content: center; font-size: 96px; min-height: 320px; }
.blog-feat-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }

/* ── CASE STUDY CARDS ── */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.case-card { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 32px; transition: all 0.3s; }
.case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--sage-light); }
.case-sector { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage-dark); font-weight: 600; margin-bottom: 10px; }
.case-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.case-desc { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.case-metrics { display: flex; gap: 20px; margin-bottom: 20px; }
.case-metric { }
.case-metric-n { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--sage-dark); }
.case-metric-l { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: 0.06em; }
.case-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--sage-dark); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 48px; }
.contact-info-card { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 32px; margin-bottom: 20px; }
.contact-info-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; font-size: 14px; color: var(--mid); }
.contact-info-item:last-child { margin-bottom: 0; }
.ci-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.map-placeholder { height: 200px; background: linear-gradient(135deg, var(--sage-light), var(--sage)); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; color: white; font-weight: 500; margin-top: 20px; }

/* ── ABOUT ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
.team-avatar { font-size: 48px; margin-bottom: 16px; width: 80px; height: 80px; background: var(--sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 4px; }
.team-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage-dark); font-weight: 600; margin-bottom: 14px; }
.team-bio { font-size: 13px; color: var(--mid); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.value-card { background: var(--cream); border: 1px solid var(--light); border-radius: 14px; padding: 28px; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }

.timeline { display: flex; gap: 0; margin-top: 56px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: var(--light); }
.tl-item { flex: 1; text-align: center; position: relative; padding-top: 48px; }
.tl-dot { width: 40px; height: 40px; background: var(--sage-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 700; margin: 0 auto; position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.tl-year { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--sage-dark); margin-bottom: 6px; }
.tl-event { font-size: 12px; color: var(--mid); line-height: 1.5; padding: 0 8px; }

.accred-row { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 48px; }
.accred-badge { background: var(--cream); border: 2px solid var(--light); border-radius: 12px; padding: 16px 24px; font-size: 13px; font-weight: 600; color: var(--charcoal); text-align: center; }

/* ── SUSTAINABILITY PAGE ── */
.commitment-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-top: 48px; }
.commitment-card { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 36px; }
.commitment-icon { font-size: 40px; margin-bottom: 18px; }
.commitment-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; margin-bottom: 14px; }
.commitment-desc { font-size: 14px; color: var(--mid); line-height: 1.75; }
.commitment-stat { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--sage-dark); margin-top: 16px; }

.supply-chain { display: flex; align-items: center; margin-top: 48px; gap: 0; }
.sc-step { flex: 1; text-align: center; }
.sc-icon { font-size: 32px; margin-bottom: 10px; }
.sc-label { font-size: 13px; font-weight: 500; }
.sc-arrow { font-size: 20px; color: var(--sage); flex-shrink: 0; }

.calculator-box { background: var(--white); border: 1px solid var(--light); border-radius: 16px; padding: 40px; max-width: 600px; }
.calc-result { background: var(--sage-dark); color: white; border-radius: 12px; padding: 24px; margin-top: 24px; text-align: center; }
.calc-result-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--sage-light); }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; gap: 0; margin-top: 48px; }
.process-step { flex: 1; text-align: center; position: relative; padding: 0 16px; }
.process-step::after { content: '→'; position: absolute; right: -12px; top: 20px; font-size: 20px; color: var(--sage-light); }
.process-step:last-child::after { display: none; }
.ps-num { width: 44px; height: 44px; background: var(--sage-dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; margin: 0 auto 14px; }
.ps-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.ps-desc { font-size: 12px; color: var(--mid); line-height: 1.5; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.pricing-card { background: var(--white); border: 2px solid var(--light); border-radius: 18px; padding: 36px 32px; text-align: center; transition: all 0.3s; }
.pricing-card:hover { border-color: var(--sage); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--sage-dark); background: var(--sage-dark); color: white; }
.pricing-card.featured .section-label { color: var(--sage-light); }
.pricing-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--sage-dark); margin-bottom: 12px; }
.pricing-card.featured .pricing-label { color: var(--sage-light); }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; margin-bottom: 8px; }
.pricing-from { font-size: 13px; color: var(--mid); margin-bottom: 28px; }
.pricing-card.featured .pricing-from { color: rgba(255,255,255,0.6); }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { font-size: 13px; display: flex; gap: 10px; align-items: flex-start; }
.pricing-features li::before { content: '✓'; color: var(--sage-dark); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--sage-light); }

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--light); border-radius: 14px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--light); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; font-size: 15px; font-weight: 500; color: var(--charcoal); cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; font-family: inherit; }
.faq-q:hover { background: var(--cream); }
.faq-icon { font-size: 20px; color: var(--sage-dark); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--mid); line-height: 1.7; }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 40px 32px; }
.ftr-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.ftr-logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; letter-spacing: 0.08em; color: var(--cream); display: block; margin-bottom: 16px; }
.ftr-logo span { color: var(--sage-light); font-weight: 600; }
.ftr-desc { font-size: 13px; line-height: 1.8; max-width: 280px; }
.ftr-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.2s; color: white; }
.social-btn:hover { background: var(--sage-dark); }
.ftr-col h4 { color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 20px; }
.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ftr-col a { color: rgba(255,255,255,0.6); font-size: 13px; transition: color 0.2s; }
.ftr-col a:hover { color: white; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ftr-bottom p { font-size: 12px; }
.ftr-badges { display: flex; gap: 10px; align-items: center; }
.f-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 6px; padding: 5px 12px; font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.ftr-admin { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.ftr-admin:hover { color: rgba(255,255,255,0.5); }

/* ── RESULTS STRIP ── */
.results-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px; padding: 48px; background: var(--sage-dark); border-radius: 20px; }
.rs-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--sage-light); }
.rs-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ── UTILITY ── */
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage-dark); color: white; }
.bg-blush { background: var(--blush); }
.tc { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(3,1fr); }
  .sustain-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .with-sidebar { grid-template-columns: 1fr; }
  .sidebar-filters { position: static; }
}
@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .hdr-main { padding: 0 16px; height: 60px; gap: 8px; }
  .top-bar { padding: 7px 16px; font-size: 11px; }

  /* ── Mobile nav ── */
  .main-nav { display: none; }
  .main-nav.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--light);
    padding: 12px 0; z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    gap: 0;
  }
  .main-nav.mobile-open > li > a {
    display: block; padding: 12px 24px;
    font-size: 15px; border-bottom: 1px solid var(--light);
  }
  .main-nav.mobile-open .mega-menu { display: none !important; }
  .mobile-nav-toggle {
    display: flex !important; align-items: center; justify-content: center;
    order: -1; font-size: 22px; padding: 6px; margin-right: 4px;
    flex-shrink: 0;
  }

  /* ── hdr-right compact ── */
  .hdr-right { gap: 6px; }
  .search-box { display: none; }
  .logo { font-size: 20px; }

  /* Compact all right-side nav buttons on mobile */
  .cta-btn {
    padding: 0 12px !important;
    font-size: 12px !important;
    height: 32px !important;
    white-space: nowrap;
  }
  /* Hide Sign In on mobile — icon buttons + hamburger is enough */
  .hdr-right > a[href*="login"],
  .hdr-right > a[href*="login.html"] { display: none !important; }

  /* Compact Donation button */
  .hdr-right a { font-size: 12px !important; }

  /* ── Page layouts ── */
  .page-hero { padding: 60px 20px 52px; }
  .coll-grid, .svc-grid, .test-grid, .grid-2, .case-grid, .commitment-grid { grid-template-columns: 1fr; }
  .prod-grid, .prod-grid-3 { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .sustain-grid, .pricing-grid { grid-template-columns: 1fr; }
  .team-grid, .values-grid { grid-template-columns: repeat(2,1fr); }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img { display: none; }
  .news-form { flex-direction: column; }
  .trust-inner { gap: 16px; flex-wrap: wrap; }
  .clients-logos { gap: 20px; }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-feat-img { min-height: 200px; }
  .timeline { flex-wrap: wrap; gap: 20px; }
  .timeline::before { display: none; }
  .tl-item { flex: none; width: 45%; }
  .process-steps { flex-wrap: wrap; gap: 20px; }
  .process-step { flex: none; width: 45%; }
  .process-step::after { display: none; }
  .supply-chain { flex-wrap: wrap; gap: 16px; }
  .results-strip { grid-template-columns: repeat(2,1fr); }

  /* ── Filter bar ── */
  .filter-bar { flex-direction: column; align-items: stretch; gap: 10px; margin: 28px 0 24px; }
  .filter-bar { flex-direction: column; align-items: stretch; gap: 10px; margin: 20px 0 16px; }
  .filter-scroll { flex-wrap: wrap; overflow-x: visible; gap: 8px; padding-bottom: 0; }
  .filter-btn { flex-shrink: 0; padding: 6px 12px; font-size: 12px; white-space: nowrap; }
  .filter-right { margin-left: 0; }
  .sort-select { width: 100%; }
  .with-sidebar { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .accred-row { gap: 16px; }
  .news-inner .section-title { white-space: normal !important; font-size: clamp(24px, 6vw, 36px) !important; }
  .section-title { font-size: clamp(26px, 6.5vw, 36px); line-height: 1.25; }
}

@media (max-width: 480px) {
  .hdr-right > a[href*="login"],
  .hdr-sign-in { display: none !important; }
  .hdr-main { padding: 0 12px; }
  .logo { font-size: 18px; }
}
