/* =============================================
   PEACE HOME OF AFRICAN PRINTS — style.css
   ============================================= */

:root {
  --green-deep: #0a3d1f;
  --green-mid: #145a32;
  --green-bright: #1e8449;
  --green-light: #27ae60;
  --green-pale: #d4efdf;
  --green-mist: #eafaf1;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --white: #ffffff;
  --off-white: #f9fdf7;
  --text-dark: #0a2112;
  --text-mid: #2e6b44;
  --text-muted: #5d8a6f;
  --border: rgba(20,90,50,0.15);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Jost',sans-serif; background:var(--white); color:var(--text-dark); overflow-x:hidden; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--green-mist); }
::-webkit-scrollbar-thumb { background:var(--green-bright); border-radius:3px; }

/* ===== NAV ===== */
nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%; height:72px;
  background:rgba(255,255,255,0.97); backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border); transition:all 0.3s ease;
}
nav.scrolled { height:60px; box-shadow:0 4px 30px rgba(10,61,31,0.08); }

.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; }
.logo-img { width:46px; height:46px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid var(--gold); }

.logo-text .brand-name {
  font-family:'Cormorant Garamond',serif;
  font-size:26px; font-weight:700; color:var(--green-deep);
  line-height:1.1; letter-spacing:0.5px;
}
.logo-text .brand-tagline { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); font-weight:500; }

.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a {
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none; font-weight:500;
  position:relative; padding-bottom:4px; transition:color 0.2s;
  display:flex; align-items:center; gap:6px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1.5px; background:var(--gold); transition:width 0.3s ease;
}
.nav-links a:hover { color:var(--green-deep); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background:#25D366 !important; color:var(--white) !important;
  padding:9px 20px !important; border-radius:20px !important;
  letter-spacing:1.5px !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:#1ebe5c !important; }

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

.mobile-menu {
  display:none; position:fixed; inset:0; z-index:999;
  background:white; padding:80px 5% 2rem; flex-direction:column; gap:0.5rem;
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  font-size:14px; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-mid); text-decoration:none; padding:14px 0;
  border-bottom:1px solid var(--border); font-weight:500;
}

/* ===== HERO ===== */
.hero {
  min-height:100vh; display:grid; grid-template-columns:1fr 1fr;
  padding-top:72px; position:relative; overflow:hidden;
}
.hero-left {
  display:flex; flex-direction:column; justify-content:center;
  padding:6rem 5% 4rem 6%; position:relative; z-index:2;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:1.5rem;
}
.hero-eyebrow::before { content:''; display:block; width:32px; height:1.5px; background:var(--gold); }
.hero h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(48px,6vw,80px); font-weight:300; line-height:1.05;
  color:var(--green-deep); margin-bottom:1.5rem;
}
.hero h1 em { font-style:italic; color:var(--green-bright); }
.hero-desc { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:420px; margin-bottom:2.5rem; }
.hero-actions { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; }

.hero-right { position:relative; overflow:hidden; background:var(--green-deep); }
.hero-photo-grid {
  position:absolute; inset:0;
  display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:4px; padding:4px;
}
.hero-photo-item { overflow:hidden; position:relative; }
.hero-photo-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.hero-photo-item:hover img { transform:scale(1.05); }
.hero-overlay-tag {
  position:absolute; bottom:1.5rem; left:50%; transform:translateX(-50%);
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:rgba(255,255,255,0.8); white-space:nowrap;
  background:rgba(0,0,0,0.35); padding:6px 16px; border-radius:20px;
  backdrop-filter:blur(4px);
}
.hero-stats { display:flex; gap:2.5rem; margin-top:3rem; padding-top:2rem; border-top:1px solid var(--border); }
.stat-num { font-family:'Cormorant Garamond',serif; font-size:36px; font-weight:600; color:var(--green-deep); line-height:1; }
.stat-label { font-size:11px; color:var(--text-muted); letter-spacing:1.5px; text-transform:uppercase; margin-top:4px; }

/* ===== BUTTONS ===== */
.btn-primary {
  background:var(--green-deep); color:var(--white);
  padding:14px 36px; border-radius:3px; border:none;
  font-family:'Jost',sans-serif; font-size:11px;
  letter-spacing:2.5px; text-transform:uppercase; font-weight:500;
  cursor:pointer; transition:all 0.3s; text-decoration:none;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { background:var(--green-bright); transform:translateY(-2px); box-shadow:0 8px 24px rgba(10,61,31,0.2); }

.btn-secondary {
  color:var(--green-deep); border:1.5px solid var(--green-deep);
  padding:13px 32px; border-radius:3px;
  font-family:'Jost',sans-serif; font-size:11px;
  letter-spacing:2.5px; text-transform:uppercase; font-weight:500;
  cursor:pointer; transition:all 0.3s; text-decoration:none;
  display:inline-block; background:transparent;
}
.btn-secondary:hover { background:var(--green-mist); transform:translateY(-2px); }

.btn-whatsapp-hero {
  display:inline-flex; align-items:center; gap:8px;
  background:#25D366; color:white;
  padding:14px 28px; border-radius:3px;
  font-family:'Jost',sans-serif; font-size:11px;
  letter-spacing:2px; text-transform:uppercase; font-weight:500;
  cursor:pointer; transition:all 0.3s; text-decoration:none;
}
.btn-whatsapp-hero:hover { background:#1ebe5c; transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,0.3); }

.btn-whatsapp {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:#25D366; color:white;
  padding:16px 36px; border-radius:4px; border:none;
  font-family:'Jost',sans-serif; font-size:12px;
  letter-spacing:2px; text-transform:uppercase; font-weight:500;
  cursor:pointer; transition:all 0.3s; text-decoration:none; width:100%; margin-bottom:1.5rem;
}
.btn-whatsapp:hover { background:#1ebe5c; transform:translateY(-2px); box-shadow:0 8px 32px rgba(37,211,102,0.35); }

/* ===== MARQUEE ===== */
.marquee-strip { background:var(--green-deep); padding:16px 0; overflow:hidden; white-space:nowrap; }
.marquee-inner { display:inline-block; animation:marquee 22s linear infinite; }
.marquee-inner span { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.7); margin:0 2rem; }
.marquee-inner .dot { color:var(--gold); font-size:16px; margin:0 1rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding:6rem 5%; }
.section-alt { background:var(--off-white); }
.section-header { margin-bottom:3.5rem; }
.section-eyebrow {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:0.75rem;
  display:flex; align-items:center; gap:10px;
}
.section-eyebrow::before { content:''; display:block; width:28px; height:1.5px; background:var(--gold); }
.section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(32px,4vw,52px); font-weight:300; color:var(--green-deep); line-height:1.1; }
.section-title em { font-style:italic; color:var(--green-bright); }
.section-sub { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:520px; margin-top:1rem; }

/* ===== COLLECTIONS ===== */
.collections-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.col-card {
  position:relative; overflow:hidden; border-radius:6px; cursor:pointer; text-decoration:none;
  box-shadow:0 2px 20px rgba(10,61,31,0.08); transition:box-shadow 0.3s,transform 0.3s; display:block;
}
.col-card:hover { box-shadow:0 14px 44px rgba(10,61,31,0.18); transform:translateY(-5px); }
.col-card-inner { position:relative; height:400px; overflow:hidden; }
.col-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.col-card:hover .col-img { transform:scale(1.06); }
.col-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(10,61,31,0.9) 0%,rgba(10,61,31,0.15) 55%,transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:1.5rem;
}
.col-tag { font-size:9px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold); margin-bottom:6px; font-weight:600; }
.col-name { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:400; color:white; line-height:1.1; margin-bottom:6px; }
.col-desc { font-size:12px; color:rgba(255,255,255,0.75); line-height:1.6; }
.col-arrow {
  position:absolute; top:1.2rem; right:1.2rem;
  width:36px; height:36px; background:rgba(255,255,255,0.15);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:white; font-size:16px; opacity:0; transition:opacity 0.3s,transform 0.3s; backdrop-filter:blur(4px);
}
.col-card:hover .col-arrow { opacity:1; transform:rotate(45deg); }

/* ===== FEATURE SPLIT ===== */
.feature-split { display:grid; grid-template-columns:1fr 1fr; background:var(--green-deep); min-height:560px; }
.feature-visual { position:relative; overflow:hidden; min-height:440px; }
.feature-mosaic { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; height:100%; gap:3px; }
.mosaic-cell { position:relative; overflow:hidden; }
.mosaic-cell:first-child { grid-row:span 2; }
.mosaic-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.6s ease; }
.mosaic-cell:hover .mosaic-img { transform:scale(1.05); }
.feature-content { display:flex; flex-direction:column; justify-content:center; padding:4rem 5% 4rem 4rem; color:white; }
.feature-content .section-eyebrow { color:var(--gold-light); }
.feature-content .section-eyebrow::before { background:var(--gold-light); }
.feature-content .section-title { color:white; }
.feature-content .section-title em { color:var(--gold-light); }
.feature-content .section-sub { color:rgba(255,255,255,0.65); }
.feature-list { margin-top:2rem; list-style:none; }
.feature-list li { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,0.1); font-size:14px; color:rgba(255,255,255,0.8); }
.feature-list li::before { content:''; display:block; width:6px; height:6px; background:var(--gold); border-radius:50%; flex-shrink:0; }

/* ===== VIDEO SECTION ===== */
.video-section { background:var(--green-deep); }
.video-section .section-eyebrow { color:var(--gold-light); }
.video-section .section-eyebrow::before { background:var(--gold-light); }
.video-section .section-title { color:white; }
.video-section .section-title em { color:var(--gold-light); }
.video-section .section-sub { color:rgba(255,255,255,0.65); }
.video-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; margin-top:3rem; }
.video-item {
  border-radius:8px; overflow:hidden; position:relative;
  box-shadow:0 8px 40px rgba(0,0,0,0.4);
}
.video-item video { width:100%; display:block; max-height:480px; object-fit:cover; background:#000; }

/* ===== GALLERY ===== */
.gallery-section { background:white; }
.gallery-grid {
  display:grid; grid-template-columns:repeat(5,1fr);
  grid-auto-rows:220px; gap:6px; margin-top:3rem;
}
.gallery-item { position:relative; overflow:hidden; border-radius:4px; cursor:pointer; }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }
.gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform:scale(1.08); }
.gallery-hover {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(10,61,31,0.75) 0%,transparent 60%);
  display:flex; align-items:flex-end; padding:0.75rem;
  opacity:0; transition:opacity 0.3s;
}
.gallery-item:hover .gallery-hover { opacity:1; }
.gallery-hover span { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.9); font-weight:600; }

/* ===== STYLES GRID ===== */
.styles-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.style-pill { border:1.5px solid var(--border); border-radius:8px; padding:1.5rem 1rem; text-align:center; transition:all 0.3s; cursor:pointer; background:white; }
.style-pill:hover { border-color:var(--green-bright); background:var(--green-mist); transform:translateY(-4px); box-shadow:0 8px 24px rgba(10,61,31,0.1); }
.style-icon { width:56px; height:56px; border-radius:50%; margin:0 auto 1rem; display:flex; align-items:center; justify-content:center; font-size:20px; }
.style-name { font-size:14px; font-weight:600; color:var(--green-deep); margin-bottom:4px; }
.style-origin { font-size:11px; color:var(--text-muted); letter-spacing:1.5px; text-transform:uppercase; }

/* ===== WHY US ===== */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.why-card { padding:2rem; border-radius:8px; border:1px solid var(--border); background:white; transition:all 0.3s; }
.why-card:hover { border-color:var(--green-bright); box-shadow:0 8px 40px rgba(10,61,31,0.1); transform:translateY(-4px); }
.why-icon { width:52px; height:52px; border-radius:50%; background:var(--green-mist); border:1.5px solid var(--green-pale); display:flex; align-items:center; justify-content:center; font-size:22px; margin-bottom:1.25rem; }
.why-title { font-size:16px; font-weight:600; color:var(--green-deep); margin-bottom:0.5rem; }
.why-text { font-size:13px; color:var(--text-muted); line-height:1.7; }

/* ===== CONTACT ===== */
.contact-wrap { display:grid; grid-template-columns:1fr 1.2fr; gap:4rem; align-items:start; }
.contact-info h3 { font-family:'Cormorant Garamond',serif; font-size:38px; font-weight:300; color:var(--green-deep); margin-bottom:1rem; line-height:1.1; }
.contact-info h3 em { font-style:italic; color:var(--green-bright); }
.contact-info p { font-size:14px; color:var(--text-muted); line-height:1.8; margin-bottom:2rem; }
.contact-detail { display:flex; gap:14px; margin-bottom:1.25rem; align-items:flex-start; }
.ci-icon { width:40px; height:40px; background:var(--green-mist); border:1.5px solid var(--green-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.ci-text strong { font-size:12px; letter-spacing:1px; text-transform:uppercase; color:var(--text-mid); display:block; margin-bottom:2px; }
.ci-text span { font-size:14px; color:var(--text-muted); }
.socials { display:flex; gap:10px; margin-top:2rem; }
.social-btn { width:40px; height:40px; border:1.5px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:600; color:var(--green-mid); cursor:pointer; transition:all 0.2s; text-decoration:none; }
.social-btn.fb:hover { background:#1877f2; color:white; border-color:#1877f2; }
.social-btn.ig:hover { background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:white; border-color:#e1306c; }
.social-btn.wa:hover { background:#25D366; color:white; border-color:#25D366; }

/* ===== WHATSAPP CARD ===== */
.whatsapp-cta { position:relative; }
.wa-card { background:white; border:1px solid var(--border); border-radius:16px; padding:2.5rem; text-align:center; box-shadow:0 4px 40px rgba(37,211,102,0.08); position:relative; overflow:hidden; }
.wa-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#25D366,#128C7E); }
.wa-badge { display:inline-block; background:rgba(37,211,102,0.12); color:#128C7E; font-size:10px; letter-spacing:2px; text-transform:uppercase; font-weight:600; padding:5px 14px; border-radius:20px; margin-bottom:1.5rem; border:1px solid rgba(37,211,102,0.3); }
.wa-icon-wrap { width:88px; height:88px; border-radius:50%; background:rgba(37,211,102,0.1); border:2px solid rgba(37,211,102,0.2); display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; }
.wa-title { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:400; color:var(--green-deep); margin-bottom:0.75rem; line-height:1.2; }
.wa-desc { font-size:14px; color:var(--text-muted); line-height:1.7; margin-bottom:2rem; max-width:340px; margin-left:auto; margin-right:auto; }
.wa-features { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; margin-bottom:1.5rem; }
.wa-feat { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-muted); padding:8px 12px; background:var(--off-white); border-radius:6px; border:1px solid var(--border); }
.wa-feat span { font-size:16px; }
.wa-note { font-size:11px; color:var(--text-muted); letter-spacing:1.5px; text-transform:uppercase; text-align:center; }

/* ===== FOOTER ===== */
footer { background:var(--green-deep); color:rgba(255,255,255,0.8); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:3rem; padding:4rem 5%; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:1rem; }
.footer-logo-img { width:44px; height:44px; border-radius:50%; object-fit:cover; border:2px solid rgba(201,168,76,0.6); flex-shrink:0; }
.footer-brand-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:700; color:white; line-height:1.1; }
.footer-brand-tag { font-size:9px; letter-spacing:2.5px; color:var(--gold); text-transform:uppercase; }
.footer-about { font-size:13px; line-height:1.7; color:rgba(255,255,255,0.55); margin-bottom:1.5rem; }
.footer-col-title { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--gold-light); font-weight:600; margin-bottom:1.25rem; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:0.7rem; }
.footer-links a { font-size:13px; color:rgba(255,255,255,0.55); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:white; }
.footer-wa-btn { display:inline-flex; align-items:center; gap:8px; background:#25D366; color:white; text-decoration:none; padding:10px 18px; border-radius:4px; font-size:12px; letter-spacing:1.5px; text-transform:uppercase; font-weight:500; margin-top:1.25rem; transition:all 0.2s; }
.footer-wa-btn:hover { background:#1ebe5c; transform:translateY(-1px); }
.footer-bottom { padding:1.5rem 5%; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:rgba(255,255,255,0.35); flex-wrap:wrap; gap:0.5rem; }

/* socials in footer */
footer .social-btn { border-color:rgba(255,255,255,0.2); color:rgba(255,255,255,0.6); }
footer .social-btn.fb:hover { background:#1877f2; color:white; border-color:#1877f2; }
footer .social-btn.ig:hover { background:#e1306c; color:white; border-color:#e1306c; }
footer .social-btn.wa:hover { background:#25D366; color:white; border-color:#25D366; }

/* ===== COLLECTIONS PAGE ===== */
.collections-hero {
  position:relative; min-height:480px; display:flex; align-items:flex-end;
  padding-top:72px; overflow:hidden;
}
.ch-bg { position:absolute; inset:0; }
.ch-bg-img { width:100%; height:100%; object-fit:cover; display:block; }
.ch-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(10,61,31,0.92) 0%,rgba(10,61,31,0.6) 60%,rgba(10,61,31,0.3) 100%); }
.ch-content { position:relative; z-index:2; padding:3rem 6%; }
.ch-tabs { display:flex; flex-wrap:wrap; gap:0.75rem; margin-top:2rem; }
.ch-tab {
  padding:8px 20px; border-radius:20px; border:1.5px solid rgba(255,255,255,0.3);
  color:rgba(255,255,255,0.8); font-size:11px; letter-spacing:2px; text-transform:uppercase;
  font-weight:500; text-decoration:none; transition:all 0.2s;
}
.ch-tab:hover { background:var(--gold); border-color:var(--gold); color:#1a0a00; }

/* Fabric sections */
.fab-section { padding:5rem 5%; border-bottom:1px solid var(--border); }
.fab-section:nth-child(even) { background:var(--off-white); }
.fab-inner { max-width:1400px; margin:0 auto; }
.fab-header { margin-bottom:2.5rem; }
.fab-origin { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); font-weight:600; margin-bottom:0.5rem; display:flex; align-items:center; gap:10px; }
.fab-origin::before { content:''; display:block; width:28px; height:1.5px; background:var(--gold); }
.fab-name { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,4vw,56px); font-weight:300; color:var(--green-deep); line-height:1.1; margin-bottom:1rem; }
.fab-desc { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:600px; margin-bottom:1.75rem; }
.fab-img-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; grid-auto-rows:220px; gap:6px; }
.fab-img-cover { grid-row:span 2; }
.fab-img-cover img,
.fab-img-item img { width:100%; height:100%; object-fit:cover; display:block; border-radius:4px; transition:transform 0.5s ease; }
.fab-img-cover:hover img,
.fab-img-item:hover img { transform:scale(1.04); }
.fab-img-item { overflow:hidden; border-radius:4px; }
.fab-img-cover { overflow:hidden; border-radius:4px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:1200px) {
  .gallery-grid { grid-template-columns:repeat(4,1fr); }
  .fab-img-grid { grid-template-columns:2fr 1fr 1fr; }
}
@media (max-width:1024px) {
  .collections-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
  .feature-split { grid-template-columns:1fr; }
  .feature-visual { min-height:320px; }
  .gallery-grid { grid-template-columns:repeat(3,1fr); grid-auto-rows:200px; }
  .video-grid { grid-template-columns:1fr; }
  .fab-img-grid { grid-template-columns:1fr 1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero { grid-template-columns:1fr; min-height:auto; }
  .hero-right { min-height:300px; order:-1; }
  .hero-left { padding:3rem 5%; }
  .hero-stats { gap:1.5rem; }
  .collections-grid { grid-template-columns:1fr; }
  .styles-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:1fr; }
  .contact-wrap { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
  .feature-content { padding:3rem 5%; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
  .gallery-item.wide { grid-column:span 1; }
  .fab-img-grid { grid-template-columns:1fr 1fr; }
  .fab-img-cover { grid-column:span 2; grid-row:span 1; }
  .ch-tabs { gap:0.5rem; }
}
@media (max-width:480px) {
  .styles-grid { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr; }
  .hero h1 { font-size:38px; }
  .section { padding:4rem 5%; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:150px; }
  .gallery-item.tall { grid-row:span 1; }
  .wa-features { grid-template-columns:1fr; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .btn-whatsapp-hero { width:100%; justify-content:center; }
  .fab-img-grid { grid-template-columns:1fr; }
}
