/* ===== AURELIA SERVICES CSS ===== */
/* Aesthetic: Bold dark editorial with deep jewel-toned panel images and strong type */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian: #0d0c0b;
  --deep: #141210;
  --surface: #1a1714;
  --card: #201d19;
  --gold: #c9a96e;
  --gold-light: #e2c895;
  --cream: #f5ede0;
  --cream-muted: #d4c4ae;
  --text: #c8b99a;
  --text-dim: #7a6e60;
  --border: rgba(201,169,110,0.15);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body { background: var(--obsidian); color: var(--cream); font-family: var(--ff-body); font-size: 15px; line-height: 1.7; overflow-x: hidden; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 20px 60px; transition: var(--transition); }
.nav.scrolled { background: rgba(13,12,11,0.95); backdrop-filter: blur(20px); padding: 14px 60px; border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.logo-text { font-family: var(--ff-display); font-size: 28px; font-weight: 600; letter-spacing: 8px; color: var(--gold); line-height: 1; }
.logo-sub { font-size: 9px; letter-spacing: 3px; color: var(--text-dim); text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 36px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--obsidian); text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; padding: 12px 28px; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--gold); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--deep); z-index: 999; display: flex; align-items: center; justify-content: center; transition: right 0.5s cubic-bezier(0.77,0,0.175,1); }
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a { text-decoration: none; font-family: var(--ff-display); font-size: 36px; font-weight: 300; color: var(--cream); transition: color 0.3s; }
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu .mob-cta { display: inline-block; margin-top: 20px; background: var(--gold); color: var(--obsidian) !important; font-family: var(--ff-body) !important; font-size: 12px !important; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 14px 40px; }

/* PAGE HERO */
.page-hero {
  position: relative;
  height: 55vh; min-height: 400px;
  display: flex; align-items: flex-end;
  padding: 80px 80px;
  background: var(--deep);
  overflow: hidden;
}
.ph-deco-num {
  position: absolute;
  right: 80px; bottom: 60px;
  font-family: var(--ff-display);
  font-size: clamp(100px, 16vw, 220px);
  font-weight: 300;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  pointer-events: none;
}
.ph-breadcrumb { font-size: 11px; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; margin-bottom: 16px; }
.ph-breadcrumb span { color: var(--gold); }
.ph-title { font-family: var(--ff-display); font-size: clamp(60px,8vw,110px); font-weight: 300; line-height: 1; color: var(--cream); margin-bottom: 16px; }
.ph-title em { font-style: italic; color: var(--gold); }
.ph-sub { font-size: 14px; color: var(--text-dim); letter-spacing: 2px; }

/* REVEAL */
.reveal-up { opacity: 0; transform: translateY(40px); animation: revealUp 0.9s cubic-bezier(0.25,0.46,0.45,0.94) forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: 0.08s; }
.scroll-reveal.delay-2 { transition-delay: 0.16s; }
.scroll-reveal.delay-3 { transition-delay: 0.24s; }
.scroll-reveal.delay-4 { transition-delay: 0.32s; }
.scroll-reveal.delay-5 { transition-delay: 0.40s; }

/* TAB BAR */
.tab-bar {
  position: sticky;
  top: 72px;
  z-index: 900;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.tab-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}
.tab-inner::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn i { font-size: 14px; }

/* SERVICE PANELS */
.service-panels { max-width: 1400px; margin: 0 auto; padding: 80px 80px; }

.service-panel { display: none; }
.service-panel.active { display: block; }

/* Panel Intro */
.panel-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.pi-text .section-tag { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; position: relative; padding-left: 30px; }
.pi-text .section-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 1px; background: var(--gold); }
.panel-title { font-family: var(--ff-display); font-size: clamp(36px,4vw,60px); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 24px; }
.panel-title em { font-style: italic; color: var(--gold); }
.pi-text p { color: var(--text); font-size: 14px; line-height: 1.9; font-weight: 300; }

.pi-img { height: 420px; border-radius: 2px; }
.img-placeholder { width: 100%; height: 100%; position: relative; overflow: hidden; }
.img-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%); }
.panel-img-hair { background: linear-gradient(135deg, #1e1814 0%, #2b2218 100%); }
.panel-img-skin { background: linear-gradient(135deg, #1a1c1e 0%, #242629 100%); }
.panel-img-nails { background: linear-gradient(135deg, #1c1a1e 0%, #28242c 100%); }
.panel-img-body { background: linear-gradient(135deg, #1a1e1c 0%, #242c28 100%); }
.panel-img-bridal { background: linear-gradient(135deg, #1e1a14 0%, #2c2218 100%); }
.panel-img-wellness { background: linear-gradient(135deg, #1c1e1a 0%, #282c24 100%); }

/* Service List */
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.sl-group { margin-bottom: 40px; }
.sg-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sl-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,169,110,0.07);
  font-size: 14px;
  color: var(--cream-muted);
  transition: var(--transition);
}
.sl-item:hover { color: var(--cream); padding-left: 8px; }
.sl-dur { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; white-space: nowrap; margin-left: 20px; }

/* Panel CTA */
.panel-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--gold);
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 32px;
  transition: var(--transition);
}
.btn-ghost-gold:hover { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--obsidian); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 18px 36px; position: relative; overflow: hidden; transition: var(--transition);
}
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold-light); transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(201,169,110,0.3); }

/* SECTION-TAG styles */
.section-tag { font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; position: relative; padding-left: 30px; }
.section-tag::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 20px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--ff-display); font-size: clamp(36px,4vw,58px); font-weight: 300; line-height: 1.15; color: var(--cream); margin-bottom: 30px; }
.section-title em { font-style: italic; color: var(--gold); }

/* TRUST STRIP */
.trust-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 50px 80px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.ts-item { display: flex; align-items: center; gap: 12px; padding: 0 50px; }
.ts-item i { color: var(--gold); font-size: 20px; }
.ts-item span { font-size: 12px; letter-spacing: 1.5px; color: var(--cream-muted); }
.ts-div { width: 1px; height: 50px; background: var(--border); }

/* FOOTER */
.footer { background: var(--deep); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 60px; padding: 80px 80px 60px; max-width: 1400px; margin: 0 auto; }
.footer-logo { font-family: var(--ff-display); font-size: 32px; font-weight: 600; letter-spacing: 8px; color: var(--gold); margin-bottom: 14px; }
.footer-brand p { font-size: 12px; color: var(--text-dim); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border: 1px solid var(--border); color: var(--text-dim); text-decoration: none; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { text-decoration: none; color: var(--text-dim); font-size: 13px; transition: color 0.3s, padding-left 0.3s; }
.footer-links ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-dim); margin-bottom: 14px; line-height: 1.6; }
.footer-contact p i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 80px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-dim); letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav { padding: 20px 40px; } .nav.scrolled { padding: 14px 40px; }
  .page-hero { padding: 60px 40px; }
  .tab-inner { padding: 0 40px; }
  .service-panels { padding: 60px 40px; }
  .panel-intro { grid-template-columns: 1fr; gap: 40px; }
  .pi-img { height: 300px; }
  .service-list { grid-template-columns: 1fr; gap: 0; }
  .trust-strip { padding: 40px; }
  .ts-item { padding: 0 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 40px; }
  .footer-bottom { padding: 20px 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 18px 24px; } .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; } .hamburger { display: flex; }
  .page-hero { padding: 120px 24px 60px; height: auto; }
  .ph-title { font-size: 52px; } .ph-deco-num { display: none; }
  .tab-inner { padding: 0 24px; } .tab-btn { padding: 18px 16px; }
  .service-panels { padding: 40px 24px; }
  .trust-strip { flex-direction: column; gap: 24px; } .ts-div { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
