/* ════════════════════════════════════════
   NIKHAAR BEAUTY PARLOUR — STYLESHEET
   Palette: #59171b (Burgundy) · #fed7b8 (Blush Peach)
   ════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --burgundy:     #59171b;
  --burgundy-dk:  #3a0d10;
  --burgundy-md:  #7a2228;
  --burgundy-lt:  #a03040;
  --peach:        #fed7b8;
  --peach-lt:     #fff0e6;
  --peach-dk:     #e8b898;
  --cream:        #fdf6f0;
  --white:        #ffffff;
  --text-dark:    #1a0608;
  --text-mid:     #4a2025;
  --text-light:   rgba(255,255,255,0.85);

  /* Glass */
  --glass-bg:     rgba(255, 215, 190, 0.12);
  --glass-border: rgba(254, 215, 184, 0.25);
  --glass-shadow: 0 8px 32px rgba(89, 23, 27, 0.18);

  /* Type */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 7rem;
  --radius:       1.25rem;
  --radius-sm:    0.75rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--burgundy-dk);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--burgundy-dk); }
::-webkit-scrollbar-thumb { background: var(--burgundy-lt); border-radius: 3px; }

/* ══ GLASSMORPHISM ══ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(89, 23, 27, 0.28);
}

/* ══ LAYOUT ══ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: var(--section-gap) 0; }

/* ══ TYPOGRAPHY ══ */
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach-dk);
  margin-bottom: 0.8rem;
}

.section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--peach-lt);
  margin-bottom: 1rem;
}
.section__heading em {
  font-style: italic;
  color: var(--peach);
}

.section__sub {
  max-width: 52ch;
  color: rgba(254, 215, 184, 0.7);
  font-size: 1rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__header .section__sub { margin: 0 auto; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dk) 100%);
  color: var(--burgundy-dk);
}
.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(254, 215, 184, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--peach);
  border: 1px solid rgba(254, 215, 184, 0.4);
}
.btn--ghost:hover {
  background: rgba(254, 215, 184, 0.1);
  border-color: var(--peach);
}

.btn--light {
  background: var(--white);
  color: var(--burgundy);
}
.btn--light:hover {
  background: var(--peach-lt);
  box-shadow: 0 8px 28px rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ══ NAV ══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.3s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(58, 13, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--peach);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo small {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--peach-dk);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__logo-n { font-size: 1.6rem; line-height: 0.9; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.87rem;
  font-weight: 400;
  color: rgba(254, 215, 184, 0.8);
  transition: color 0.25s;
  letter-spacing: 0.03em;
}
.nav__links a:hover { color: var(--peach); }

.nav__cta {
  background: linear-gradient(135deg, var(--peach), var(--peach-dk));
  color: var(--burgundy-dk) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}
.nav__cta:hover {
  box-shadow: 0 6px 20px rgba(254, 215, 184, 0.4) !important;
  transform: translateY(-2px);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--peach);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, #7a2228 0%, var(--burgundy-dk) 50%),
              radial-gradient(ellipse at 80% 80%, #59171b 0%, #1a0608 100%);
  padding: 6rem 1.5rem 4rem;
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero__bg-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(254,215,184,0.18) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-duration: 9s;
}
.hero__bg-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,48,64,0.3) 0%, transparent 70%);
  bottom: -5%; right: -5%;
  animation-duration: 11s; animation-delay: -3s;
}
.hero__bg-orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(254,215,184,0.1) 0%, transparent 70%);
  top: 50%; left: 60%;
  animation-duration: 7s; animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-15px, 10px) scale(0.97); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: var(--peach-dk);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--peach-lt);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(254, 215, 184, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero glass badge */
.hero__badge {
  position: absolute;
  bottom: 10%;
  right: 5%;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--peach);
  letter-spacing: 0.08em;
  z-index: 2;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(254,215,184,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(254,215,184,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══ MARQUEE ══ */
.marquee-strip {
  background: linear-gradient(90deg, var(--burgundy-md), var(--burgundy), var(--burgundy-md));
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(254,215,184,0.1);
  border-bottom: 1px solid rgba(254,215,184,0.1);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(254,215,184,0.8);
  text-transform: uppercase;
}
.marquee-track .dot {
  color: var(--peach-dk);
  font-size: 0.6rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ ABOUT ══ */
.about {
  background: linear-gradient(180deg, #1a0608 0%, #2a0c0f 100%);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__frame {
  padding: 3rem 2rem;
  text-align: center;
}
.about__icon-bloom {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  animation: spin-slow 20s linear infinite;
  display: inline-block;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about__frame-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--peach);
  line-height: 1.6;
}
.about__orb {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(254,215,184,0.12), transparent);
  border-radius: 50%;
  bottom: -3rem; right: -3rem;
  filter: blur(30px);
  pointer-events: none;
}

.about__text p {
  color: rgba(254, 215, 184, 0.7);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  max-width: 52ch;
}
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--peach);
  backdrop-filter: blur(8px);
}

/* ══ SERVICES ══ */
.services {
  background: #1a0608;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.service-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition-delay: var(--delay, 0s);
}
.service-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--peach);
  margin-bottom: 0.7rem;
}
.service-card p {
  font-size: 0.82rem;
  color: rgba(254, 215, 184, 0.6);
  line-height: 1.65;
}

/* ══ WHY ══ */
.why {
  background: linear-gradient(180deg, #1a0608 0%, #2a0c0f 100%);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why__item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(254,215,184,0.15);
}
.why__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(254,215,184,0.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.why__item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--peach);
  margin-bottom: 0.5rem;
}
.why__item p {
  font-size: 0.85rem;
  color: rgba(254,215,184,0.6);
  line-height: 1.65;
}

/* ══ GALLERY ══ */
.gallery {
  background: #1a0608;
}
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__tile {
  min-height: 200px;
  overflow: hidden;
  position: relative;
}
.gallery__tile--tall { grid-row: span 2; }
.gallery__tile--wide { grid-column: span 2; }

.gallery__placeholder {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, rgba(89,23,27,0.6), rgba(254,215,184,0.08));
}
.gallery__placeholder span { font-size: 2.5rem; }
.gallery__placeholder p {
  font-size: 0.8rem;
  color: rgba(254,215,184,0.6);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.gallery__note {
  text-align: center;
  margin-top: 2rem;
  color: rgba(254,215,184,0.5);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ══ CTA BANNER ══ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--burgundy-md) 0%, var(--burgundy-dk) 50%, var(--burgundy) 100%);
  text-align: center;
}
.cta-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.cta-banner__orb--1 {
  width: 400px; height: 400px;
  background: rgba(254,215,184,0.12);
  top: -100px; left: -100px;
}
.cta-banner__orb--2 {
  width: 350px; height: 350px;
  background: rgba(254,215,184,0.08);
  bottom: -80px; right: -80px;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner__inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-banner__inner h2 em {
  font-style: italic;
  color: var(--peach);
}
.cta-banner__inner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ══ CONTACT ══ */
.contact {
  background: linear-gradient(180deg, #2a0c0f 0%, #1a0608 100%);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__card {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact__card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--peach);
  margin-bottom: 0.2rem;
}
.contact__card p {
  font-size: 0.85rem;
  color: rgba(254,215,184,0.65);
  line-height: 1.55;
}
.link-arrow {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--peach-dk);
  transition: color 0.25s, transform 0.25s;
}
.link-arrow:hover { color: var(--peach); transform: translateX(4px); display: inline-block; }

/* WhatsApp CTA card */
.whatsapp-cta {
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
}
.whatsapp-cta:hover {
  border-color: rgba(37,211,102,0.4);
  box-shadow: 0 8px 30px rgba(37,211,102,0.12);
}
.whatsapp-cta div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.whatsapp-cta strong {
  color: var(--peach);
  font-size: 0.95rem;
}
.whatsapp-cta span {
  font-size: 0.78rem;
  color: rgba(254,215,184,0.55);
}
.whatsapp-cta .arrow { color: rgba(254,215,184,0.4); flex-shrink: 0; }
.whatsapp-cta:hover .arrow { color: var(--peach); transform: translateX(4px); }

/* ══ FOOTER ══ */
.footer {
  background: var(--burgundy-dk);
  border-top: 1px solid rgba(254,215,184,0.1);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254,215,184,0.08);
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--peach);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer__brand small {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--peach-dk);
  text-transform: uppercase;
}
.footer__brand p {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  color: rgba(254,215,184,0.55);
  line-height: 1.65;
  font-weight: 300;
  max-width: 36ch;
  margin-top: 0.5rem;
}
.footer__links h5,
.footer__services h5 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-dk);
  margin-bottom: 1.2rem;
}
.footer__links ul li,
.footer__services ul li {
  margin-bottom: 0.65rem;
}
.footer__links ul li a {
  font-size: 0.85rem;
  color: rgba(254,215,184,0.6);
  transition: color 0.25s;
}
.footer__links ul li a:hover { color: var(--peach); }
.footer__services ul li {
  font-size: 0.85rem;
  color: rgba(254,215,184,0.5);
}

.footer__bottom {
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(254,215,184,0.35);
  line-height: 1.6;
}
.demo-notice {
  margin-top: 0.5rem;
  font-size: 0.72rem !important;
  color: rgba(254,215,184,0.25) !important;
}

/* ══ FLOATING WHATSAPP ══ */
.fab-whatsapp {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s ease;
  animation: fab-bounce 3s ease-in-out infinite 5s;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══ ANIMATIONS ══ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }
.fade-up:nth-child(4) { animation-delay: 0.8s; }
.fade-up:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual { max-width: 400px; margin: 0 auto; }
  .gallery__mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery__tile--tall { grid-row: span 1; }
  .gallery__tile--wide { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --section-gap: 5rem; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(26,6,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 999;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.2rem; }
  .nav__burger { display: flex; z-index: 1000; }

  .hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero__badge { display: none; }

  .about__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .gallery__mosaic { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.6rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__mosaic { grid-template-columns: 1fr; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
