/* ============================================
   TIPSY CHICKS BARTENDING SERVICES LLC
   Mobile Bartending - Jacksonville, FL

   Palette:
     --bg:           #0a0a0f (near-black)
     --bg-alt:       #12121a (card bg)
     --bg-light:     #1a1a25 (lighter dark)
     --magenta:      #FF2D8A (primary)
     --magenta-dark: #C71585 (deep magenta)
     --pink:         #FF69B4 (hot pink)
     --pink-soft:    #FFB6C1 (light pink)
     --gold:         #FFD700 (gold sparkle)
     --gold-warm:    #FFB347 (warm gold)
     --cream:        #FFF5F9 (warm light)
     --text:         #F0E6EC (primary text)
     --text-muted:   #9E8A94 (muted text)

   Fonts:
     Display: Playfair Display (serif, elegant)
     Body: Outfit (modern, clean)
     Script: Sacramento (cursive, fun/feminine)
   ============================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-alt: #12121a;
  --bg-light: #1a1a25;
  --magenta: #FF2D8A;
  --magenta-dark: #C71585;
  --magenta-glow: rgba(255, 45, 138, 0.15);
  --pink: #FF69B4;
  --pink-soft: #FFB6C1;
  --gold: #FFD700;
  --gold-warm: #FFB347;
  --cream: #FFF5F9;
  --text: #F0E6EC;
  --text-muted: #9E8A94;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

em {
  font-family: 'Sacramento', cursive;
  font-style: normal;
  font-weight: 400;
  color: var(--magenta);
  font-size: 1.15em;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--cream);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle--light {
  color: rgba(240, 230, 236, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 138, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 45, 138, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 45, 138, 0.1);
  border-color: var(--magenta);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-warm));
  color: #1a0a10;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.45);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes gentlePulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes bubbleRise {
  0% { opacity: 0.6; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-60px) scale(0.3); }
}

@keyframes drawStroke {
  to { stroke-dashoffset: 0; }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 45, 138, 0.08);
  transition: all var(--transition);
}

.nav--scrolled {
  height: 64px;
  background: rgba(10, 10, 15, 0.95);
  border-bottom-color: rgba(255, 45, 138, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-tipsy {
  font-family: 'Sacramento', cursive;
  font-size: 1.5rem;
  color: var(--magenta);
  margin-bottom: -4px;
}

.nav__logo-chicks {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--cream);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.nav__cta:hover {
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.4);
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.nav__hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__link {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--magenta);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(199, 21, 133, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
              var(--bg);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 45, 138, 0.12), transparent);
  top: 10%;
  left: -5%;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
  top: 20%;
  right: 5%;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(199, 21, 133, 0.1), transparent);
  bottom: 15%;
  left: 40%;
}

/* Sparkle particles */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
}

.sparkle--1 { top: 15%; left: 10%; animation: sparkle 3s ease-in-out infinite; }
.sparkle--2 { top: 25%; right: 15%; animation: sparkle 4s ease-in-out 0.5s infinite; }
.sparkle--3 { top: 40%; left: 25%; animation: sparkle 3.5s ease-in-out 1s infinite; }
.sparkle--4 { top: 60%; right: 20%; animation: sparkle 4.5s ease-in-out 0.3s infinite; }
.sparkle--5 { top: 70%; left: 8%; animation: sparkle 3s ease-in-out 1.5s infinite; }
.sparkle--6 { top: 20%; left: 55%; animation: sparkle 4s ease-in-out 0.8s infinite; }
.sparkle--7 { bottom: 25%; right: 30%; animation: sparkle 3.5s ease-in-out 2s infinite; }
.sparkle--8 { bottom: 35%; left: 45%; animation: sparkle 4s ease-in-out 1.2s infinite; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--magenta-glow);
  border: 1px solid rgba(255, 45, 138, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  animation: gentlePulse 3s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero SVG Illustration */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.hero__bubble--1 { animation: bubbleRise 3s ease-in-out infinite; }
.hero__bubble--2 { animation: bubbleRise 3.5s ease-in-out 0.5s infinite; }
.hero__bubble--3 { animation: bubbleRise 4s ease-in-out 1s infinite; }
.hero__bubble--4 { animation: bubbleRise 3.2s ease-in-out 1.5s infinite; }
.hero__bubble--5 { animation: bubbleRise 3.8s ease-in-out 2s infinite; }

.hero__float--1 { animation: float 4s ease-in-out infinite; }
.hero__float--2 { animation: float 5s ease-in-out 1s infinite; }
.hero__float--3 { animation: float 4.5s ease-in-out 0.5s infinite; }

.hero__star--1 { animation: starTwinkle 2s ease-in-out infinite; }
.hero__star--2 { animation: starTwinkle 3s ease-in-out 0.7s infinite; }
.hero__star--3 { animation: starTwinkle 2.5s ease-in-out 1.4s infinite; }
.hero__star--4 { animation: starTwinkle 3.5s ease-in-out 0.3s infinite; }

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 48px;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 32px;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(255, 45, 138, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number,
.hero__stat-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
}

.hero__stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--magenta);
}

.hero__stat-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-top: 2px;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 45, 138, 0.3), transparent);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 2px;
  height: 32px;
  background: rgba(255, 45, 138, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 2px;
  height: 8px;
  background: var(--magenta);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

/* ---- MARQUEE ---- */
.marquee {
  padding: 16px 0;
  background: linear-gradient(135deg, var(--magenta-dark), var(--magenta));
  overflow: hidden;
}

.marquee__track {
  overflow: hidden;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__content span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.marquee__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ---- ABOUT ---- */
.about {
  padding: 100px 0;
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.about__quote {
  font-family: 'Sacramento', cursive;
  font-size: 1.5rem;
  color: var(--magenta);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.about__text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__values {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--magenta-glow);
  color: var(--magenta);
}

/* About Card */
.about__visual {
  position: relative;
}

.about__card {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about__card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.about__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(199, 21, 133, 0.2), rgba(255, 45, 138, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.about__card-info {
  padding: 24px;
}

.about__card-name {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.about__card-role {
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.about__card-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about__emblem {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.4;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: var(--bg-alt);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services__card {
  background: var(--bg);
  border: 1px solid rgba(255, 45, 138, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.services__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 138, 0.2);
  box-shadow: 0 12px 40px rgba(255, 45, 138, 0.1);
}

.services__card:hover::before {
  opacity: 1;
}

.services__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--magenta-glow);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.services__card:hover .services__card-icon {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
}

.services__card-title {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.services__card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.services__card-features {
  margin-bottom: 20px;
}

.services__card-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.services__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--magenta);
  transition: all var(--transition);
}

.services__card-link:hover {
  gap: 10px;
  color: var(--pink);
}

/* ---- WHY CHOOSE US ---- */
.why {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light), var(--bg));
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why__card {
  padding: 32px 28px;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.08);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why__card:hover {
  border-color: rgba(255, 45, 138, 0.2);
  transform: translateY(-4px);
}

.why__card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 16px;
}

.why__card-title {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.why__card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Service Areas */
.why__areas {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 45, 138, 0.08);
}

.why__areas-title {
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.why__areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-tag {
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.1);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--magenta-glow);
  border-color: var(--magenta);
  color: var(--cream);
}

/* ---- GALLERY ---- */
.gallery {
  padding: 100px 0;
  background: var(--bg-alt);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.5s ease;
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.05);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta);
  margin-bottom: 4px;
}

.gallery__overlay-caption {
  font-size: 0.9rem;
  color: var(--cream);
}

/* ---- PROCESS ---- */
.process {
  padding: 100px 0;
  background: var(--bg);
}

.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
}

.process__line {
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--gold), var(--magenta));
  opacity: 0.3;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--magenta);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--magenta);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.process__step:hover .process__step-number {
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
}

.process__step-title {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.process__step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials__card {
  background: var(--bg);
  border: 1px solid rgba(255, 45, 138, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 138, 0.2);
}

.testimonials__card--featured {
  background: linear-gradient(135deg, var(--magenta-dark), #2a0a1a);
  border-color: rgba(255, 45, 138, 0.3);
}

.testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonials__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonials__card--featured .testimonials__text {
  color: rgba(255, 245, 249, 0.85);
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonials__name {
  font-weight: 600;
  color: var(--cream);
  display: block;
  font-size: 0.9rem;
}

.testimonials__event {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials__card--featured .testimonials__event {
  color: rgba(255, 182, 193, 0.7);
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #2a0a1a, var(--magenta-dark), #4a0a2a);
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  /* Diamond pattern overlay */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0L40 20L20 40L0 20Z' fill='none' stroke='rgba(255,215,0,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner__title em {
  color: var(--gold);
}

.cta-banner__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  background: var(--bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.contact__info-card {
  background: linear-gradient(135deg, #1a0a14, var(--bg-alt));
  border: 1px solid rgba(255, 45, 138, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--magenta-glow);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.contact__info-item p,
.contact__info-item a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact__info-item a:hover {
  color: var(--magenta);
}

.contact__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.contact__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--magenta-glow);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact__social-link:hover {
  background: var(--magenta);
  color: #fff;
}

.contact__map {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact__map-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.08);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Contact Form */
.contact__form-wrap {
  position: relative;
}

.contact__form {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 45, 138, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact__form-title {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 28px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--magenta);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid rgba(255, 45, 138, 0.12);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239E8A94' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(255, 45, 138, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(158, 138, 148, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input.error,
.form-group select.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.15);
}

/* Submit button states */
.btn__loading {
  display: none;
}

.btn--loading .btn__text {
  display: none;
}

.btn--loading .btn__loading {
  display: inline-flex;
}

/* Success state */
.contact__form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--bg-alt);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  z-index: 10;
}

.contact__form-success[aria-hidden="false"] {
  display: flex;
}

.contact__form-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  width: 100%;
}

.contact__form-success h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-top: 20px;
  margin-bottom: 12px;
}

.contact__form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

/* ---- FOOTER ---- */
.footer {
  padding: 64px 0 0;
  background: #08080d;
  border-top: 1px solid rgba(255, 45, 138, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__logo-tipsy {
  font-family: 'Sacramento', cursive;
  font-size: 1.4rem;
  color: var(--magenta);
  margin-bottom: -4px;
}

.footer__logo-chicks {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 45, 138, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--magenta);
  color: #fff;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--magenta);
}

.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer__links--contact svg {
  flex-shrink: 0;
  color: var(--magenta);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 45, 138, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  font-size: 0.78rem;
  color: rgba(158, 138, 148, 0.6);
}

.footer__legal-links {
  display: flex;
  gap: 16px;
}

.footer__legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal-links a:hover {
  color: var(--magenta);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--magenta-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(255, 45, 138, 0.3);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 45, 138, 0.45);
}

/* ---- FOCUS STYLES ---- */
*:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline-offset: 4px;
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__illustration {
    max-width: 280px;
  }

  .hero__stats-inner {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 400px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .process__timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .process__line {
    display: none;
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__card:nth-child(3) {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__illustration {
    max-width: 220px;
  }

  .hero__stats-inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .hero__stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    justify-content: center;
  }

  .services__grid,
  .why__grid,
  .process__timeline {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--tall {
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__card:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__form {
    padding: 24px 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner__title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .about__quote {
    font-size: 1.2rem;
  }

  .marquee__content span {
    font-size: 0.75rem;
  }
}

/* ---- PRINT STYLES ---- */
@media print {
  .nav, .hero__orb, .hero__sparkles, .hero__scroll, .marquee,
  .back-to-top, .cta-banner, .hero__stats, .about__emblem,
  .nav__hamburger, .mobile-menu { display: none !important; }

  body { background: #fff; color: #333; }
  .section-title, h1, h2, h3, h4 { color: #1a1a1a; }
  em { color: #C71585; }
  .services__card, .why__card, .testimonials__card { border: 1px solid #ddd; }
}
