/* =============================================
   LABIEU 에스테틱&스튜디오 - 메인 스타일시트
   ============================================= */

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

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #A07840;
  --dark:       #1A1A1A;
  --dark2:      #2C2C2C;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --gray:       #F4F1EC;
  --text:       #3A3A3A;
  --text-light: #8A8A8A;
  --border:     #E8E0D2;
  --font-serif: 'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  --font-sans:  'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
  --radius:     4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-family: var(--font-serif);
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-title.light { color: var(--white); }
.section-desc { color: var(--text-light); font-size: .95rem; margin-bottom: 2.5rem; }
.section-desc.light { color: rgba(255,255,255,.75); }

.gold-divider {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin-bottom: 1.8rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 500;
  letter-spacing: .05em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline.dark {
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline.dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  border: none;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.4); }
.btn-text {
  background: none; border: none; padding: 0;
  color: var(--gold); font-weight: 500;
  display: inline-flex; align-items: center; gap: .4rem;
}
.btn-text:hover { gap: .7rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: .8rem 0;
}
.header.scrolled .logo-en { color: var(--dark); }
.header.scrolled .logo-ko { color: var(--text-light); }
.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover { color: var(--gold); }
.header.scrolled .nav-reserve {
  background: var(--gold);
  color: var(--white) !important;
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.2; gap: .15rem; align-items: flex-start; }
.logo-img {
  height: 28px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.header.scrolled .logo-img {
  filter: brightness(0) sepia(1) saturate(0.4) hue-rotate(0deg);
}
.logo-en {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: .15em;
  color: var(--white);
  transition: var(--transition);
}
.logo-ko {
  font-size: .52rem; letter-spacing: .12em;
  text-transform: none;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}
.header.scrolled .logo-ko { color: var(--text-light); }
.nav-menu {
  display: flex; align-items: center; gap: .3rem;
}
.nav-link {
  padding: .5rem .9rem;
  font-size: .85rem; font-weight: 400;
  letter-spacing: .05em;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold-light); }
.nav-reserve {
  background: rgba(201,169,110,.2);
  border: 1px solid rgba(201,169,110,.5);
  color: var(--gold-light) !important;
}
.nav-reserve:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-auth { display: flex; gap: .2rem; margin-left: .5rem; padding-left: .8rem; border-left: 1px solid rgba(255,255,255,.2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .nav-toggle span { background: var(--dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A1208 0%, #2C2010 40%, #1A1208 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,.08) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 760px; padding: 0 2rem;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: .85rem; letter-spacing: .35em;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 300; line-height: 1.35;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.65);
  margin-bottom: 2.8rem; line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0; transform: scaleY(.5) translateY(-10px); }
  50%      { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* FADE-UP ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp .8s var(--transition) forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text p { color: var(--text-light); line-height: 1.9; margin-bottom: 1.2rem; }
.about-text .btn-text { margin-top: .5rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.value-card {
  padding: 1.8rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: .9rem; }
.value-card h3 { font-size: .95rem; font-weight: 600; margin-bottom: .5rem; }
.value-card p { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

/* ============================================
   PROGRAMS PREVIEW
   ============================================ */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.program-card {
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.program-card:hover { background: rgba(201,169,110,.08); border-color: var(--gold); transform: translateY(-4px); }
.program-card.featured {
  background: rgba(201,169,110,.12);
  border-color: var(--gold);
}
.program-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1.2rem; }
.program-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  color: var(--gold-light);
  font-size: .72rem; padding: .2rem .6rem; border-radius: 20px;
}
.program-badge.gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.program-card h3 { font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: .5rem; }
.program-card p { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; line-height: 1.6; }
.program-price { margin-bottom: 1.2rem; }
.price-label { font-size: .75rem; color: rgba(255,255,255,.4); display: block; margin-bottom: .2rem; }
.price-value { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-light); }
.program-link { font-size: .8rem; color: var(--gold); display: inline-flex; align-items: center; gap: .3rem; }
.program-link:hover { color: var(--gold-light); }

/* ============================================
   MEMBERSHIP PREVIEW
   ============================================ */
.membership-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.mem-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.mem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.white-tier::before  { background: linear-gradient(90deg, #e0e0e0, #f5f5f5, #e0e0e0); }
.green-tier::before  { background: linear-gradient(90deg, #4caf50, #81c784, #4caf50); }
.blue-tier::before   { background: linear-gradient(90deg, #1565c0, #42a5f5, #1565c0); }
.purple-tier::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); }

.mem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.featured-mem { border-color: #42a5f5; box-shadow: var(--shadow-sm); }
.mem-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #1565c0; color: var(--white);
  font-size: .7rem; padding: .2rem .6rem; border-radius: 20px;
}
.mem-tier {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.white-tier .mem-tier  { color: #9e9e9e; }
.green-tier .mem-tier  { color: #2e7d32; }
.blue-tier .mem-tier   { color: #1565c0; }
.purple-tier .mem-tier { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.mem-amount {
  font-size: 1.3rem; font-weight: 600; color: var(--dark);
  margin-bottom: .5rem;
}
.mem-discount {
  font-size: .9rem; color: var(--text-light);
  margin-bottom: .4rem;
}
.mem-note { font-size: .75rem; color: var(--gold); margin-bottom: 1rem; }
.mem-btn {
  display: inline-block; margin-top: 1rem;
  padding: .55rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem; color: var(--text-light);
  transition: var(--transition);
}
.mem-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
}
.event-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.event-icon { font-size: 2rem; color: var(--gold); margin-bottom: 1.2rem; }
.event-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: .8rem; }
.event-card p { font-size: .85rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.2rem; }
.event-reward { display: flex; align-items: baseline; justify-content: center; gap: .4rem; margin-bottom: .5rem; }
.reward-point {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--gold);
}
.reward-label { font-size: .82rem; color: var(--text-light); }
.event-note { font-size: .78rem; color: var(--text-light); }
.points-notice {
  text-align: center; font-size: .82rem; color: var(--text-light);
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-cta-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 2.5rem;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}
.blog-cta-text { display: flex; align-items: center; gap: 1.2rem; }
.blog-icon { font-size: 2rem; color: var(--gold); }
.blog-cta-text h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .3rem; }
.blog-cta-text p { font-size: .85rem; color: var(--text-light); }
.blog-placeholder { text-align: center; padding: 1rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative; padding: 6rem 2rem;
  background: linear-gradient(135deg, #1A1208 0%, #2C2010 100%);
  text-align: center; overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 2; }
.cta-sub {
  font-family: var(--font-serif); font-size: .8rem; letter-spacing: .35em;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.cta-section h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,.6); margin-bottom: 2rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark2); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo {
  font-family: var(--font-serif); font-size: 1.6rem;
  letter-spacing: .15em; color: var(--white); margin-bottom: 1rem;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-info h4, .footer-links h4 {
  font-size: .85rem; font-weight: 500; letter-spacing: .08em;
  color: var(--white); margin-bottom: 1.2rem;
}
.footer-info ul li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
  margin-bottom: .8rem; line-height: 1.6;
}
.footer-info ul li i { color: var(--gold); margin-top: .2rem; min-width: 14px; }
.footer-info ul li a { color: rgba(255,255,255,.5); }
.footer-info ul li a:hover { color: var(--gold); }
.footer-links ul li { margin-bottom: .6rem; }
.footer-links ul li a { font-size: .82rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: .83rem; font-weight: 500; color: var(--dark); margin-bottom: .5rem; }
.form-label .req { color: var(--gold); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%; padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans); font-size: .9rem; color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.1);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: .35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1A1208 0%, #2C2010 100%);
  padding: 9rem 0 4rem;
  text-align: center;
}
.page-hero .section-label { margin-bottom: .8rem; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white); margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,.55); font-size: .95rem; }

/* ============================================
   MISC COMPONENTS
   ============================================ */
.badge {
  display: inline-block; padding: .25rem .75rem;
  border-radius: 20px; font-size: .75rem; font-weight: 500;
}
.badge-gold { background: rgba(201,169,110,.12); color: var(--gold); border: 1px solid rgba(201,169,110,.3); }

.alert {
  padding: 1rem 1.4rem; border-radius: var(--radius);
  font-size: .88rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* overlay / modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; max-width: 480px; width: 90%;
  transform: translateY(20px); transition: var(--transition);
  position: relative;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 1.2rem; color: var(--text-light); cursor: pointer;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .membership-cards { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0; box-shadow: var(--shadow-lg);
    transition: right .4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: var(--text) !important; width: 100%; padding: .8rem 0; border-bottom: 1px solid var(--border); }
  .nav-auth { border-left: none; padding-left: 0; margin-left: 0; flex-direction: column; width: 100%; }
  .nav-toggle { display: flex; }
  .nav-reserve { border: none; background: none !important; color: var(--gold) !important; }
  .events-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .membership-cards { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .blog-cta-box { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .container { padding: 0 1.2rem; }
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
