/* ===========================================================
   SHARMAJI EVENT MANAGEMENT
   Luxury Destination Wedding & Event Management — Ahmedabad
   =========================================================== */

:root {
  --saffron: #C2A24A;       /* brand gold accent */
  --saffron-dark: #A5842E;
  --gold: #C2A24A;
  --gold-light: #DEC57C;
  --cream: #FBF7EF;
  --cream-2: #F2EAD9;
  --ink: #3F3B36;           /* charcoal text */
  --ink-soft: #6a635a;
  --maroon: #6E5A1F;        /* deep gold-brown accent */
  --charcoal: #47423C;      /* dark sections & footer */
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(43, 33, 24, .12);
  --shadow-sm: 0 6px 18px rgba(43, 33, 24, .10);
  --radius: 16px;
  --maxw: 1180px;
  --head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--head); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

.script { font-family: var(--head); font-style: italic; color: var(--gold); }

.accent { color: var(--saffron); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 50px; font-weight: 600;
  font-family: var(--body); font-size: .95rem; cursor: pointer;
  border: 2px solid transparent; transition: .25s ease; letter-spacing: .3px;
}
.btn-primary { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--ink); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--gold); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ---------- Header ---------- */
.topbar {
  background: #000; color: var(--cream-2);
  font-size: .82rem; letter-spacing: .3px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .45rem 0; flex-wrap: wrap; }
.topbar a { color: var(--gold-light); }
/* Hide address from top header; phone number stays */
.topbar .tb-left { display: none; }
.topbar .tb-right { display: flex; gap: 1.2rem; align-items: center; }
.topbar .socials a { margin-left: .6rem; font-size: .95rem; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(253, 246, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, .35);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .6rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand .crest { width: 52px; height: 52px; flex: none; }
.brand-logo { height: 60px; width: auto; display: block; }
.brand-text b { font-family: var(--head); font-size: 1.15rem; display: block; letter-spacing: .5px; color: var(--ink); line-height: 1; }
.brand-text span { font-size: .62rem; letter-spacing: 3px; color: var(--saffron); text-transform: uppercase; }

.menu { display: flex; gap: .3rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.menu > li > a {
  padding: .6rem .9rem; font-weight: 500; font-size: .92rem; border-radius: 8px;
  transition: .2s; position: relative;
}
.menu > li > a:hover, .menu > li > a.active { color: var(--saffron); }
.menu > li > a.active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; background: var(--saffron); border-radius: 2px;
}
.nav-cta { margin-left: .6rem; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Hero (clean video banner — original, no tint) ---------- */
.hero {
  position: relative; width: 100%; overflow: hidden;
  background: #000; line-height: 0;
}
.hero-video {
  display: block; width: 100%; height: auto;
  max-height: 82vh; object-fit: cover;
}
.hero-unmute {
  position: absolute; bottom: 18px; right: 18px; z-index: 3; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem; line-height: 1;
  padding: .55rem 1rem; border: 0; border-radius: 50px; font-family: var(--body);
  font-size: .82rem; font-weight: 600; letter-spacing: .3px;
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0,0,0,.3); transition: .25s;
}
.hero-unmute:hover { background: var(--saffron); }
.hero-unmute.on { background: var(--saffron); }

/* ---------- Hero intro band (content moved below video) ---------- */
.hero-intro {
  background: var(--cream); text-align: center; padding: 3.5rem 0 3rem; line-height: 1.7;
}
.hero-intro .eyebrow { letter-spacing: 5px; text-transform: uppercase; font-size: .8rem; color: var(--saffron); margin-bottom: 1rem; font-weight: 600; }
.hero-intro h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: .3rem; color: var(--ink); }
.hero-intro h1 .script { display: block; color: var(--gold); font-size: clamp(2.6rem, 6vw, 4.4rem); }
.hero-intro p.lead { font-size: 1.15rem; max-width: 620px; margin: 1.2rem auto 2rem; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section.tint { background: var(--cream-2); }
.section.dark { background: var(--charcoal); color: var(--cream-2); }
.section.dark h2, .section.dark h3 { color: #fff; }

.sec-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.sec-head .kicker { text-transform: uppercase; letter-spacing: 4px; font-size: .78rem; color: var(--saffron); font-weight: 600; }
.sec-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: .4rem; }
.sec-head p { color: var(--ink-soft); }
.section.dark .sec-head p { color: #d8c9b0; }
.divider { width: 70px; height: 3px; background: linear-gradient(90deg, var(--saffron), var(--gold)); margin: 1rem auto; border-radius: 3px; }

/* ---------- About split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split .frame { position: relative; }
.split .frame .badge {
  position: absolute; bottom: -22px; right: -14px; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff; padding: 1rem 1.3rem; border-radius: 14px; text-align: center; box-shadow: var(--shadow);
}
.split .frame .badge b { font-family: var(--head); font-size: 1.8rem; display: block; }
.split .frame .badge span { font-size: .72rem; letter-spacing: 1px; }
.about-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; }
.about-list li { padding-left: 1.9rem; position: relative; margin-bottom: .6rem; }
.about-list li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: .3s; border: 1px solid rgba(201,162,75,.18); display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card .thumb { height: 210px; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.card:hover .thumb img { transform: scale(1.08); }
.card .body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 1.35rem; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .tags { list-style: none; padding: 0; margin: .6rem 0 1.2rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.card .tags li { background: var(--cream-2); color: var(--ink-soft); font-size: .78rem; padding: .25rem .7rem; border-radius: 50px; }
.card .more { margin-top: auto; color: var(--saffron); font-weight: 600; font-size: .9rem; }

/* ---------- Why / features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature {
  text-align: center; padding: 2rem 1.4rem; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: .3s; border-top: 4px solid var(--gold);
}
.feature:hover { transform: translateY(-6px); }
.feature .ico {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), #fff); display: grid; place-items: center;
  font-size: 1.7rem; color: var(--saffron); box-shadow: var(--shadow-sm);
}
.feature h4 { font-family: var(--body); font-weight: 600; font-size: 1.05rem; margin-bottom: .3rem; }
.feature p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat b { font-family: var(--head); font-size: 2.6rem; color: var(--gold-light); display: block; }
.stat span { font-size: .9rem; letter-spacing: 1px; text-transform: uppercase; }

/* Stats section: blurred background image + numbers inside white cards */
.stats-section { position: relative; overflow: hidden; background: #2b2118; }
.stats-section::before {
  content: ""; position: absolute; inset: -20px; z-index: 0;
  background: url('../images/decoration.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(.55);
  transform: scale(1.06);
}
.stats-section .container { position: relative; z-index: 1; }
.stats-section .stat {
  background: #fff; border-radius: 16px; padding: 2.4rem 1rem; box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.stats-section .stat b { color: var(--saffron); }
.stats-section .stat span { color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.quote {
  background: #fff; padding: 2rem 1.7rem; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  position: relative; border: 1px solid rgba(201,162,75,.18);
}
.quote::before { content: "\201C"; font-family: var(--head); font-size: 4rem; color: var(--gold-light); position: absolute; top: .2rem; left: 1rem; line-height: 1; }
.quote p { position: relative; z-index: 1; color: var(--ink-soft); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--head); }
.quote .who b { display: block; font-family: var(--body); }
.quote .who span { font-size: .82rem; color: var(--saffron); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid a { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; transition: .5s; }
.gallery-grid a:hover img { transform: scale(1.1); }
.gallery-grid a::after {
  content: "\1F50D"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(43,33,24,.4); color: #fff; font-size: 1.6rem; opacity: 0; transition: .3s;
}
.gallery-grid a:hover::after { opacity: 1; }

/* ---------- Venues ---------- */
.region { margin-bottom: 2.5rem; }
.region h3 { display: flex; align-items: center; gap: .6rem; color: var(--maroon); font-size: 1.5rem; }
.region h3 .pin { color: var(--saffron); }
.region .sub { color: var(--saffron); font-weight: 600; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; margin: 1rem 0 .5rem; }
.venue-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: .6rem; list-style: none; padding: 0; margin: 0; }
.venue-list li { background: #fff; padding: .7rem 1rem; border-radius: 10px; box-shadow: var(--shadow-sm); font-size: .9rem; border-left: 3px solid var(--gold); }
.venue-list li::before { content: "\1F3E8  "; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.contact-info .ci-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info .ci-item .ico { width: 48px; height: 48px; flex: none; border-radius: 12px; background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.contact-info .ci-item b { display: block; }
.contact-info .ci-item span { color: var(--ink-soft); font-size: .92rem; }

form.inquiry { background: #fff; padding: 2.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
form.inquiry .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
form.inquiry label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); display: block; margin: .8rem 0 .3rem; }
form.inquiry input, form.inquiry select, form.inquiry textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid #e0d3bd; border-radius: 10px; font-family: var(--body);
  font-size: .92rem; background: var(--cream); color: var(--ink);
}
form.inquiry input:focus, form.inquiry select:focus, form.inquiry textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(229,115,42,.15); }
form.inquiry textarea { resize: vertical; min-height: 110px; }
form.inquiry .btn { width: 100%; justify-content: center; margin-top: 1.2rem; }
.form-note { font-size: .78rem; color: var(--ink-soft); text-align: center; margin-top: .8rem; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 3rem; }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Page banner ---------- */
.page-banner {
  color: #fff; text-align: center; padding: 6.5rem 0 4rem;
  background: linear-gradient(rgba(43,33,24,.6), rgba(43,33,24,.7)), url('../images/mandap.jpg') center/cover;
}
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-banner .crumbs { color: var(--gold-light); font-size: .9rem; letter-spacing: 1px; }
.page-banner .crumbs a:hover { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--saffron), var(--maroon)); color: #fff; text-align: center; padding: 4rem 0;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { max-width: 560px; margin: .5rem auto 1.8rem; color: #ffe9d8; }

/* ---------- Footer (bg image + black transparency) ---------- */
.site-footer {
  position: relative; color: #d6cfc2; padding: 4rem 0 1.5rem; font-size: .92rem;
  background: linear-gradient(rgba(0,0,0,.9), rgba(0,0,0,.92)), url('../images/mandap.jpg') center/cover no-repeat;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-family: var(--body); font-size: 1.05rem; margin-bottom: 1.2rem; letter-spacing: .5px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: .55rem; }
.footer-brand p { color: #a99a82; }
.footer-brand .crest { width: auto; height: 78px; margin-bottom: 1rem; }
.foot-social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--gold-light); margin-right: .5rem; transition: .25s; }
.foot-social a svg { width: 19px; height: 19px; fill: currentColor; }
.foot-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.foot-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding-top: 1.5rem; text-align: center; color: #8b7d68; font-size: .82rem; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 950;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.9rem; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: .25s; animation: wapulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wapulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5);} 50% { box-shadow: 0 8px 34px rgba(37,211,102,.85);} }

/* ---------- Nav dropdown (Services) ---------- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: .3rem; }
.has-dropdown > a::before {
  content: "\25BE"; order: 2; font-size: .7rem; transition: transform .2s; color: var(--saffron);
}
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 220px; list-style: none; margin: 0; padding: .4rem;
  background: var(--cream); border: 1px solid rgba(201,162,75,.3); border-radius: 12px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .22s ease; z-index: 950;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover > a::before { transform: rotate(180deg); }
.dropdown li { margin: 0; }
.dropdown a { display: block; padding: .65rem .9rem; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.dropdown a:hover { background: var(--cream-2); color: var(--saffron); }

/* ---------- "Our People" section with distinct background ---------- */
.people-section {
  position: relative; color: #fff;
  background: url('../images/gallery3.jpg') center/cover no-repeat;
}
.people-section::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,33,24,.86), rgba(30,22,15,.9));
}
.people-section .container { position: relative; z-index: 1; }
.people-section h2, .people-section h4 { color: #fff; }
.people-section .sec-head p { color: #e5d8bf; }
.people-section .feature { background: rgba(255,255,255,.07); border-top-color: var(--gold); }
.people-section .feature h4 { color: #fff; }
.people-section .feature p { color: #d8c9b0; }
.people-section .feature .ico { background: linear-gradient(135deg, rgba(194,162,74,.25), rgba(255,255,255,.08)); color: var(--gold-light); }

/* ---------- Filtered gallery (theorangeevents style) ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 0 auto 2.5rem;
}
.gallery-filters .filter-btn {
  background: transparent; border: 0; cursor: pointer; font-family: var(--head); font-size: 1.15rem;
  color: var(--ink); padding: .5rem 1.4rem; border-radius: 50px; transition: .25s; letter-spacing: .3px;
}
.gallery-filters .filter-btn:hover { color: var(--saffron); }
.gallery-filters .filter-btn.active { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); color: #fff; box-shadow: var(--shadow-sm); }

.filter-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.filter-gallery .g-item { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; cursor: pointer; }
.filter-gallery .g-item img { width: 100%; height: 300px; object-fit: cover; transition: .5s; }
.filter-gallery .g-item:hover img { transform: scale(1.08); }
.filter-gallery .g-item::after {
  content: "\1F50D"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(43,33,24,.45); color: #fff; font-size: 1.7rem; opacity: 0; transition: .3s;
}
.filter-gallery .g-item:hover::after { opacity: 1; }
.filter-gallery .g-item.hide { display: none; }
@keyframes gItemIn { from { opacity: 0; transform: translateY(20px) scale(.94); } to { opacity: 1; transform: none; } }
.filter-gallery .g-item.show-anim { animation: gItemIn .45s cubic-bezier(.22,.61,.36,1) both; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(20,14,8,.92); display: none; place-items: center; z-index: 999; padding: 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); }
.lightbox .close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2.4rem; cursor: pointer; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { background-attachment: scroll; }
}
@media (max-width: 760px) {
  .topbar .tb-left { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; position: relative; z-index: 960; }
  .menu {
    position: fixed; top: 0; right: 0; bottom: auto; left: auto;
    height: 100vh; height: 100dvh; overflow-y: auto;
    width: min(78vw, 320px); background: var(--cream);
    flex-direction: column; align-items: stretch; padding: 5rem 1.4rem; gap: .2rem;
    transform: translateX(100%); transition: .35s; box-shadow: var(--shadow); z-index: 940;
  }
  .menu.open { transform: none; }
  .menu > li > a { padding: .9rem; border-bottom: 1px solid rgba(201,162,75,.2); display: block; }
  .cards, .quotes, .features, .gallery-grid, .stats, .filter-gallery { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  form.inquiry .row { grid-template-columns: 1fr; }
  .stats-section, .people-section { background-attachment: scroll; }
  /* Dropdown inline inside mobile drawer */
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; background: transparent; padding: 0 0 0 1rem; display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > a::before { content: ""; }
}
@media (max-width: 460px) {
  .cards, .quotes, .features, .gallery-grid, .stats, .filter-gallery { grid-template-columns: 1fr; }
  .gallery-filters .filter-btn { font-size: 1rem; padding: .45rem 1rem; }
  .brand-text b { font-size: 1rem; }
  .brand-logo { height: 46px; }
}
