/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Premium Industrial Palette */
  --black: #111111;
  --charcoal: #1c1c1c;
  --white: #ffffff;
  --light: #f8f8f8;
  --red: #b5121b;
  --red-dk: #8f0d14;
  --gold: #c8a95b;
  --gold-lt: #e8c87a;
  --gray: #666666;
  --subtle: #999999;
  --line: #eaeaea;
  --green: #1a8a3e;
  --wa: #25d366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--light);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== SCROLLED NAV ===== */
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ===== 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: var(--black);
  border-bottom: 3px solid var(--red);
  transition: box-shadow .3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}

.nav-brand {
  display: flex; flex-direction: column; line-height: 1.1;
}

.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 2px;
  color: var(--white);
}

.nav-brand-sub {
  font-size: 0.6rem; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 1.5px;
}

.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}

.nav-links a {
  color: var(--light);
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  transition: color .2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--red-dk) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}

.hamburger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: var(--charcoal);
  border-bottom: 2px solid var(--red);
  padding: 12px 5% 20px;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu ul li a {
  display: block; padding: 14px 0;
  color: var(--light); font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
  transition: color .2s;
}
.mobile-menu ul li a:hover { color: var(--gold); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1001;
  display: flex; align-items: center; gap: 8px;
  background: var(--wa);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37,211,102,0.4);
  color: var(--white);
}

.wa-icon { font-size: 1.1rem; }

/* ===== HERO ===== */
#hero {
  min-height: 90vh;
  padding-top: 72px;
  background: var(--black);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(181,18,27,0.1) 0%, transparent 40%),
    linear-gradient(315deg, rgba(200,169,91,0.05) 0%, transparent 40%);
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center;
  color: var(--gold);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-title .line-gold { color: var(--gold); display: block; }

.hero-tagline {
  font-size: 1.1rem;
  color: var(--light);
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--red);
  line-height: 1.6;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--subtle); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background .2s, transform .2s;
}

.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); color: var(--white); }

.btn-wa { background: var(--wa) !important; }
.btn-wa:hover { background: #1db954 !important; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 28px; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color .2s, color .2s, transform .2s;
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== HERO RIGHT ===== */
.hero-image-wrap {
  position: relative; border-radius: 6px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-image {
  width: 100%; height: 400px; object-fit: cover;
  display: block;
}

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(17,17,17,0.8));
}

/* ===== TRUST STRIP ===== */
#trust {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 24px 5%;
}

.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px 36px;
}

.trust-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 2px;
  color: var(--gold); white-space: nowrap;
}

.trust-items {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--light);
  font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}

.trust-item svg { width: 16px; height: 16px; color: var(--gold); }

/* ===== SECTION COMMON ===== */
section { padding: 90px 5%; }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: block; width: 30px; height: 2px;
  background: var(--red);
}

.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }
.section-label.center::after {
  content: '';
  display: block; width: 30px; height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 1.5px; line-height: 1;
  margin-bottom: 14px; color: var(--black);
}

.section-title.light { color: var(--white); }

.section-desc {
  color: var(--gray); font-size: 1.05rem;
  max-width: 600px; line-height: 1.7;
}

.section-header { margin-bottom: 50px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCTS ===== */
#products { background: var(--light); }

/* Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--charcoal);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.filter-btn.active:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, opacity .3s ease;
  cursor: default;
}

.product-card.hide {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.product-img-wrap { position: relative; overflow: hidden; }
.product-image {
  width: 100%; height: 220px; object-fit: cover;
  display: block;
  transition: transform .4s;
}

.product-card:hover .product-image { transform: scale(1.05); }

.product-body {
  padding: 24px 20px;
}

.product-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.product-badge {
  display: inline-block;
  background: rgba(200, 169, 91, 0.1);
  border: 1px solid rgba(200, 169, 91, 0.3);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== ABOUT ===== */
#about { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.about-text {
  color: var(--charcoal); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 24px;
}

.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

.about-highlight {
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.about-highlight h4 {
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--black); margin-bottom: 4px;
}

.about-highlight p { font-size: 0.85rem; color: var(--gray); }

.about-right-card {
  background: var(--charcoal);
  border-radius: 4px; padding: 48px;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.about-motto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: var(--gold);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 8px;
}

.about-motto-sub {
  font-size: 0.95rem; color: var(--subtle); font-style: italic;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.about-stat {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}

.about-stat-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-top: 2px;
}

.about-stat h4 { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.about-stat p { font-size: 0.85rem; color: var(--subtle); line-height: 1.6; }

/* ===== WHY US ===== */
#why-us { background: var(--light); }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 4px; padding: 32px 24px;
}

.why-card svg { width: 28px; height: 28px; color: var(--red); margin-bottom: 16px; }

.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--black); margin-bottom: 8px;
}

.why-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--charcoal); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 32px;
}

.stars { margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--gold); display: inline-block; }

.testimonial-card p {
  color: var(--light); font-style: italic;
  line-height: 1.7; margin-bottom: 20px; font-size: 0.95rem;
}

.t-author {
  font-weight: 700; font-size: 0.85rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: 1px;
}

/* ===== HOURS & LOCATION ===== */
#hours-location { background: var(--white); border-bottom: 1px solid var(--line); }

.hl-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}

.info-card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 4px; padding: 40px;
}

.info-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 1.5px;
  color: var(--black); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

.info-card-title svg { width: 24px; height: 24px; color: var(--red); }

.open-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 4px;
  margin-bottom: 24px;
}

.open-badge.is-open {
  background: rgba(26,138,62,0.1);
  border: 1px solid rgba(26,138,62,0.3);
  color: var(--green);
}

.open-badge.is-closed {
  background: rgba(181,18,27,0.1);
  border: 1px solid rgba(181,18,27,0.3);
  color: var(--red);
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); display: inline-block;
  animation: pulse 1.5s infinite;
}

.closed-dot { background: var(--red); animation: none; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }

.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 10px; border-radius: 4px;
  font-size: 0.95rem; margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-of-type { border-bottom: none; }

.hours-row.today {
  background: rgba(200,169,91,0.15);
  border-bottom: none;
}

.hours-row.today .day { color: var(--charcoal); font-weight: 700; }
.hours-row.today .time { color: var(--charcoal); font-weight: 800; }

.hours-row .day { color: var(--gray); font-weight: 600; }
.hours-row .time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; color: var(--black); font-size: 1.05rem;
}

.location-detail {
  display: flex; gap: 16px; margin-bottom: 24px;
}

.loc-icon-wrap {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.loc-icon-wrap svg { width: 22px; height: 22px; color: var(--gold); }

.location-detail h4 {
  font-weight: 700; font-size: 0.95rem;
  color: var(--black); margin-bottom: 4px;
}

.location-detail p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }

.map-embed {
  width: 100%; height: 240px;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line); margin-top: 24px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.map-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--charcoal); color: var(--white);
  padding: 14px 20px; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 16px; width: 100%;
  transition: background .2s;
}

.map-btn:hover { background: var(--black); color: var(--white); }
.map-btn svg { width: 18px; height: 18px; }

/* ===== CONTACT ===== */
#contact { background: var(--light); }

.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.contact-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px; padding: 20px 24px;
  text-decoration: none; color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.contact-item:hover {
  border-color: var(--red);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.ci-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

.ci-icon svg { width: 24px; height: 24px; }
.ci-phone svg { color: var(--red); }
.ci-wa svg { color: var(--wa); }
.ci-mail svg { color: var(--charcoal); }

.contact-item h4 {
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--subtle); margin-bottom: 2px;
}

.contact-item p { font-size: 1rem; color: var(--black); font-weight: 600; }

.contact-cta {
  background: var(--black);
  border-radius: 4px; padding: 48px;
  color: var(--white);
}

.contact-cta h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem; letter-spacing: 2px;
  color: var(--white); margin-bottom: 12px;
}

.contact-cta .gold-line {
  width: 50px; height: 3px; background: var(--gold); margin-bottom: 20px;
}

.contact-cta p { color: var(--subtle); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }

.cta-btns { display: flex; flex-direction: column; gap: 14px; }

.cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}

.cta-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.cta-btn svg { width: 20px; height: 20px; }
.cta-call { background: var(--red); color: var(--white); }
.cta-wa-btn { background: var(--wa); color: var(--white); }
.cta-email { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.2); }

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 4px solid var(--red);
  padding: 60px 5% 24px;
  color: var(--white);
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
  gap: 40px; margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 2px; color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-legal {
  font-size: 0.65rem; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}

.footer-brand-tagline {
  font-size: 0.9rem; color: var(--gray);
  font-style: italic; max-width: 260px; line-height: 1.7;
}

.footer-motto {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; color: var(--gold); letter-spacing: 1.5px;
  margin-top: 16px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white); margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: var(--subtle); font-size: 0.85rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; font-size: 0.85rem; color: var(--subtle);
}

.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.footer-contact-item a { color: var(--subtle); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--subtle); }
.footer-tagline-bottom {
  color: var(--gold) !important;
  font-size: 0.85rem !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner,
  .hl-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { justify-content: center; }
  .whatsapp-float {
    bottom: 16px; right: 16px;
    padding: 12px 18px; font-size: 0.85rem;
    width: calc(100% - 32px); justify-content: center;
  }
}

.nav-logo{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img{
    width: 55px;
    height: 55px;
    border-radius: 12px;
    object-fit: cover;
}

.smallcaps{
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
}