/* =========================================================
   The Beard Banna — Redesign
   Royal Rajputana aesthetic: midnight + gold + saffron
   ========================================================= */

:root {
  --bg:        #100b0e;
  --bg-2:      #171014;
  --panel:     #1d141a;
  --panel-2:   #241821;
  --line:      rgba(201, 162, 91, 0.18);
  --line-soft: rgba(244, 236, 226, 0.08);

  --gold:      #c9a25b;
  --gold-2:    #e7c987;
  --saffron:   #d2703c;
  --saffron-2: #e8895a;
  --maroon:    #5a1a22;

  --text:      #f4ece2;
  --muted:     #b6a99c;
  --muted-2:   #8a7d72;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:  "Poppins", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1240px;
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle royal texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(210, 112, 60, 0.10), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(201, 162, 91, 0.07), transparent 55%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: .3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.narrow { max-width: 860px; }

section { position: relative; padding: 110px 0; z-index: 1; }
section.tight { padding: 70px 0; }

/* ---------- Decorative bits ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.kicker::before, .kicker.center::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.kicker.center::before { background: linear-gradient(90deg, var(--gold), transparent); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.section-head p { color: var(--muted); margin-top: 16px; }

.gold { color: var(--gold-2); }
.italic { font-style: italic; }

.divider {
  width: 70px; height: 2px; margin: 22px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.divider::after {
  content: "✦"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: var(--gold);
  background: var(--bg); padding: 0 10px; font-size: 11px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: .5px;
  padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #1a0f08;
  box-shadow: 0 10px 30px -10px rgba(210, 112, 60, .6);
}
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(210, 112, 60, .75); color: #1a0f08; }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(16, 11, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-text b { font-family: var(--serif); font-size: 21px; letter-spacing: .5px; }
.brand .brand-text span { font-size: 9.5px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-2); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: .4px; color: var(--text);
  padding: 6px 0; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-2); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-2); }

/* dropdown */
.has-drop > a::before { /* small caret */ }
.dropdown {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 190px; background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px; list-style: none;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
}
.has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; font-size: 13.5px; }
.dropdown a:hover { background: var(--panel-2); color: var(--gold-2); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: 0; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 80px; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,11,14,.55) 0%, rgba(16,11,14,.4) 40%, rgba(16,11,14,.95) 100%),
    linear-gradient(90deg, rgba(16,11,14,.7), transparent 60%);
}
.hero .container { z-index: 2; }
.hero-content { max-width: 760px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.02; margin: 20px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-2);
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 3px;
  animation: scrolly 1.6s infinite var(--ease);
}
@keyframes scrolly { 0%{opacity:0; top:7px} 40%{opacity:1} 80%{opacity:0; top:18px} 100%{opacity:0} }

/* ---------- Subheader (interior pages) ---------- */
.subheader { padding: 200px 0 90px; text-align: center; overflow: hidden; }
.subheader-media { position: absolute; inset: 0; z-index: 0; }
.subheader-media img { width: 100%; height: 100%; object-fit: cover; }
.subheader-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,11,14,.7), rgba(16,11,14,.6) 50%, var(--bg) 100%);
}
.subheader h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.breadcrumb { margin-top: 14px; color: var(--muted); font-size: 13px; letter-spacing: 1px; }
.breadcrumb a:hover { color: var(--gold-2); }

/* ---------- Intro statement ---------- */
.statement p {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.5; text-align: center; color: var(--text); font-weight: 500;
}
.statement .highlight { color: var(--gold-2); font-style: italic; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.split-media .frame img { width: 100%; }
.split-media .badge {
  position: absolute; bottom: -26px; right: -22px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 18px 24px; text-align: center; box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
}
.split-media .badge b { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); display: block; }
.split-media .badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.split-media .deco-ring {
  position: absolute; top: -28px; left: -28px; width: 120px; height: 120px;
  border: 1px solid var(--line); border-radius: 50%; z-index: -1;
}
.split-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 6px; }
.split-text p { color: var(--muted); margin-top: 18px; }
.split-text .btn { margin-top: 30px; }

/* ---------- Feature cards (about values) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.value-card {
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 38px 34px; transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--line); }
.value-card .num { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); margin-bottom: 14px; }
.value-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 15px; }

/* ---------- Products grid ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line-soft); background: var(--panel);
}
.product-card .pc-img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-card:hover .pc-img img { transform: scale(1.07); }
.product-card .pc-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16,11,14,.92));
}
.product-card .pc-body {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2;
}
.product-card .pc-body span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-2); }
.product-card .pc-body h3 { font-size: 1.5rem; margin-top: 6px; }
.product-card .pc-body p { color: var(--muted); font-size: 13.5px; max-height: 0; opacity: 0; overflow: hidden; transition: all .45s var(--ease); }
.product-card:hover .pc-body p { max-height: 80px; opacity: 1; margin-top: 8px; }

/* ---------- Celebrities carousel ---------- */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 24px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.celeb-card {
  flex: 0 0 340px; scroll-snap-align: center; position: relative;
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft);
}
.celeb-card img { width: 100%; height: 440px; object-fit: cover; transition: transform .8s var(--ease); filter: saturate(.95); }
.celeb-card:hover img { transform: scale(1.06); }
.celeb-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(16,11,14,.95)); }
.celeb-card .celeb-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; }
.celeb-card .celeb-info .no { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); opacity: .5; line-height: 1; }
.celeb-card .celeb-info h4 { font-size: 1.15rem; margin-top: 6px; }
.carousel-nav { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }
.carousel-nav button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--text); cursor: pointer; font-size: 18px;
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.carousel-nav button:hover { background: var(--gold); color: #1a0f08; border-color: var(--gold); }

/* ---------- Info cards (hours / location) ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.info-card {
  background: linear-gradient(160deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 44px 40px;
  text-align: center;
}
.info-card h3 { font-size: 1.9rem; }
.info-row { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px dashed var(--line-soft); text-align: left; }
.info-row:last-child { border-bottom: 0; }
.info-row .k { color: var(--muted); font-size: 14px; }
.info-row .v { color: var(--gold-2); font-weight: 500; font-size: 14px; text-align: right; }

/* ---------- Marquee ---------- */
.marquee { padding: 46px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; background: var(--bg-2); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3rem); font-style: italic; color: var(--text); padding: 0 34px; display: inline-flex; align-items: center; }
.marquee-item::after { content: "✦"; font-style: normal; font-size: 1rem; color: var(--gold); margin-left: 68px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-flow: dense; }
.g-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; border: 1px solid var(--line-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after {
  content: "⤢"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(16,11,14,.45); color: var(--gold-2); font-size: 1.6rem;
  opacity: 0; transition: opacity .4s var(--ease);
}
.g-item:hover::after { opacity: 1; }
.g-item.span-4 { grid-column: span 4; aspect-ratio: 3/4; }
.g-item.span-6 { grid-column: span 6; aspect-ratio: 16/10; }
.g-item.span-8 { grid-column: span 8; aspect-ratio: 16/9; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(8,5,7,.95);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; border: 1px solid var(--line); }
.lightbox .lb-close { position: absolute; top: 24px; right: 30px; font-size: 2rem; color: var(--text); cursor: pointer; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.6rem; color: var(--text); cursor: pointer; padding: 20px; user-select: none; opacity: .7; transition: opacity .3s; }
.lightbox .lb-nav:hover { opacity: 1; color: var(--gold-2); }
.lightbox .lb-prev { left: 14px; } .lightbox .lb-next { right: 14px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .ci-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-item:first-child { padding-top: 0; }
.ci-icon { flex: 0 0 50px; height: 50px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-2); font-size: 1.2rem; }
.ci-text b { display: block; font-family: var(--serif); font-size: 1.15rem; margin-bottom: 2px; }
.ci-text span, .ci-text a { color: var(--muted); font-size: 14.5px; }
.ci-text a:hover { color: var(--gold-2); }

.form-card { background: linear-gradient(160deg, var(--panel), var(--bg-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 40px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 14px 16px; color: var(--text); font-family: var(--sans); font-size: 15px;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold-2); display: block; }
.stat span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 80px 0 30px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-soft); }
.footer-grid h4 { font-size: 1.2rem; margin-bottom: 22px; color: var(--gold-2); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14.5px; max-width: 320px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--muted); font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-2); }
.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text); transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--gold); color: #1a0f08; border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; color: var(--muted-2); font-size: 13px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #1a0f08;
  display: grid; place-items: center; font-size: 1.2rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .35s var(--ease);
  box-shadow: 0 12px 30px -8px rgba(210,112,60,.6); border: 0;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; font-size: 1.5rem;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--bg);
  padding: 110px 32px 40px; transform: translateX(100%);
  transition: transform .45s var(--ease); display: flex; flex-direction: column; gap: 6px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--serif); font-size: 1.7rem; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-nav a:hover { color: var(--gold-2); }
.mobile-nav .btn { margin-top: 26px; justify-content: center; }
.mobile-nav .m-social { display: flex; gap: 14px; margin-top: auto; }
.mobile-nav .m-social a { font-size: 1.2rem; border-bottom: 0; padding: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 860px) {
  section { padding: 80px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .split-media .badge { right: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .g-item.span-4, .g-item.span-6, .g-item.span-8 { grid-column: span 6; aspect-ratio: 1; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .g-item.span-4, .g-item.span-6, .g-item.span-8 { grid-column: span 12; aspect-ratio: 4/3; }
  .brand .brand-text b { font-size: 18px; }
  .hero { padding-top: 100px; }
}
