@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 {
  --black: #0A0A0A;
  --black-soft: #141414;
  --black-card: #1C1C1C;
  --gold: #C9A96E;
  --gold-light: #E2C88A;
  --gold-pale: rgba(201,169,110,0.12);
  --white: #FFFFFF;
  --gray: #888888;
  --border: rgba(201,169,110,0.18);
  --shadow: 0 24px 80px rgba(0,0,0,0.6);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px 48px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; }
.navbar.scrolled { background: rgba(10,10,10,0.96); padding: 14px 48px; border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 50px; width: 50px; object-fit: contain; border-radius: 4px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; line-height: 1.15; }
.nav-logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 400; color: var(--gray); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 11px 28px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; font-family: 'Inter', sans-serif; background: transparent; display: inline-block; }
.nav-cta:hover { background: var(--gold); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 26px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 44px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); transition: color 0.3s; letter-spacing: 0.02em; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 28px; right: 40px; font-size: 2rem; color: var(--gold); cursor: pointer; background: none; border: none; color: var(--gold); }

/* PRE-LANDING */
.prelanding { position: fixed; inset: 0; background: var(--black); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 1s ease; }
.prelanding.fade-out { opacity: 0; pointer-events: none; }
.prelanding-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; animation: particleRise linear infinite; }
@keyframes particleRise { 0% { transform: translateY(100vh); opacity: 0; } 10% { opacity: 0.7; } 90% { opacity: 0.3; } 100% { transform: translateY(-100px); opacity: 0; } }
.pre-logo { width: 180px; height: 180px; object-fit: contain; opacity: 0; animation: fadeUp 1.2s ease 0.4s forwards; }
.pre-title { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); margin-top: 36px; text-align: center; opacity: 0; animation: fadeUp 1s ease 0.9s forwards; letter-spacing: 0.04em; }
.pre-sub { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.25em; text-transform: uppercase; margin-top: 12px; text-align: center; opacity: 0; animation: fadeUp 1s ease 1.2s forwards; }
.pre-divider { width: 60px; height: 1px; background: var(--gold); margin: 32px auto; opacity: 0; animation: fadeUp 1s ease 1.4s forwards; }
.pre-btn { padding: 15px 52px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; background: transparent; font-family: 'Inter', sans-serif; transition: all 0.3s; opacity: 0; animation: fadeUp 1s ease 1.6s forwards; }
.pre-btn:hover { background: var(--gold); color: var(--black); }
.pre-count { margin-top: 20px; font-size: 0.7rem; color: rgba(201,169,110,0.45); letter-spacing: 0.12em; opacity: 0; animation: fadeUp 1s ease 1.8s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 10s ease; }
.hero:hover .hero-bg { transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,10,10,0.9) 35%, rgba(10,10,10,0.3) 80%); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 64px; }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: flex; align-items: center; gap: 20px; }
.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 5.5rem); font-weight: 900; line-height: 1.04; color: var(--white); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.85; max-width: 440px; margin-bottom: 52px; font-weight: 300; letter-spacing: 0.02em; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold { padding: 16px 44px; background: var(--gold); color: var(--black); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; border: none; font-family: 'Inter', sans-serif; transition: all 0.3s; display: inline-block; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,169,110,0.3); }
.btn-outline { padding: 16px 44px; border: 1px solid rgba(255,255,255,0.35); color: var(--white); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; background: transparent; font-family: 'Inter', sans-serif; transition: all 0.3s; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { position: absolute; bottom: 44px; left: 64px; z-index: 2; display: flex; align-items: center; gap: 14px; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.hero-scroll::after { content: ''; width: 56px; height: 1px; background: rgba(255,255,255,0.25); }

/* SECTIONS */
section { padding: 104px 64px; }
.section-label { font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.9; max-width: 540px; margin-bottom: 64px; font-weight: 300; }
.gold-bar { width: 56px; height: 1px; background: var(--gold); margin-bottom: 52px; }
.center-content { text-align: center; }
.center-content .gold-bar { margin: 0 auto 52px; }
.center-content .section-sub { margin: 0 auto 64px; }

/* CATEGORIES */
.cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 60px; }
.cat-card { position: relative; aspect-ratio: 2/3; overflow: hidden; cursor: pointer; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.5s ease; filter: brightness(0.55); }
.cat-card:hover img { transform: scale(1.1); filter: brightness(0.35); }
.cat-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 32px 20px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%); }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--white); text-align: center; transition: color 0.3s; }
.cat-card:hover .cat-name { color: var(--gold); }
.cat-sub { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0); margin-top: 6px; transition: all 0.4s; }
.cat-card:hover .cat-sub { color: rgba(255,255,255,0.5); }
.cat-line { width: 28px; height: 1px; background: var(--gold); margin: 10px auto 0; transform: scaleX(0); transition: transform 0.4s ease; }
.cat-card:hover .cat-line { transform: scaleX(1); }

/* FEATURED */
.featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 300px 300px; gap: 2px; margin-top: 60px; }
.fi-1 { grid-column: span 7; grid-row: span 2; }
.fi-2 { grid-column: span 5; }
.fi-3 { grid-column: span 3; }
.fi-4 { grid-column: span 2; }
.featured-item { position: relative; overflow: hidden; cursor: pointer; display: block; }
.featured-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.featured-item:hover img { transform: scale(1.07); }
.featured-item-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0); transition: background 0.4s; }
.featured-item:hover .featured-item-overlay { background: rgba(10,10,10,0.45); }
.featured-caption { position: absolute; bottom: 20px; left: 20px; opacity: 0; transform: translateY(10px); transition: all 0.4s; }
.featured-item:hover .featured-caption { opacity: 1; transform: translateY(0); }
.featured-caption-line { width: 28px; height: 1px; background: var(--gold); margin-bottom: 8px; }
.featured-caption-text { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--white); font-style: italic; }

/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 60px; border: 1px solid var(--border); }
.why-card { padding: 52px 36px; border-right: 1px solid var(--border); transition: background 0.35s; }
.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--black-card); }
.why-icon { color: var(--gold); font-size: 1.4rem; margin-bottom: 24px; }
.why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 12px; font-weight: 600; }
.why-text { font-size: 0.85rem; color: var(--gray); line-height: 1.85; }

/* STATS */
.stats-strip { background: var(--black-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 64px 20px; border-right: 1px solid var(--border); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray); margin-top: 10px; display: block; }

/* CTA BANNER */
.cta-banner { background: var(--black-soft); border-top: 1px solid var(--border); text-align: center; padding: 100px 64px; }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner .section-sub { margin: 0 auto 48px; }

/* PAGE HEADER */
.page-header { padding: 160px 64px 80px; border-bottom: 1px solid var(--border); }

/* FILTER */
.filter-bar { padding: 32px 64px; display: flex; gap: 8px; flex-wrap: wrap; border-bottom: 1px solid var(--border); background: var(--black-soft); }
.filter-btn { padding: 9px 22px; border: 1px solid var(--border); background: transparent; color: var(--gray); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* PRODUCTS GRID */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 2px; }
.prod-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--black-card); }
.prod-card.hidden { display: none; }
.prod-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease, filter 0.5s ease; filter: brightness(0.9); }
.prod-card:hover img { transform: scale(1.08); filter: brightness(0.45); }
.prod-hover { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; opacity: 0; transition: opacity 0.4s; }
.prod-card:hover .prod-hover { opacity: 1; }
.prod-hover-line { width: 40px; height: 1px; background: var(--gold); }
.prod-hover-text { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--white); font-style: italic; }

/* GALLERY */
.gallery-masonry { columns: 4; column-gap: 2px; padding: 2px; }
.gallery-item { break-inside: avoid; margin-bottom: 2px; position: relative; overflow: hidden; cursor: pointer; display: block; }
.gallery-item img { width: 100%; display: block; transition: transform 0.6s ease, filter 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.55); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-plus { color: var(--gold); font-size: 1.6rem; font-weight: 300; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.97); z-index: 2000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; animation: lbFade 0.35s cubic-bezier(0.34,1.4,0.64,1); }
@keyframes lbFade { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
.lb-close { position: absolute; top: 24px; right: 32px; color: rgba(255,255,255,0.6); font-size: 2rem; cursor: pointer; background: none; border: none; transition: color 0.3s; }
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; font-size: 1.1rem; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { border-color: var(--gold); color: var(--gold); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em; }

/* ABOUT */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; margin-top: 80px; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-img-border { position: absolute; bottom: -28px; right: -28px; width: 62%; height: 62%; border: 1px solid var(--gold); pointer-events: none; }
.about-text .section-title { margin-bottom: 20px; }
.about-p { color: var(--gray); line-height: 2; font-size: 0.92rem; margin-bottom: 24px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--border); }
.step-wrap { display: flex; gap: 20px; }
.step-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; flex-shrink: 0; opacity: 0.5; }
.step-title { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 6px; letter-spacing: 0.02em; }
.step-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.8; }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; margin-top: 80px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-card { display: flex; gap: 20px; align-items: flex-start; padding: 28px; border: 1px solid var(--border); transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(201,169,110,0.4); }
.contact-icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 4px; }
.c-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; display: block; }
.c-val { color: var(--white); font-size: 0.9rem; line-height: 1.6; }
.social-row { display: flex; gap: 10px; margin-top: 12px; }
.social-row a { padding: 8px 18px; border: 1px solid var(--border); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); transition: all 0.3s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.whatsapp-btn { background: #25D366; color: #000 !important; border-color: #25D366 !important; }
.viber-btn { background: #7360F2; color: #fff !important; border-color: #7360F2 !important; }
.contact-form-wrap { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea { background: var(--black-soft); border: 1px solid var(--border); color: var(--white); padding: 14px 16px; font-size: 0.88rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0; }
.form-group select option { background: var(--black-soft); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.map-wrap { padding: 0 64px 104px; }
.map-wrap iframe { width: 100%; height: 420px; border: 1px solid var(--border); filter: grayscale(85%) invert(8%); display: block; }

/* FOOTER */
footer { background: var(--black-soft); border-top: 1px solid var(--border); padding: 84px 64px 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo img { height: 68px; object-fit: contain; margin-bottom: 20px; }
.footer-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.9; max-width: 270px; }
.footer-socials { display: flex; gap: 10px; margin-top: 28px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.85rem; transition: all 0.3s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; display: block; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-nav a { font-size: 0.83rem; color: var(--gray); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-info p { font-size: 0.83rem; color: var(--gray); line-height: 1.7; }
.footer-contact-info strong { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: var(--gray); }
.footer-credit { font-size: 0.68rem; color: rgba(201,169,110,0.4); }
.footer-credit a { color: rgba(201,169,110,0.6); transition: color 0.3s; }
.footer-credit a:hover { color: var(--gold); }

/* BACK TO TOP */
#backToTop { position: fixed; bottom: 36px; right: 36px; width: 48px; height: 48px; background: var(--gold); color: var(--black); border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1rem; transition: all 0.3s; z-index: 500; }
#backToTop:hover { background: var(--gold-light); transform: translateY(-4px); }
#backToTop.show { display: flex; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-l.active { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-r.active { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { columns: 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { border-bottom: 1px solid var(--border); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  section { padding: 72px 32px; }
  .navbar { padding: 16px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
  .hero-content { padding: 0 32px; }
  .hero-scroll { left: 32px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .stats-strip { padding: 0 32px; }
  .filter-bar, .page-header, .map-wrap { padding-left: 32px; padding-right: 32px; }
  .featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fi-1, .fi-2, .fi-3, .fi-4 { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .hero-content { padding: 0 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .filter-bar, .page-header, .map-wrap { padding-left: 20px; padding-right: 20px; }
  .navbar { padding: 14px 20px; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .stat-item { border-right: none; }
}
