/* ══════════════════════════════════════════════════════════════
   AYA — TATTOO ARTIST  |  style.css
   ══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --bg:          #0D0D0D;
  --card:        #141414;
  --card-light:  #1E1E1E;
  --rose-gold:   #C9956C;
  --rose-dark:   #A8754E;
  --blush:       #E8B4B8;
  --blush-dim:   rgba(232,180,184,0.15);
  --text:        #F5F5F5;
  --text-muted:  rgba(245,245,245,0.5);
  --text-dim:    rgba(245,245,245,0.3);
  --border:      rgba(201,149,108,0.18);
  --border-sub:  rgba(245,245,245,0.08);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;

  --nav-h: 72px;

  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--text);
}
textarea { resize: vertical; }
select option { background: var(--card); color: var(--text); }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) { .container { padding: 0 1.25rem; } }

/* ── Typography helpers ───────────────────────────────────────── */
.section-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title em { font-style: italic; color: var(--blush); }
.section-sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 1rem auto 0; }

/* ── Button System ───────────────────────────────────────────── */
.btn-primary, .btn-ghost, .btn-submit, .btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  border: 1px solid var(--rose-gold);
  color: var(--rose-gold);
  background: transparent;
}
.btn-primary:hover {
  background: var(--rose-gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,108,0.25);
}
.btn-ghost {
  border: 1px solid var(--border-sub);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-2px);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--rose-gold);
  color: var(--bg);
  border: 1px solid var(--rose-gold);
  font-size: 0.8rem;
  padding: 1rem 2rem;
}
.btn-submit:hover {
  background: transparent;
  color: var(--rose-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,108,0.2);
}
.btn-instagram {
  border: 1px solid var(--border-sub);
  color: var(--text);
  background: transparent;
  gap: 0.6rem;
}
.btn-instagram:hover {
  border-color: var(--rose-gold);
  color: var(--rose-gold);
  transform: translateY(-2px);
}

/* ── Navbar ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
  display: flex;
  gap: 0;
}
.nav-logo span { display: inline-block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--card);
  border-left: 1px solid var(--border);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  padding: 2rem;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--rose-gold); }
.mobile-nav-cta { margin-top: 1rem; }

/* ── Hero ────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes moonFadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-moon {
  will-change: opacity, transform;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, rgba(13,13,13,0.6) 70%, #0D0D0D 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, transparent 30%, transparent 70%, rgba(13,13,13,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0;
}
.hero-title em {
  font-style: italic;
  color: var(--blush);
}
.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
}
.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--rose-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ── About ───────────────────────────────────────────────────── */
#about {
  padding: 8rem 0;
}
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
}
.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  z-index: 1;
  pointer-events: none;
}
/* Decorative corner accent */
.about-image-frame::after {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--rose-gold);
  border-right: 2px solid var(--rose-gold);
  border-radius: 0 var(--r-md) 0 0;
  z-index: 2;
}
.about-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--card) 0%, #1a1310 100%);
}
.placeholder-letter {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(201,149,108,0.15);
  letter-spacing: 0.1em;
}
.about-img { position: absolute; inset: 0; z-index: 1; }
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: none;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.badge-symbol { font-size: 2.2rem; filter: drop-shadow(0 2px 8px rgba(201,149,108,0.4)); }
.badge-text { font-size: 0.55rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.3; }

.about-text { display: flex; flex-direction: column; gap: 1.2rem; }
.about-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.9; }
.style-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }
.tag {
  border: 1px solid var(--border);
  color: var(--blush);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  transition: all 0.25s;
}
.tag:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

/* ── Gallery ─────────────────────────────────────────────────── */
#gallery { padding: 8rem 0; }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border-sub);
  border-radius: 50px;
  color: var(--text-muted);
  transition: all 0.25s var(--ease-out);
}
.filter-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.filter-btn.active { background: var(--rose-gold); border-color: var(--rose-gold); color: var(--bg); }

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.hidden { display: none; }

.gallery-img-wrap { position: relative; background: var(--card); }
.gallery-img-wrap.short  { height: 220px; }
.gallery-img-wrap.medium { height: 300px; }
.gallery-img-wrap.tall   { height: 380px; }
.gallery-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--card) 0%, #1a1410 100%);
}
.gallery-placeholder span {
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,149,108,0.25);
}
.gallery-placeholder--empty {
  flex-direction: column;
  gap: 0.5rem;
}
.placeholder-note {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(245,245,245,0.15);
  text-transform: uppercase;
}
.gallery-overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background: rgba(13,13,13,0.65);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  backdrop-filter: blur(2px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
}
.gallery-plus {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,245,245,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--text);
  transition: all 0.25s;
}
.gallery-item:hover .gallery-plus { border-color: var(--rose-gold); color: var(--rose-gold); }

/* Gallery: Load More */
.gallery-item.gallery-hidden {
  display: none !important;
}
.gallery-item.gallery-reveal {
  animation: galleryFadeIn 0.5s ease-out both;
}
@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.gallery-load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-load-more {
  padding: 0.9rem 2.5rem;
  gap: 0.6rem;
}
.load-more-count {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 300;
}
.gallery-load-more-wrap.all-loaded {
  display: none;
}

/* ── Lightbox ────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lightbox.active .lightbox-img { opacity: 1; transform: scale(1); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 10;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); border-color: var(--rose-gold); color: var(--rose-gold); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.12); border-color: var(--rose-gold); color: var(--rose-gold); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-cat {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-gold); background: rgba(0,0,0,0.6);
  padding: 0.4rem 1.2rem; border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-next { right: 0.5rem; width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; width: 38px; height: 38px; }
}

/* ── Instagram ───────────────────────────────────────────────── */
#instagram { padding: 8rem 0; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.ig-tile {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ig-placeholder {
  width: 100%; height: 100%;
  background: var(--card-light);
  transition: transform 0.4s var(--ease-out);
}
/* Varied tones for visual interest */
.ig-tile:nth-child(1) .ig-placeholder { background: #1a1410; }
.ig-tile:nth-child(2) .ig-placeholder { background: #14141a; }
.ig-tile:nth-child(3) .ig-placeholder { background: #1a1418; }
.ig-tile:nth-child(4) .ig-placeholder { background: #141a14; }
.ig-tile:nth-child(5) .ig-placeholder { background: #1a1616; }
.ig-tile:nth-child(6) .ig-placeholder { background: #16141a; }

.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.45);
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  backdrop-filter: blur(2px);
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-tile:hover .ig-placeholder { transform: scale(1.05); }
.ig-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.ig-tile:hover .ig-photo { transform: scale(1.06); }
.ig-overlay span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}
.ig-cta-wrap { text-align: center; }

/* ── Booking ─────────────────────────────────────────────────── */
#booking { padding: 8rem 0; }
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.booking-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}
.booking-notes {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.booking-notes li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.note-sym { color: var(--rose-gold); font-size: 0.7rem; flex-shrink: 0; }

/* ── Forms (shared) ──────────────────────────────────────────── */
.booking-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label-optional {
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-dim);
  font-size: 0.65rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px rgba(201,149,108,0.1);
}
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #c96c6c;
  box-shadow: 0 0 0 3px rgba(201,108,108,0.1);
}
/* Select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9956C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Upload area */
.upload-area {
  border: 1px dashed rgba(201,149,108,0.3);
  border-radius: var(--r-md);
  padding: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}
.upload-area:hover, .upload-area.drag-over {
  border-color: var(--rose-gold);
  background: rgba(201,149,108,0.04);
}
.upload-icon { font-size: 1.2rem; color: var(--rose-gold); margin-bottom: 0.5rem; }
.upload-content p { font-size: 0.85rem; color: var(--text-muted); }
.upload-link { color: var(--rose-gold); text-decoration: underline; cursor: pointer; }
.upload-hint { font-size: 0.7rem !important; color: var(--text-dim) !important; margin-top: 0.3rem; }
.upload-filelist { margin-top: 0.8rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.upload-file-tag {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  background: rgba(201,149,108,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--rose-gold);
}

.form-notice {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -0.4rem;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 5rem 2.5rem;
  background: var(--card);
  border: 1px solid rgba(201,149,108,0.25);
  border-radius: var(--r-lg);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.form-success::before {
  content: 'AYA';
  position: absolute;
  font-family: var(--serif);
  font-size: 10rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,149,108,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: 0.2em;
}
.success-symbol {
  font-size: 2.5rem;
  color: var(--rose-gold);
  animation: spinIn 0.6s var(--ease-back);
  text-shadow: 0 0 30px rgba(201,149,108,0.4);
}
@keyframes spinIn {
  from { transform: rotate(-180deg) scale(0); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}
.form-success h3 em {
  font-style: italic;
  color: var(--rose-gold);
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.8;
}
.form-success .btn-ghost {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  padding: 0.75rem 2rem;
}

/* ── Flatpickr dark theme overrides ──────────────────────────── */
.flatpickr-calendar {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5) !important;
  font-family: var(--sans) !important;
}
.flatpickr-calendar::before,
.flatpickr-calendar::after { display: none !important; }
.flatpickr-months { background: transparent !important; padding: 0.5rem 0; }
.flatpickr-month { background: transparent !important; }
.flatpickr-current-month { font-family: var(--serif) !important; font-size: 1rem !important; color: var(--text) !important; }
.flatpickr-current-month select { color: var(--text) !important; background: transparent !important; }
.flatpickr-monthDropdown-months { background: var(--card) !important; }
.flatpickr-prev-month, .flatpickr-next-month { color: var(--rose-gold) !important; fill: var(--rose-gold) !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { color: var(--blush) !important; fill: var(--blush) !important; background: transparent !important; }
.flatpickr-weekday { color: var(--text-dim) !important; font-size: 0.7rem !important; background: transparent !important; }
.flatpickr-day {
  color: var(--text-muted) !important;
  border-radius: var(--r-sm) !important;
  border-color: transparent !important;
}
.flatpickr-day:hover { background: rgba(201,149,108,0.12) !important; color: var(--rose-gold) !important; }
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: var(--rose-gold) !important;
  border-color: var(--rose-gold) !important;
  color: var(--bg) !important;
}
.flatpickr-day.today { border-color: rgba(201,149,108,0.4) !important; color: var(--rose-gold) !important; }
.flatpickr-day.disabled { color: var(--text-dim) !important; opacity: 0.4; }
.numInputWrapper span { border-color: var(--border-sub) !important; }
.numInputWrapper span:hover { background: rgba(201,149,108,0.1) !important; }
.numInputWrapper input { color: var(--text) !important; }

/* ── Contact ─────────────────────────────────────────────────── */
#contact { padding: 8rem 0; }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  transition: all 0.25s var(--ease-out);
}
.contact-detail:hover {
  border-color: var(--rose-gold);
  transform: translateX(4px);
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: rgba(201,149,108,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-detail-text { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); }
.contact-detail-val { font-size: 0.875rem; color: var(--text); }

/* ── Footer ──────────────────────────────────────────────────── */
#footer {
  background: var(--card);
  border-top: 1px solid var(--border-sub);
  padding: 4rem 0 2.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--rose-gold);
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--rose-gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-sub);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── Section dividers (subtle) ───────────────────────────────── */
#gallery, #instagram, #contact {
  position: relative;
}
#gallery::before,
#instagram::before,
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ── Scroll animation initial states ─────────────────────────── */
/* (GSAP animates these — elements start invisible and slide in) */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { columns: 2; }
  .booking-container,
  .contact-container { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-frame { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
  .about-badge { bottom: -1rem; right: 0; }

  .gallery-grid { columns: 2; }

  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  .booking-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  #about, #gallery, #instagram, #booking, #contact { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-filters { gap: 0.4rem; }
  .filter-btn { padding: 0.4rem 1rem; font-size: 0.65rem; }
}
