/* Natalie Keyyy — Pro MUA. Vibrant, warm, sleek, modern. */

:root {
  --bg: #0d0907;
  --bg-soft: #1a120c;
  --bg-card: rgba(255, 255, 255, 0.02);
  --surface: #2c1810;
  --text: #f5f0e6;
  --text-muted: #c9b89e;
  --text-subtle: #8b7355;
  --text-faint: #5c4a38;
  --gold: #daa520;
  --gold-dark: #b8860b;
  --gold-light: #e8c8a0;
  --accent: #c9956b;
  --accent-soft: #d4a574;
  --border: rgba(218, 165, 32, 0.15);
  --border-hover: rgba(218, 165, 32, 0.35);
  --glow: rgba(218, 165, 32, 0.25);
  --radius: 8px;
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Cormorant Garamond", "Georgia", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="40" viewBox="0 0 32 40"><ellipse cx="16" cy="6" rx="6" ry="7" fill="%23d4a574" opacity="0.9"/><ellipse cx="16" cy="5" rx="5" ry="5.5" fill="%23e8c8a0" opacity="0.8"/><rect x="12" y="12" width="8" height="4" rx="1" fill="%23daa520"/><rect x="13" y="16" width="6" height="22" rx="3" fill="%232c1810"/><rect x="13" y="35" width="6" height="3" rx="1" fill="%23daa520"/></svg>') 4 4, auto;
}
body.no-custom-cursor { cursor: auto; }

::selection { background: rgba(218, 165, 32, 0.35); color: var(--text); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1.25rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* ─── Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 2rem;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13, 9, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.15em;
}
.logo span { color: var(--gold); }
.logo:hover { color: var(--gold); }
.logo:hover span { color: var(--gold-light); }
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.nav a:hover, .nav a:focus-visible { color: var(--gold); }
.nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold-light);
  cursor: pointer;
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s;
}
.menu-toggle:hover { border-color: var(--border-hover); color: var(--gold); }
.menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-menu { display: none; }

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 9, 7, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
  }
  .nav-menu[hidden] { display: none; }
  .nav-menu ul { flex-direction: column; gap: 0.75rem; }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, var(--bg-soft) 0%, #2c1810 30%, var(--bg-soft) 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(218, 165, 32, 0.06);
  pointer-events: none;
}
.hero-bg::before {
  top: -15%;
  right: -10%;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  animation: float 22s ease-in-out infinite;
}
.hero-bg::after {
  bottom: -25%;
  left: -15%;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  animation: float 28s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -25px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}
.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 1s ease 0.2s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 1s ease 0.4s forwards;
}
.hero h1 .shimmer {
  background: linear-gradient(90deg, var(--accent) 0%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroReveal 1s ease 0.6s forwards;
}
.hero-divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider-line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-divider .hero-sub { margin-bottom: 0; }
.hero-sub {
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroReveal 1s ease 0.6s forwards;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: heroReveal 1s ease 0.8s forwards;
}
.hero-social {
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroReveal 1s ease 1s forwards;
}
.hero-social .social-links { justify-content: center; margin-bottom: 0.5rem; }
.hero-social .tiktok-badge {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-subtle);
}
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.5;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  background: rgba(218, 165, 32, 0.08);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(218, 165, 32, 0.15);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ─── Sections ────────────────────────────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.section-sub {
  color: var(--text-subtle);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.container { max-width: 720px; margin: 0 auto; }

/* Scroll reveal */
.section.reveal-ready {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.section.reveal-ready.revealed {
  opacity: 1;
  transform: translateY(0);
}
.section.reveal-ready .section-label,
.section.reveal-ready .section-sub,
.section.reveal-ready h2 { transition: opacity 0.6s ease, transform 0.6s ease; }

/* About */
.about { background: var(--bg); }
.about p { margin: 0 0 1rem; color: var(--text-muted); }
.about-lead { color: var(--text); font-size: 1.15rem; }

/* Services */
.services {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 5.5rem 1.5rem 5rem;
}
.container-wide { max-width: 1100px; }
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover,
.service-card:focus-within {
  border-color: var(--border-hover);
  background: rgba(218, 165, 32, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.service-card:hover .service-icon {
  color: var(--gold-light);
  border-color: var(--gold);
}
.service-icon svg {
  width: 24px;
  height: 24px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 0 0 0.75rem;
}
.service-desc {
  font-size: 0.98rem;
  color: var(--text-subtle);
  line-height: 1.6;
  margin: 0;
}

/* Portfolio — swipeable carousel */
.portfolio {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 5.5rem 1.5rem 5rem;
}
.portfolio .container { max-width: 900px; }
.portfolio-carousel {
  position: relative;
  margin-top: 2rem;
  touch-action: pan-y pinch-zoom;
}
.portfolio-track-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.portfolio-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  /* width set in JS to (total * 100)% so one slide = viewport */
}
.portfolio-slide {
  flex: 0 0 auto;
  /* width set in JS to (100/total)% of track = one viewport per slide */
  min-width: 0;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--surface);
  list-style: none;
  margin: 0;
}
.portfolio-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-slide a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.portfolio-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: rgba(13, 9, 7, 0.7);
  color: var(--gold-light);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.portfolio-arrow:hover {
  background: var(--gold);
  color: var(--bg);
}
.portfolio-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.portfolio-prev { left: 0.5rem; }
.portfolio-next { right: 0.5rem; }
.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.portfolio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.portfolio-dot:hover { background: rgba(218, 165, 32, 0.4); }
.portfolio-dot.active { background: var(--gold); border-color: var(--gold); }
.portfolio-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
/* One photo per view on all breakpoints for social-style swipe */

/* Book */
.book { background: var(--bg); }
.book p { margin-bottom: 1rem; color: var(--text-muted); }
.booking-note {
  padding: 1.25rem 1.5rem;
  background: rgba(218, 165, 32, 0.06);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.75rem;
  color: var(--text);
  font-size: 0.98rem;
}
.booking-note strong { color: var(--gold); }

/* Newsletter */
.newsletter {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  padding: 5rem 1.5rem;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 440px;
  margin-top: 1.25rem;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.15rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.newsletter-form input::placeholder { color: var(--text-faint); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.15);
}
.newsletter-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(218, 165, 32, 0.08);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  color: var(--gold-light);
  font-size: 1rem;
}
.newsletter-success[hidden] { display: none !important; }
.newsletter-hint { margin-top: 1rem; color: var(--text-subtle); font-size: 0.85rem; }

/* Contact */
.contact { background: var(--bg); }
.contact-email {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-email:hover { color: var(--gold-light); text-decoration: underline; }
.contact-email:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.social-label {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-subtle);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(218, 165, 32, 0.08);
  transform: translateY(-2px);
}
.social-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Footer */
.site-footer {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.9rem;
  background: #0a0705;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.5rem;
}
.footer-divider {
  width: 50px;
  height: 1px;
  margin: 1.25rem auto;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.footer-contact { margin-bottom: 0.5rem; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-credit {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-credit a { color: var(--text-subtle); text-decoration: none; }
.footer-credit a:hover { color: var(--gold); }
.footer-copy { margin: 0.5rem 0 0; font-size: 0.8rem; }

/* Powder burst — warmer tones */
.powder-burst {
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
}
.powder-burst.active {
  animation: powder-fade 0.9s ease-out forwards;
}
@keyframes powder-fade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.powder-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: powder-particle 0.75s ease-out forwards;
}
@keyframes powder-particle {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.95;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before,
  .hero-bg::after { animation: none; }
  .hero-tagline, .hero h1, .hero-divider, .hero-sub, .hero-cta, .hero-social { animation: none; opacity: 1; transform: none; }
  .scroll-hint { animation: none; }
  .shimmer { animation: none !important; }
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');
