/* ═══════════════════════════════════════════════════════════
   LASHED BY MERCEN — about-style.css
   Inherits design language from index-style.css
   About page: intimate, story-driven, editorial luxury
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base (shared) ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #FF69B4;
  --pink-dim:    rgba(255,105,180,.12);
  --pink-mid:    rgba(255,105,180,.35);
  --black:       #0A0A0A;
  --black-2:     #111111;
  --black-3:     #161616;
  --black-card:  #141414;
  --white:       #FAFAFA;
  --white-60:    rgba(250,250,250,.6);
  --white-20:    rgba(250,250,250,.08);
  --border:      rgba(255,105,180,.15);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --nav-h:   80px;
  --section-gap: clamp(5rem, 10vw, 9rem);
  --container:   1200px;
  --radius:      4px;

  --ease-out: cubic-bezier(.22,1,.36,1);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ── Typography ── */
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; line-height: 1.15; letter-spacing: -.01em; color: var(--white); }
.section-title em { font-style: italic; color: var(--pink); }
.section-sub { color: var(--white-60); font-size: .95rem; font-weight: 300; margin-top: .75rem; letter-spacing: .02em; }
.label-small { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--pink); font-weight: 400; margin-bottom: .75rem; display: block; }
.body-text { color: var(--white-60); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.body-text strong { color: var(--white); font-weight: 400; }

/* ── Container / Section ── */
.container { width: 90%; max-width: var(--container); margin: 0 auto; }
.section { padding: var(--section-gap) 0; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-body); font-size: .82rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; padding: .85rem 2rem; border-radius: var(--radius); transition: all .3s var(--ease-out); cursor: pointer; border: none; white-space: nowrap; }
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--pink); color: #0A0A0A; font-weight: 500; box-shadow: 0 0 30px rgba(255,105,180,.25); }
.btn-primary:hover { background: #ff85c2; box-shadow: 0 0 50px rgba(255,105,180,.4); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-lg { padding: 1rem 2.5rem; font-size: .85rem; }
.btn-whatsapp { background: #25D366; color: #fff; font-size: .78rem; padding: .7rem 1.4rem; margin-top: 1rem; display: inline-flex; border-radius: var(--radius); gap: .5rem; align-items: center; text-decoration: none; font-family: var(--font-body); letter-spacing: .08em; text-transform: uppercase; font-weight: 400; transition: all .3s var(--ease-out); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── Reveal animations ── */
.reveal-block, .reveal-card, .reveal-img, .reveal-img-accent, .reveal-img-right {
  opacity: 0;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-block { transform: translateY(45px); }
.reveal-card  { transform: translateY(45px); transition-delay: calc(var(--i, 0) * 0.1s); }
.reveal-img   { transform: translateX(-50px); }
.reveal-img-accent { transform: translateX(30px) translateY(30px); transition-delay: .2s; }
.reveal-img-right { transform: translateX(50px); }
.revealed { opacity: 1 !important; transform: translate(0,0) !important; }

/* NAV moved to ../navbar.css (deduplicated) */

/* ══════════════════════════════════
   PAGE HERO
══════════════════════════════════ */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ph-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .13;
}
.ph-circle.c1 { width: 600px; height: 600px; background: var(--pink); top: -200px; left: -100px; animation: ph-float1 14s ease-in-out infinite alternate; }
.ph-circle.c2 { width: 350px; height: 350px; background: #8c1050; bottom: -80px; right: 10%; animation: ph-float2 18s ease-in-out infinite alternate; }
@keyframes ph-float1 { from { transform: translate(0,0); } to { transform: translate(40px, 60px); } }
@keyframes ph-float2 { from { transform: translate(0,0); } to { transform: translate(-30px,-40px); } }
.ph-line {
  position: absolute;
  background: var(--border);
}
.ph-line.l1 { top: 30%; left: 0; right: 0; height: 1px; }
.ph-line.l2 { top: 0; bottom: 0; left: 50%; width: 1px; opacity: .5; }

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 3rem;
}
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--pink);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fade-up .8s .2s var(--ease-out) forwards;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fade-up .9s .35s var(--ease-out) forwards;
}
.page-hero-title em { font-style: italic; color: var(--pink); }
.page-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--white-60);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0; animation: fade-up .9s .5s var(--ease-out) forwards;
}

.page-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0; animation: fade-up .8s 1s var(--ease-out) forwards;
}
.phs-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pink), 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; } }
.phs-label { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--white-60); }

/* ══════════════════════════════════
   QUOTE STRIP
══════════════════════════════════ */
.quote-strip {
  background: var(--black-2);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 40rem;
  color: rgba(255,105,180,.03);
  top: -10rem;
  left: -4rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.brand-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.bq-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--pink);
  line-height: .6;
  margin-bottom: 1rem;
  opacity: .5;
}
.brand-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.brand-quote p em { color: var(--pink); font-style: italic; }
.brand-quote footer { border-top: 1px solid var(--border); padding-top: 1.5rem; }
.brand-quote cite {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-60);
  font-style: normal;
  font-family: var(--font-body);
}

/* ══════════════════════════════════
   STORY SECTION
══════════════════════════════════ */
.story { background: var(--black); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.story-visual {
  position: relative;
  height: clamp(400px, 60vw, 620px);
}

/* Main portrait image */
.story-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 80%;
  border-radius: 4px 60px 4px 4px;
  overflow: hidden;
}
.story-img--main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Accent studio image */
.story-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 45%;
  z-index: 2;
  border-radius: 60px 4px 4px 4px;
  overflow: hidden;
  border: 3px solid var(--black);
}
.story-img--accent {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-badge {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 3;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,105,180,.35);
  animation: pulse-badge 3s ease-in-out infinite;
}
@keyframes pulse-badge { 0%,100% { box-shadow: 0 0 0 0 rgba(255,105,180,.4); } 50% { box-shadow: 0 0 0 14px rgba(255,105,180,0); } }
.badge-inner { text-align: center; }
.badge-num { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: #0A0A0A; line-height: 1; }
.badge-text { display: block; font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: #0A0A0A; font-weight: 500; margin-top: .2rem; }

.story-copy { display: flex; flex-direction: column; }
.story-copy .section-title { margin-bottom: 1.5rem; }
.story-milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.milestone {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s, padding-left .3s var(--ease-out);
}
.milestone-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--pink);
  min-width: 55px;
  flex-shrink: 0;
}
.milestone-text { font-size: .88rem; color: var(--white-60); }

/* ══════════════════════════════════
   MISSION + VALUES
══════════════════════════════════ */
.mission { background: var(--black-2); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.mission-statement {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.ms-icon { margin-bottom: 1.5rem; }
.ms-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}
.ms-text { color: var(--white-60); font-size: .9rem; line-height: 1.8; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.value-card:hover { border-color: var(--pink); transform: translateY(-5px); box-shadow: 0 15px 50px rgba(255,105,180,.1); }
.vc-icon { color: var(--pink); font-size: 1.1rem; margin-bottom: 1rem; opacity: .7; }
.vc-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; color: var(--white); margin-bottom: .75rem; }
.vc-text { color: var(--white-60); font-size: .85rem; line-height: 1.75; }

/* ══════════════════════════════════
   ARTIST PROFILE
══════════════════════════════════ */
.artist { background: var(--black); }
.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.artist-copy { display: flex; flex-direction: column; }
.artist-copy .section-title { margin-bottom: 1.5rem; }
.artist-creds {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .88rem;
  color: var(--white-60);
}
.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.artist-visual {
  position: relative;
  height: clamp(380px, 55vw, 580px);
}

/* Artist image sizing */
.artist-img {
  height: 100%;
  border-radius: 60px 4px 60px 4px;
  overflow: hidden;
}
.artist-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artist-quote-tag {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 180px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.aq-star { color: var(--pink); font-size: .9rem; }
.aq-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
}
.aq-text em { color: var(--pink); font-style: italic; }

/* ══════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════ */
.why-us { background: var(--black-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Why visual image sizing */
.why-visual {
  height: clamp(320px, 45vw, 520px);
  position: relative;
  border-radius: 4px 80px 4px 80px;
  overflow: hidden;
}
.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-visual-tag {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  background: var(--pink);
  color: #0A0A0A;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  z-index: 2;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s var(--ease-out);
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-item:hover { padding-left: .75rem; }
.wi-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(255,105,180,.25);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
  padding-top: .15rem;
  transition: color .3s;
}
.why-item:hover .wi-num { color: var(--pink); }
.wi-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--white); margin-bottom: .5rem; }
.wi-text { color: var(--white-60); font-size: .88rem; line-height: 1.75; }

/* ══════════════════════════════════
   BOOKING BANNER
══════════════════════════════════ */
.booking-banner {
  background: linear-gradient(135deg, #0f090e, #18080f);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,105,180,.1) 0%, transparent 65%);
  pointer-events: none;
}
.booking-banner-inner { text-align: center; position: relative; z-index: 1; }
.banner-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1rem; }
.banner-title em { color: var(--pink); font-style: italic; }
.banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--black); border-top: 1px solid var(--border); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-size: 1.2rem; margin-bottom: 1rem; display: inline-flex; }
.footer-tagline { color: var(--white-60); font-size: .85rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 260px; }
.footer-ig { display: inline-flex; align-items: center; gap: .5rem; color: var(--pink); text-decoration: none; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; transition: opacity .25s; }
.footer-ig:hover { opacity: .75; }
.footer-nav-title { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); margin-bottom: 1.25rem; }
.footer-nav ul, .footer-hours ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-nav a { color: var(--white-60); text-decoration: none; font-size: .85rem; transition: color .25s; }
.footer-nav a:hover { color: var(--pink); }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--white-60); }
.footer-hours span:first-child { color: var(--white); }
.footer-contact-link { display: block; color: var(--white-60); text-decoration: none; font-size: .85rem; margin-bottom: .5rem; transition: color .25s; }
.footer-contact-link:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--white-60); letter-spacing: .05em; }
.footer-credit a { color: var(--pink); text-decoration: none; }

/* ── Back to top ── */
.back-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 44px; height: 44px; background: var(--black-card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--pink); cursor: pointer; opacity: 0; transform: translateY(10px); transition: all .3s var(--ease-out); }
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--pink); color: #0A0A0A; border-color: var(--pink); }

/* ── Keyframes ── */
@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ══════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════ */
@media (max-width: 1100px) {
  .story-badge { right: 0; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-statement { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .story-grid, .artist-grid, .why-grid { grid-template-columns: 1fr; }
  .story-visual { height: 380px; order: -1; }
  .artist-visual { height: 360px; order: -1; }
  .why-visual { height: 280px; }
  .artist-quote-tag { left: 1rem; bottom: 1rem; }
  .story-badge { right: 1rem; top: 1rem; transform: none; }
  .why-visual-tag { right: 1rem; }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE
   ── Mobile nav matches index fix ──
══════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 70px; }

  .hamburger { display: flex; z-index: 1100; position: relative; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    z-index: 5;
    /* ── fix: use CSS var instead of hardcoded 100px ── */
    padding-top: calc(var(--nav-h) + 2rem);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1rem; letter-spacing: .2em; }
  .nav-cta { padding: .75rem 2rem; }

  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
  .banner-actions { flex-direction: column; align-items: center; }
  .story-img-accent { display: none; }
  .story-visual { height: 300px; }
}

@media (max-width: 480px) {
  .page-hero-title { font-size: clamp(2.8rem, 13vw, 4rem); }
  .brand-quote p { font-size: 1.25rem; }
  .back-top { bottom: 1.2rem; right: 1.2rem; }
}

/* TV / large screens */
@media (min-width: 1800px) {
  :root { --container: 1500px; }
  body { font-size: 18px; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  z-index: 1200;
}
.mobile-menu:not([hidden]) {
  display: flex;
}
.mobile-menu .nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--light-grey);
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  background: rgba(255, 105, 180, 0.08);
  color: var(--pink);
}
.mobile-menu .nav-cta {
  margin-top: 0.5rem;
  border: 1px solid var(--pink);
  color: var(--pink);
}
.mobile-menu .nav-cta:hover {
  background: var(--pink);
  color: var(--black);
}