/* ==========================================================================
   Brandz Store — Stylesheet
   A multi-brand fashion store in Vasai West, Maharashtra.
   Design tokens are declared once below and used throughout.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Mono:wght@400;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* --- Color tokens --- */
  --ink:        #111210;   /* near-black, primary text & dark surfaces */
  --ink-soft:   #2A2B27;   /* lifted dark surface (cards on ink) */
  --paper:      #F6F4EC;   /* warm off-white, page background */
  --paper-2:    #FFFFFF;   /* card surfaces on paper */
  --signal:     #5BFA0C;   /* logo neon green — sparing, high-energy accent */
  --tag:        #2E8C03;   /* deep tag-green — solid buttons/badges, legible with white */
  --tag-dark:   #226602;   /* hover state for tag-green */
  --slate:      #6B6A63;   /* warm grey, secondary text */
  --line:       #E4DFCF;   /* hairline borders/dividers */
  --cream-text: #F1EFE4;   /* off-white text on dark surfaces */

  /* --- Type --- */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  /* --- Layout --- */
  --container: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 40px -22px rgba(17,18,16,0.35);
  --shadow-card: 0 10px 26px -16px rgba(17,18,16,0.28);

  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,p{ margin: 0; }
button{ font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select{ font: inherit; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible{
  outline: 3px solid var(--tag);
  outline-offset: 3px;
  border-radius: 4px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tag-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 2px;
  background: var(--tag);
  display: inline-block;
}

.section-head{
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head h2{
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  margin-top: 12px;
  text-transform: uppercase;
}
.section-head p{
  margin-top: 14px;
  color: var(--slate);
  font-size: 1.02rem;
  max-width: 52ch;
}
.section-head.center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow::before{ display:none; }

section{ padding: 86px 0; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color .18s ease, border-color .18s ease;
}
.btn svg{ width: 19px; height: 19px; flex: none; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-primary{
  background: var(--tag);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ background: var(--tag-dark); }

.btn-outline{
  background: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
}
.btn-outline:hover{ background: rgba(255,255,255,0.08); }

.btn-outline.on-paper{
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline.on-paper:hover{ background: var(--ink); color: var(--paper); }

.btn-ghost{
  background: var(--ink);
  color: var(--paper);
}
.btn-ghost:hover{ background: var(--ink-soft); }

.btn-sm{ padding: 10px 18px; font-size: 0.82rem; }

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(246,244,236,0.7);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled{
  background: rgba(246,244,236,0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(17,18,16,0.5);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand{
  display: flex;
  align-items: center;
}
.brand img{ height: 30px; width: auto; }

.main-nav{ display: flex; }
.main-nav ul{ display: flex; align-items: center; gap: 34px; }
.main-nav a{
  font-size: 0.93rem;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:'';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--tag);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after{ transform: scaleX(1); }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.header-actions .btn-primary{ padding: 11px 20px; font-size: 0.84rem; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
}
.nav-toggle svg{ width: 22px; height: 22px; }
.nav-toggle .icon-close{ display: none; }
.nav-toggle.is-open .icon-menu{ display:none; }
.nav-toggle.is-open .icon-close{ display:block; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: var(--cream-text);
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 64% 50%;
}
.hero-media::after{
  content:'';
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,14,11,0.94) 6%, rgba(13,14,11,0.82) 34%, rgba(13,14,11,0.42) 64%, rgba(13,14,11,0.18) 100%),
    linear-gradient(0deg, rgba(13,14,11,0.55), rgba(13,14,11,0) 38%);
}
.hero-inner{
  position: relative;
  z-index: 2;
  padding: 70px 0 120px;
}
.hero-content{ max-width: 640px; }
.hero .eyebrow{ color: var(--signal); }
.hero .eyebrow::before{ background: var(--signal); }

.hero h1{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  line-height: 0.98;
  margin-top: 18px;
  letter-spacing: 0.005em;
}
.hero h1 .accent{ color: var(--signal); }

.hero-sub{
  margin-top: 22px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--cream-text);
  opacity: 0.88;
  max-width: 46ch;
}
.hero-actions{
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions .btn-outline{ border-color: rgba(241,239,228,0.55); }
.hero-actions .btn-outline:hover{ border-color: var(--cream-text); }

/* Hangtag signature badge */
.hangtag{
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 13%;
  width: 168px;
  aspect-ratio: 1 / 1.04;
  background: var(--signal);
  color: var(--ink);
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 28% 100%, 0% 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  box-shadow: 0 20px 36px -14px rgba(0,0,0,0.55);
  padding: 6px 10px 6px 26px;
}
.hangtag .ring{
  width: 13px; height: 13px;
  border: 2.2px solid var(--ink);
  border-radius: 50%;
  margin-bottom: 10px;
}
.hangtag span{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.86rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.scroll-cue{
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-text);
  opacity: 0.75;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-cue .stem{
  width: 1px; height: 34px;
  background: linear-gradient(var(--cream-text), transparent);
  animation: scrollcue 2.1s ease-in-out infinite;
}
@keyframes scrollcue{
  0%{ transform: scaleY(0.3); transform-origin: top; opacity: .3; }
  50%{ transform: scaleY(1); transform-origin: top; opacity: 1; }
  100%{ transform: scaleY(0.3); transform-origin: bottom; opacity: .3; }
}

/* ---------- Marquee strip ---------- */
.marquee{
  background: var(--tag);
  color: var(--cream-text);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  animation: marquee 26s linear infinite;
  padding: 16px 0;
}
.marquee-track span{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee-track span::after{
  content: '\2022';
  color: var(--signal);
  font-size: 1.1rem;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in-view{ opacity: 1; transform: translateY(0); }
[data-reveal-group] [data-reveal]:nth-child(1){ transition-delay: .02s; }
[data-reveal-group] [data-reveal]:nth-child(2){ transition-delay: .09s; }
[data-reveal-group] [data-reveal]:nth-child(3){ transition-delay: .16s; }
[data-reveal-group] [data-reveal]:nth-child(4){ transition-delay: .23s; }
[data-reveal-group] [data-reveal]:nth-child(5){ transition-delay: .30s; }
[data-reveal-group] [data-reveal]:nth-child(6){ transition-delay: .37s; }

/* ---------- Category grid ---------- */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-card{
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 22px 26px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover{
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.cat-card::before{
  content:'';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 0 0;
  border-color: transparent var(--signal) transparent transparent;
  transition: border-width .25s ease;
}
.cat-card:hover::before{ border-width: 0 38px 38px 0; }
.cat-icon{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.cat-icon svg{ width: 27px; height: 27px; color: var(--ink); }
.cat-card h3{
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.cat-card p{
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--slate);
}

/* ---------- Gallery / Slideshow ---------- */
.slideshow{
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  height: clamp(300px, 40vw, 460px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.slides-track{
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.65,0,.24,1);
  will-change: transform;
}
.slide{
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.slide img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 56px 26px 22px;
  background: linear-gradient(0deg, rgba(13,14,11,0.85), rgba(13,14,11,0));
  color: var(--cream-text);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.slide-num{ color: var(--signal); margin-right: 10px; }

.slide-arrow{
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(17,18,16,0.45);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background-color .2s ease;
}
.slide-arrow:hover{ background: rgba(17,18,16,0.75); }
.slide-arrow svg{ width: 20px; height: 20px; }
.slide-prev{ left: 16px; }
.slide-next{ right: 16px; }

.slide-dots{
  position: absolute;
  z-index: 3;
  bottom: 20px;
  right: 26px;
  display: flex;
  gap: 8px;
}
.slide-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background-color .2s ease, transform .2s ease, width .2s ease;
}
.slide-dot.is-active{
  background: var(--signal);
  width: 22px;
  border-radius: 5px;
}

/* ---------- About ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-copy p{ color: var(--slate); font-size: 1.04rem; max-width: 54ch; }
.about-copy .section-head{ margin-bottom: 22px; }
.about-copy .lead{
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--tag);
  padding-left: 18px;
  margin: 0 0 20px;
}

.stat-row{
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stat-row .num{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tag-dark);
  display: block;
}
.stat-row .label{
  margin-top: 4px;
  font-size: 0.84rem;
  color: var(--slate);
}

.about-photo{
  position: relative;
}
.about-photo .frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.about-photo .frame img{ width: 100%; height: 100%; object-fit: cover; }
.about-photo .pin{
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 999px;
  transform: rotate(-6deg);
  box-shadow: 0 14px 26px -12px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-photo .pin svg{ width: 15px; height: 15px; color: var(--signal); }

/* ---------- Why us ---------- */
.why-us{ background: var(--ink); color: var(--cream-text); }
.why-us .eyebrow{ color: var(--signal); }
.why-us .eyebrow::before{ background: var(--signal); }
.why-us .section-head p{ color: rgba(241,239,228,0.7); }

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card{
  background: var(--ink-soft);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid rgba(241,239,228,0.08);
}
.why-card .num{
  font-family: var(--font-mono);
  color: var(--signal);
  font-weight: 700;
  font-size: 0.86rem;
}
.why-card h3{
  margin-top: 14px;
  font-size: 1.04rem;
  font-weight: 700;
}
.why-card p{
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(241,239,228,0.66);
}

/* ---------- Visit ---------- */
.visit-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.visit-card{
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.visit-row{
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.visit-row:first-of-type{ border-top: none; padding-top: 0; }
.visit-row .ic{
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.visit-row .ic svg{ width: 19px; height: 19px; color: var(--tag-dark); }
.visit-row h4{
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-family: var(--font-mono);
  font-weight: 700;
}
.visit-row p, .visit-row a.plain{
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 600;
}
.visit-row a.plain:hover{ color: var(--tag-dark); }
.visit-actions{
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  height: 100%;
  min-height: 420px;
}
.map-frame iframe{
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ---------- CTA strip ---------- */
.cta-strip{
  background: var(--signal);
  color: var(--ink);
}
.cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-inner h2{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  max-width: 14ch;
}
.cta-inner .btn-ghost:hover{ background: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(241,239,228,0.78);
  padding: 70px 0 0;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(241,239,228,0.12);
}
.footer-logo{
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--cream-text);
  display: flex;
  align-items: center;
  gap: 2px;
}
.footer-logo .dot{
  color: var(--signal);
  font-size: 1.6rem;
  line-height: 0;
  margin: 0 1px 0 2px;
}
.footer-logo .store{ color: var(--signal); }
.footer-tagline{
  margin-top: 14px;
  font-size: 0.92rem;
  max-width: 30ch;
  color: rgba(241,239,228,0.62);
}
.footer-social{
  margin-top: 22px;
  display: flex;
  gap: 10px;
}
.footer-social a{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(241,239,228,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a svg{ width: 17px; height: 17px; }
.footer-social a:hover{ background: var(--signal); border-color: var(--signal); color: var(--ink); transform: translateY(-2px); }

.footer-col h5{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(241,239,228,0.45);
  margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p{ font-size: 0.92rem; }
.footer-col a:hover{ color: var(--signal); }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(241,239,228,0.45);
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--tag);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(46,140,3,0.65);
  transition: transform .2s ease, background-color .2s ease;
}
.float-whatsapp svg{ width: 27px; height: 27px; }
.float-whatsapp:hover{ transform: translateY(-3px) scale(1.04); background: var(--tag-dark); }
.float-whatsapp .pulse{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--tag);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse{
  0%{ transform: scale(1); opacity: .65; }
  100%{ transform: scale(1.7); opacity: 0; }
}

/* ===================== Responsive ===================== */
@media (max-width: 980px){
  .cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .about-photo{ max-width: 420px; }
  .visit-grid{ grid-template-columns: 1fr; gap: 36px; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top .footer-col:last-child{ grid-column: span 2; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 8px 24px 22px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    box-shadow: 0 18px 30px -22px rgba(0,0,0,0.4);
  }
  .main-nav.is-open{
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .main-nav ul{ flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .main-nav a{ display: block; padding: 13px 4px; width: 100%; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav .btn{ margin-top: 14px; width: 100%; }
  .nav-toggle{ display: flex; }
  .header-actions .btn-primary span{ display:none; }
  .header-actions .btn-primary{ width: 42px; height: 42px; padding: 0; border-radius: 50%; }
}

@media (max-width: 760px){
  section{ padding: 64px 0; }
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-top .footer-col:last-child{ grid-column: span 1; }
  .hangtag{ width: 132px; right: 6%; bottom: 9%; }
  .cta-inner{ flex-direction: column; align-items: flex-start; }
  .visit-card{ padding: 26px; }
}

@media (max-width: 540px){
  .cat-grid{ grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-card{ padding: 22px 16px 18px; }
  .footer-top{ grid-template-columns: 1fr; }
  .stat-row{ grid-template-columns: 1fr; gap: 14px; }
  .hero-actions .btn{ width: 100%; }
  .hangtag{ display: none; }
}
