/* =========================================================
   Jasmine Aerial Arts — Main Stylesheet
   Theme: Light pink #f3dedf · White · Gold accents
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:         #ffffff;
  --bg2:        #fdf8f8;
  --bg3:        #f3dedf;
  --card:       #ffffff;
  --card-hover: #fdf4f4;
  --pink:       #f3dedf;
  --pink-lt:    #faeaeb;
  --pink-mid:   #eac8ca;
  --gold:       #b8914e;
  --gold-lt:    #c9a96e;
  --gold-dim:   rgba(184,145,78,.1);
  --gold-dark:  #9a7336;
  --txt:        #2c1a1b;
  --txt2:       #7a6062;
  --txt3:       #b8a0a2;
  --border:     rgba(184,145,78,.18);
  --border-pink: rgba(243,222,223,.9);
  --r:          14px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --shadow:     0 16px 48px rgba(243,222,223,.7);
  --shadow-sm:  0 4px 16px rgba(243,222,223,.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: .02em;
  color: var(--txt);
}

.eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.gold { color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dark));
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(184,145,78,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,145,78,.4); }

.btn-outline {
  background: transparent;
  color: var(--txt);
  border: 1.5px solid var(--pink-mid);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.btn-ghost { background: transparent; color: var(--txt2); }
.btn-ghost:hover { color: var(--txt); }

/* ── Nav ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all .4s var(--ease);
}
nav.scrolled {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-pink);
  box-shadow: 0 2px 20px rgba(243,222,223,.4);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--txt);
  text-decoration: none;
  letter-spacing: .08em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--txt2);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 1.5px; background: var(--txt); transition: all .3s; }

/* ── Hero ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #fdf0f1 40%, #f3dedf 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.orb1 { width: 560px; height: 560px; background: rgba(201,169,110,.12); top: -10%; right: -8%; }
.orb2 { width: 380px; height: 380px; background: rgba(243,222,223,.8); bottom: -5%; left: 15%; }
.orb3 { width: 200px; height: 200px; background: rgba(184,145,78,.08); top: 30%; left: 40%; }

.hero-silk {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: .22;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.05;
  color: var(--txt);
}
.hero-content h1 em { font-style: italic; color: var(--gold); }
.hero-content p {
  font-size: 1.125rem;
  color: var(--txt2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--txt3);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink-mid), transparent);
}
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── About ──────────────────────────────────────────────── */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--pink);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--txt3); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
}
.about-img-placeholder svg { opacity: .45; }
.about-img::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid rgba(184,145,78,.2);
  border-radius: var(--r);
  z-index: 1;
}
.about-img-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
  opacity: .3;
  z-index: 0;
}

.about-text .eyebrow { margin-bottom: 16px; }
.about-text h2 { font-size: clamp(2.2rem,4vw,3rem); margin-bottom: 24px; }
.about-text p { color: var(--txt2); margin-bottom: 18px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-pink);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--txt3); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

/* ── Services ───────────────────────────────────────────── */
#services { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 { font-size: clamp(2rem,4vw,3rem); }
.section-header p { color: var(--txt2); max-width: 480px; margin: 16px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1.5px solid var(--border-pink);
  border-radius: var(--r);
  padding: 32px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.service-card:hover {
  background: var(--card-hover);
  border-color: rgba(184,145,78,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.service-card p { font-size: .875rem; color: var(--txt2); line-height: 1.75; margin-bottom: 24px; }
.service-meta { display: flex; gap: 20px; align-items: center; }
.service-duration { font-size: .78rem; color: var(--txt3); letter-spacing: .06em; }
.service-price { margin-left: auto; }
.service-price .price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }
.service-price .deposit { font-size: .72rem; color: var(--txt3); }
.service-book-btn {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border-pink);
  border-radius: 50px;
  background: transparent;
  color: var(--txt2);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.service-book-btn:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

/* ── Gallery ────────────────────────────────────────────── */
#gallery { background: var(--bg3); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item {
  background: var(--pink-lt);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184,145,78,.15);
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child { grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--txt3); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}

/* ── Links / Linktree ───────────────────────────────────── */
#links { background: var(--bg); }
.links-intro { text-align: center; margin-bottom: 48px; }
.links-intro h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 12px; }
.links-intro p { color: var(--txt2); }
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card);
  border: 1.5px solid var(--border-pink);
  border-radius: 12px;
  text-decoration: none;
  color: var(--txt);
  transition: all .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.link-card:hover {
  background: var(--pink-lt);
  border-color: rgba(184,145,78,.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.link-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.link-card-label { font-size: .875rem; font-weight: 400; color: var(--txt); }
.link-card-sub   { font-size: .75rem; color: var(--txt3); }
.link-arrow { margin-left: auto; color: var(--gold); font-size: .9rem; }

/* ── Booking CTA Banner ─────────────────────────────────── */
#book-cta {
  background: var(--pink);
  border-top: 1px solid rgba(184,145,78,.15);
  border-bottom: 1px solid rgba(184,145,78,.15);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#book-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(80px);
  pointer-events: none;
}
#book-cta h2 { font-size: clamp(2.2rem,5vw,3.8rem); margin-bottom: 20px; position: relative; }
#book-cta p  { color: var(--txt2); margin-bottom: 36px; font-size: 1.05rem; position: relative; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--txt);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 60px 0 32px;
}
footer .nav-logo { color: #f3dedf; }
footer .nav-logo span { color: var(--gold-lt); }
footer .gold { color: var(--gold-lt); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,.4); font-size: .875rem; margin-top: 12px; max-width: 260px; }
footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
  font-weight: 500;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color .2s; }
footer a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,.3);
  font-size: .8rem;
}

/* ── Skeleton loader ────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--pink-lt) 25%, #f8e8e9 50%, var(--pink-lt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── Reveal animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 400px; margin: 0 auto; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: repeat(3, 200px); grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-silk { display: none; }
  .hero-content h1 { font-size: 3rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-stats { flex-direction: column; gap: 20px; }
}

/* ── Mobile nav ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--txt);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--txt2); font-size: 1.5rem; cursor: pointer;
}
