/* ============================================
   SISI OLONJE — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark: #1E0A00;
  --brown-mid: #4A2000;
  --brown-light: #7A4520;
  --gold: #C8870A;
  --gold-light: #E8A840;
  --cream: #F9F4EC;
  --cream-dark: #EFE8DB;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', Arial, sans-serif;
  --nav-height: 80px;
  --t: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.18);
  --radius: 6px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--brown-dark);
  background: var(--white);
  line-height: 1.75;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
video { max-width: 100%; }
a { text-decoration: none; color: var(--gold); transition: color var(--t); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

h1,h2,h3,h4,h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 1.5rem; }
.section-sm { padding: 3.5rem 1.5rem; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--brown-dark); color: var(--white); }
.section-mid { background: var(--brown-mid); color: var(--white); }
.section-dark h2,.section-dark h3,.section-dark h4 { color: var(--white); }
.section-mid h2,.section-mid h3 { color: var(--white); }
.text-center { text-align: center; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { color: var(--brown-dark); margin-bottom: 0.75rem; }
.section-header .divider { width: 60px; height: 3px; background: var(--gold); margin: 1rem auto; border-radius: 2px; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--brown-light); font-size: 1.05rem; }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.72); }
.section-mid .section-header h2 { color: var(--white); }
.section-mid .section-header p { color: rgba(255,255,255,0.72); }

/* ---- Buttons ---- */
.btn {
  display: inline-block; padding: 0.85rem 2.25rem;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: 3px; border: 2px solid transparent;
  transition: all var(--t); cursor: pointer; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--brown-dark); }
.btn-dark { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }
.btn-dark:hover { background: var(--brown-mid); border-color: var(--brown-mid); color: var(--white); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-group.center { justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(30,10,0,0.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(200,135,10,0.22);
  transition: background var(--t);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links > li > a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.4px; text-transform: uppercase;
  padding: 0.45rem 0.65rem; border-radius: 3px;
  transition: color var(--t); display: block;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a.btn { padding: 0.45rem 1.1rem; color: var(--white); font-size: 0.78rem; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 220px; background: var(--brown-dark);
  border: 1px solid rgba(200,135,10,0.22);
  border-radius: var(--radius); padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block; padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.72); font-size: 0.82rem;
  transition: all var(--t);
}
.nav-dropdown-menu li a:hover { color: var(--gold); background: rgba(200,135,10,0.08); padding-left: 1.5rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); display: block; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(30,10,0,0.82) 0%, rgba(30,10,0,0.45) 60%, rgba(30,10,0,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; color: var(--white);
  padding: 2rem 1.25rem; max-width: 860px;
  animation: fadeUp 0.9s ease both;
}
.hero-logo { width: 170px; margin: 0 auto 2.25rem; border-radius: 8px; padding: 8px 14px; background: rgba(255,255,255,0.92); }
.hero-content h1 { color: var(--white); margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-tagline { font-size: clamp(1rem, 2.5vw, 1.4rem); color: var(--gold-light); font-style: italic; font-family: var(--font-heading); margin-bottom: 0.75rem; }
.hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1rem; margin-bottom: 2.5rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; animation: bounce 2s infinite; z-index: 1;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(8px); } }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative; height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: var(--nav-height);
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(30,10,0,0.65); }
.page-hero-content { position: relative; z-index: 1; text-align: center; color: var(--white); padding: 2rem 1.25rem; }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content .divider { width: 60px; height: 3px; background: var(--gold); margin: 1rem auto; }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb { background: var(--cream); padding: 0.75rem 1.5rem; }
.breadcrumb .container { font-size: 0.85rem; color: var(--brown-light); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; color: var(--brown-light); }

/* ============================================
   VALUES
   ============================================ */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.value-card { padding: 3rem 1.75rem; text-align: center; border-right: 1px solid rgba(200,135,10,0.15); transition: background var(--t); }
.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(200,135,10,0.05); }
.value-icon { width: 2.8rem; height: 2.8rem; margin: 0 auto 1.1rem; display: block; color: var(--gold); }
.icon-svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; flex-shrink: 0; color: var(--gold); }
.value-card h4 { color: var(--gold); margin-bottom: 0.4rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); }
.value-card p { color: var(--brown-light); font-size: 0.92rem; margin: 0; }
.section-dark .value-card p { color: rgba(255,255,255,0.65); }
.section-dark .value-card { border-color: rgba(255,255,255,0.08); }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 2rem; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img-wrap { overflow: hidden; flex-shrink: 0; }
.service-card-img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { color: var(--brown-dark); margin-bottom: 0.65rem; font-size: 1.35rem; }
.service-card-body p { color: var(--brown-light); margin-bottom: 1.25rem; flex: 1; font-size: 0.95rem; }

/* Service options */
.service-options { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.option-card { padding: 1.75rem; background: var(--white); border-radius: var(--radius); border-top: 4px solid var(--gold); box-shadow: var(--shadow); transition: transform var(--t); }
.option-card:hover { transform: translateY(-4px); }
.option-card h4 { color: var(--brown-dark); margin-bottom: 0.6rem; }
.option-card p { color: var(--brown-light); margin: 0; font-size: 0.93rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-img { width: 100%; border-radius: var(--radius); box-shadow: 0 15px 50px rgba(0,0,0,0.22); }
.about-text h2 { color: var(--brown-dark); margin-bottom: 1.25rem; }
.about-text p { color: var(--brown-light); }
.about-quote { font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: var(--gold); border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 1.75rem 0; background: rgba(200,135,10,0.06); border-radius: 0 var(--radius) var(--radius) 0; line-height: 1.6; }
.credentials { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.75rem; }
.credential { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--brown-mid); font-weight: 700; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 0.625rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; cursor: pointer; background: var(--cream-dark); -webkit-tap-highlight-color: transparent; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { position: absolute; inset: 0; background: rgba(30,10,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--t); color: white; font-size: 1.8rem; }
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.96);
  align-items: center; justify-content: center; padding: 1.25rem;
  touch-action: manipulation;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 1rem; right: 1.25rem; color: white; font-size: 2.2rem; background: none; border: none; opacity: 0.72; transition: opacity var(--t); line-height: 1; padding: 0.5rem; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,.lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; background: rgba(255,255,255,0.12); border: none; width: 50px; height: 50px; border-radius: 50%; transition: background var(--t); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-counter { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ============================================
   VIDEO
   ============================================ */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 2rem; }
.video-wrap { border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-lg); }
.video-wrap video { width: 100%; display: block; max-height: 480px; object-fit: cover; }

/* ============================================
   SUB-BRANDS
   ============================================ */
.subbrands-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.25rem; }
.subbrand-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 340px; display: block; -webkit-tap-highlight-color: transparent; }
.subbrand-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.subbrand-card:hover img { transform: scale(1.07); }
.subbrand-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(30,10,0,0.92) 0%,rgba(30,10,0,0.12) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; color: white; }
.subbrand-overlay .tag { display: inline-block; background: var(--gold); color: white; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 0.28rem 0.75rem; border-radius: 2px; margin-bottom: 0.65rem; width: fit-content; }
.subbrand-overlay h3 { color: var(--white); margin-bottom: 0.4rem; font-size: 1.4rem; }
.subbrand-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.78); margin-bottom: 0.85rem; }

/* ============================================
   HIRE SHOP
   ============================================ */
.hire-categories { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 2rem; }
.hire-category h4 { color: var(--gold); margin-bottom: 1rem; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-body); font-weight: 700; }
.hire-category li { padding: 0.38rem 0; color: rgba(255,255,255,0.68); font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.07); }

/* ============================================
   FOOD SHOP / PRODUCTS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 2.5rem; }
.product-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img { width: 100%; height: 260px; object-fit: cover; }
.product-card-body { padding: 1.75rem; }
.product-card-body h3 { color: var(--brown-dark); margin-bottom: 0.65rem; }
.product-card-body p { color: var(--brown-light); font-size: 0.95rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 1.75rem; }
.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,135,10,0.22); border-radius: var(--radius); padding: 2.25rem 1.75rem; }
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 1.05rem; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-heading); font-style: italic; color: rgba(255,255,255,0.9); font-size: 1.02rem; margin-bottom: 1.5rem; line-height: 1.65; }
.testimonial-author { color: var(--gold); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.testimonial-event { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin-top: 0.2rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.25fr; gap: 4.5rem; align-items: start; }
.contact-info h2 { color: var(--brown-dark); margin-bottom: 0.75rem; }
.contact-info > p { color: var(--brown-light); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 1.3rem; height: 1.3rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.contact-detail-text h5 { color: var(--brown-dark); margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-detail-text a,.contact-detail-text p { color: var(--brown-light); font-size: 0.93rem; }
.contact-social { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 2rem; }
.social-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.1rem; background: var(--brown-dark); color: var(--white); border-radius: 4px; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; transition: background var(--t), color var(--t); }
.social-btn:hover { background: var(--gold); color: var(--white); }

.contact-form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2.75rem 2.25rem; }
.contact-form-card h3 { color: var(--brown-dark); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; margin-bottom: 0.45rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--brown-mid); }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 0.82rem 1rem; border: 1.5px solid #E0D5C8; border-radius: 4px; font-family: var(--font-body); font-size: 1rem; color: var(--brown-dark); background: var(--cream); transition: border-color var(--t), box-shadow var(--t); -webkit-appearance: none; appearance: none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,135,10,0.13); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   NAIJAHIGHSTREET
   ============================================ */
.delivery-zones { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.5rem; }
.zone-badge { display: inline-block; padding: 0.45rem 1.1rem; background: rgba(200,135,10,0.1); border: 1px solid var(--gold); color: var(--gold); border-radius: 30px; font-size: 0.85rem; font-weight: 700; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: var(--gold); padding: 4rem 1.5rem; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--brown-dark); color: rgba(255,255,255,0.58); padding: 4.5rem 1.5rem 2rem; }
.footer-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand img { height: 50px; margin-bottom: 1rem; border-radius: 5px; padding: 4px 10px; background: rgba(255,255,255,0.88); }
.footer-brand p { font-size: 0.88rem; line-height: 1.72; }
.footer-social { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem; }
.footer-col h5 { color: var(--gold); margin-bottom: 1.15rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-family: var(--font-body); font-weight: 700; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col li a { color: rgba(255,255,255,0.55); font-size: 0.87rem; transition: color var(--t); }
.footer-col li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1180px; margin: 1.75rem auto 0; text-align: center; font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .about-grid { gap: 3rem; }
  .contact-wrapper { gap: 3rem; }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section { padding: 3.75rem 1.25rem; }
  .section-sm { padding: 2.75rem 1.25rem; }
  .container { padding: 0 1.25rem; }

  /* Mobile nav */
  .nav { padding: 0 1.25rem; }
  .nav-links {
    display: none; position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--brown-dark);
    flex-direction: column; padding: 1.25rem;
    gap: 0.15rem; border-bottom: 1px solid rgba(200,135,10,0.2);
    max-height: calc(100dvh - var(--nav-height)); overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-links > li > a { padding: 0.75rem 0.5rem; font-size: 0.9rem; }
  .nav-links > li > a.btn { margin-top: 0.5rem; text-align: center; }
  .nav-dropdown-menu { position: static; display: none; box-shadow: none; border: none; background: rgba(255,255,255,0.04); border-radius: 0; padding: 0 0 0 1rem; margin-top: 0.2rem; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { height: 280px; }
  .hero-logo { width: 140px; }
  .contact-form-card { padding: 2rem 1.25rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card { padding: 2rem 1.25rem; }
  .value-card:nth-child(odd) { border-right: 1px solid rgba(200,135,10,0.15); }
  .value-card:nth-child(even) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .subbrands-grid { grid-template-columns: 1fr; }
  .hire-categories { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================ */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 0.4rem; }
  .hire-categories { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid rgba(200,135,10,0.15); }
  .value-card:last-child { border-bottom: none; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}
