/* ==========================================================================
   M Nail Lounge — Design Tokens & Base
   ========================================================================== */

:root {
  --bg:          #0C0A09;
  --surface:     #1C1917;
  --surface-2:   #292524;
  --border:      #3F3A36;
  --text:        #FAFAF9;
  --text-muted:  #A8A29E;
  --gold:        #D4AF37;
  --gold-deep:   #B8860B;
  --gold-light:  #FCD34D;
  --gold-grad:   linear-gradient(135deg, #FCD34D 0%, #D4AF37 50%, #B8860B 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(252,211,77,0.18) 0%, rgba(212,175,55,0.12) 50%, rgba(184,134,11,0.18) 100%);

  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.45);
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans  { font-family: 'Inter', system-ui, sans-serif; }

/* ==========================================================================
   Headings — Editorial scale
   ========================================================================== */
.h-display {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  /* Breathing room so italic descenders ('y','g','f') aren't clipped
     by tight line boxes or by the next sibling element. */
  padding-bottom: 0.25em;
}
.h-1 {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  padding-bottom: 0.25em;
}
.h-2 {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.h-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   Gold treatments
   ========================================================================== */
.text-gold      { color: var(--gold); }
.text-gold-grad {
  display: inline-block;
  vertical-align: baseline;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Italic glyphs slant past the glyph box; background-clip:text masks
     them off. Reserve right-side space and pull layout back so the
     surrounding line is unchanged. Vertical-align:baseline keeps the
     inline-block aligned with the surrounding text baseline (no line
     box expansion). */
  padding-inline-end: 0.18em;
  margin-inline-end:  -0.16em;
}
.bg-gold-grad   { background: var(--gold-grad); }
.border-gold    { border-color: var(--gold); }

.divider-gold {
  height: 1px;
  width: 64px;
  background: var(--gold-grad);
  border: 0;
  margin: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease),
              color .25s var(--ease),
              box-shadow .25s var(--ease),
              border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-grad);
  color: #0C0A09;
}
.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  color: #0C0A09;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.5rem 0;
  border: 0;
  text-transform: none;
  letter-spacing: 0.04em;
}
.btn-ghost::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform .25s var(--ease);
}
.btn-ghost:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Focus rings (a11y)
   ========================================================================== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: rgba(12, 10, 9, 0);
  backdrop-filter: blur(0);
  transition: background-color .35s var(--ease),
              backdrop-filter .35s var(--ease),
              padding .35s var(--ease),
              border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 0.75rem 0;
  border-bottom-color: rgba(212, 175, 55, 0.12);
}
.nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color .2s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-weight: 600;
  background: var(--gold-grad);
  color: #0C0A09;
  font-family: 'Playfair Display', Georgia, serif;
}
.brand-pipe { color: var(--gold); margin: 0 0.25rem; }

/* mobile menu */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(12, 10, 9, 0.97);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu .nav-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-desktop  { display: none !important; }
  .menu-toggle  { display: inline-flex; }
}

/* ==========================================================================
   Hero — gold orb backdrop
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}
.hero-orb {
  position: absolute;
  width: 80vw;
  max-width: 900px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(252,211,77,0.35) 0%, rgba(212,175,55,0.18) 30%, rgba(184,134,11,0.05) 55%, transparent 70%);
  filter: blur(60px);
  top: -20%;
  right: -20%;
  pointer-events: none;
  z-index: 0;
}
.hero-orb-2 {
  position: absolute;
  width: 50vw;
  max-width: 600px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.18) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -25%;
  left: -15%;
  pointer-events: none;
  z-index: 0;
}
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  z-index: 1;
  mix-blend-mode: overlay;
}
.hero-content { position: relative; z-index: 2; }

/* Full-bleed model hero (home page) */
.hero.hero-full {
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100svh;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,10,9,0.55) 0%, rgba(12,10,9,0.15) 22%, rgba(12,10,9,0) 50%, rgba(12,10,9,0.6) 90%, rgba(12,10,9,0.95) 100%),
    linear-gradient(90deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.55) 40%, rgba(12,10,9,0.1) 70%, rgba(12,10,9,0) 100%);
}
.hero-full .hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 9rem 0 3rem;
  z-index: 3;
}
.hero-copy { max-width: 48rem; }

.hero-marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(12, 10, 9, 0.55);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 1.25rem 0;
}
.hero-marquee dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-marquee dd {
  margin: 0.25rem 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .hero-bg img { object-position: 65% 30%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12,10,9,0.55) 0%, rgba(12,10,9,0.2) 30%, rgba(12,10,9,0.45) 55%, rgba(12,10,9,0.95) 100%);
  }
  .hero-full .hero-content { padding-top: 7rem; }
}

/* ==========================================================================
   Hero Slider (home page)
   ========================================================================== */
.hero-slider {
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100svh;
}
.slides-track {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s;
  display: flex;
  flex-direction: column;
}
.slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s var(--ease);
  z-index: 1;
}
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 40%;
  display: block;
  z-index: 0;
  transform: scale(1.04);
}
.slide.is-active .slide-img {
  animation: kenburns 11s ease-out both;
}
@keyframes kenburns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.10); }
}
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(12,10,9,0.55) 0%, rgba(12,10,9,0.15) 22%, rgba(12,10,9,0) 50%, rgba(12,10,9,0.6) 88%, rgba(12,10,9,0.95) 100%),
    linear-gradient(90deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.55) 38%, rgba(12,10,9,0.05) 72%, rgba(12,10,9,0) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 9rem 0 7rem;
}

/* Animated copy on active slide */
.slide .hero-copy > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.slide.is-active .hero-copy > * {
  opacity: 1;
  transform: none;
}
.slide.is-active .hero-copy > *:nth-child(1) { transition-delay: .15s; }
.slide.is-active .hero-copy > *:nth-child(2) { transition-delay: .3s;  }
.slide.is-active .hero-copy > *:nth-child(3) { transition-delay: .45s; }
.slide.is-active .hero-copy > *:nth-child(4) { transition-delay: .6s;  }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12,10,9,0.45);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px) saturate(140%);
  transition: border-color .25s var(--ease),
              color .25s var(--ease),
              background-color .25s var(--ease);
}
.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(12,10,9,0.8);
}
.slider-prev { left: 1rem; }
.slider-next { right: 1rem; }
@media (min-width: 1024px) {
  .slider-prev { left: 2rem; }
  .slider-next { right: 2rem; }
}

.slider-controls {
  position: absolute;
  z-index: 5;
  bottom: 6.75rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .slider-controls { padding: 0 2.5rem; bottom: 7rem; }
}

.slider-counter {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  pointer-events: auto;
}
.slider-counter .current {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 0.25rem;
}
.slider-counter .sep { margin: 0 0.4rem; opacity: 0.5; }

.slider-dots {
  display: flex;
  gap: 0.625rem;
  pointer-events: auto;
}
.slider-dot {
  width: 32px;
  height: 2px;
  background: rgba(250,250,249,0.28);
  border: 0;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  transition: background-color .35s var(--ease), width .35s var(--ease);
}
.slider-dot:hover { background: rgba(212,175,55,0.6); }
.slider-dot.is-active {
  background: var(--gold);
  width: 56px;
}
.slider-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .slider-arrow { display: none; }
  .slider-controls {
    justify-content: center;
    bottom: 6rem;
  }
  .slider-counter { display: none; }
  .slide-img { object-position: 65% 35%; }
  .slide-overlay {
    background:
      linear-gradient(180deg, rgba(12,10,9,0.55) 0%, rgba(12,10,9,0.2) 30%, rgba(12,10,9,0.5) 60%, rgba(12,10,9,0.95) 100%);
  }
  .slide-content { padding: 7rem 0 6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .slide,
  .slide.is-active .slide-img,
  .slide .hero-copy > * { animation: none !important; transition: none !important; transform: none !important; opacity: 1 !important; visibility: visible !important; }
  .slide:not(.is-active) { opacity: 0; visibility: hidden; }
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: var(--surface-2);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 2px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: rgba(212, 175, 55, 0.04);
}

/* ==========================================================================
   Service list (services.html)
   ========================================================================== */
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: var(--text);
}
.menu-row-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}
.menu-row-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.375rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 999px;
  transition: all .25s var(--ease);
}
.filter-chip:hover { color: var(--text); border-color: rgba(212, 175, 55, 0.4); }
.filter-chip.is-active {
  background: var(--gold-grad);
  color: #0C0A09;
  border-color: transparent;
}

.masonry {
  column-count: 1;
  column-gap: 1rem;
}
@media (min-width: 640px)  { .masonry { column-count: 2; } }
@media (min-width: 1024px) { .masonry { column-count: 3; } }
@media (min-width: 1440px) { .masonry { column-count: 4; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .3s var(--ease);
}
.masonry-item:hover { border-color: rgba(212, 175, 55, 0.5); }
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .35s var(--ease), filter .35s var(--ease);
}
.masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,9,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.masonry-item:hover .overlay { opacity: 1; }
.masonry-item.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 10, 9, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 4px;
  display: block;
}
.lightbox-btn {
  position: absolute;
  background: rgba(28, 25, 23, 0.7);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.lightbox-btn:hover { color: var(--gold); border-color: var(--gold); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Forms
   ========================================================================== */
.field { display: block; margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  border-radius: 0;
  transition: border-color .25s var(--ease);
  min-height: 44px;
}
.field textarea {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 120px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  padding-right: 1.5rem;
}
.field select option { background: var(--surface); color: var(--text); }
.field-error {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: #F87171;
  min-height: 1em;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #F87171; }

.form-success {
  display: none;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold);
  border-radius: 2px;
  margin-top: 1rem;
}
.form-success.is-visible { display: block; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #07060A;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}
.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.footer a:hover { color: var(--gold); }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all .25s var(--ease);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
