/* ==========================================================================
   Lumina Salon & Studio — demo site styles (fictional example salon)
   Design system: deep plum ink, rose accent, warm cream.
   ========================================================================== */

:root {
  --ink: #31182c;
  --ink-2: #47253d;
  --rose: #c4457a;
  --rose-dark: #a2335f;
  --gold: #d9a441;
  --cream: #faf3ec;
  --cream-2: #f6e7da;
  --paper: #fffdf9;
  --text: #2b2126;
  --muted: #77636e;
  --line: rgba(49, 24, 44, 0.12);
  --shadow-lg: 0 30px 70px -30px rgba(49, 24, 44, 0.45);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

/* ======================= DEMO BANNER ======================= */
.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.demo-banner-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 10px;
}
.demo-banner-text { opacity: 0.92; }

/* ======================= NAV ======================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; font-size: 17px; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--rose), var(--ink));
  font-size: 18px;
  box-shadow: 0 8px 20px -8px rgba(196, 69, 122, 0.8);
}
.brand-name em { font-style: normal; color: var(--rose); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--text); font-size: 14.5px; font-weight: 550; }
.nav-links a:hover { color: var(--rose); text-decoration: none; }
.nav-cta { margin-left: 6px; }
.nav-burger {
  display: none;
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 24px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav-mobile a { padding: 10px 4px; color: var(--text); font-size: 15px; font-weight: 550; border-radius: 8px; }
.nav-mobile a:hover { background: var(--cream-2); color: var(--rose); text-decoration: none; }
.nav-mobile .btn { margin-top: 8px; text-align: center; }

/* ======================= BUTTONS ======================= */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 14px 28px -12px rgba(196, 69, 122, 0.85); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light { background: var(--paper); color: var(--ink); box-shadow: 0 10px 22px -12px rgba(49, 24, 44, 0.5); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ======================= HERO ======================= */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(49, 24, 44, 0.88) 0%, rgba(49, 24, 44, 0.62) 45%, rgba(49, 24, 44, 0.28) 100%); }
.hero-content { position: relative; z-index: 1; width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 130px; color: #fff; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.85); margin-bottom: 18px; }
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; }
.hero-title { font-size: clamp(40px, 6.4vw, 72px); line-height: 1.04; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 22px; }
.hero-sub { max-width: 560px; font-size: 17.5px; color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-facts { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; color: rgba(255, 255, 255, 0.88); }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 7px;
}
.hero-scroll span { width: 4px; height: 8px; border-radius: 2px; background: #fff; animation: scroll-hint 1.6s infinite; }
@keyframes scroll-hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }

/* ======================= TICKER ======================= */
.ticker { background: var(--gold); overflow: hidden; padding: 10px 0; }
.ticker-track { display: flex; gap: 26px; white-space: nowrap; animation: ticker 26s linear infinite; width: max-content; }
.ticker-track span { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12.5px; color: var(--ink); }
.ticker-track i { color: var(--ink); opacity: 0.5; font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======================= SECTIONS ======================= */
.section { padding: 92px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.12; color: var(--ink); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 14px; }
.section-note { color: var(--muted); font-size: 15.5px; }
.section-note em { color: var(--rose-dark); font-style: normal; font-weight: 600; }

/* ======================= SERVICES ======================= */
.services { background: var(--cream); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--cream-2); font-size: 24px; margin-bottom: 18px;
}
.service-card h3 { font-size: 18.5px; color: var(--ink); margin-bottom: 8px; }
.service-meta { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.service-price { font-weight: 800; color: var(--rose); font-size: 15px; }

/* ======================= ABOUT ======================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 24px; box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; right: -14px; bottom: -14px;
  background: var(--ink); color: var(--cream);
  border-radius: 18px; padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-big { display: block; font-size: 26px; font-weight: 800; color: var(--gold); line-height: 1; }
.about-badge-small { font-size: 11.5px; opacity: 0.85; }
.about-copy h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.14; color: var(--ink); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 18px; }
.about-copy p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.about-points { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.about-points li { padding-left: 28px; position: relative; font-size: 15px; color: var(--text); }
.about-points li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.about-points strong { color: var(--ink); }

/* ======================= BOOK ======================= */
.book { background: var(--ink); }
.book .eyebrow { color: var(--gold); }
.book .section-head h2 { color: var(--cream); }
.book .section-head { margin-bottom: 40px; }
.book-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.book-card {
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(255, 253, 249, 0.14);
  border-radius: 20px; padding: 30px 26px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.book-card:hover { background: rgba(255, 253, 249, 0.1); transform: translateY(-3px); }
.book-step {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.book-card h3 { color: var(--cream); font-size: 17.5px; margin-bottom: 8px; }
.book-card p { color: rgba(250, 243, 236, 0.78); font-size: 14.5px; }
.book-card a { color: var(--gold); font-weight: 600; }
.book-note { margin-top: 26px; text-align: center; font-size: 13.5px; color: rgba(250, 243, 236, 0.6); }

/* ======================= VISIT / CONTACT ======================= */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.visit-copy h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.14; color: var(--ink); font-weight: 800; margin-bottom: 18px; }
.visit-address { font-style: normal; font-size: 17px; color: var(--text); margin-bottom: 10px; line-height: 1.7; }
.visit-address strong { color: var(--ink); }
.visit-desc { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.contact-list { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.contact-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--cream-2); font-size: 17px; flex: 0 0 auto; }
.contact-list strong { color: var(--ink); display: block; font-size: 13.5px; }
.contact-list small { color: var(--muted); font-size: 12px; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-actions .btn-ghost { border-color: var(--rose); color: var(--rose); }
.visit-actions .btn-ghost:hover { background: rgba(196, 69, 122, 0.08); }
.visit-hours { position: sticky; top: 96px; }
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 30px 26px;
  box-shadow: 0 20px 45px -30px rgba(49, 24, 44, 0.35);
}
.hours-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.hours-head h3 { font-size: 18px; color: var(--ink); }
.hours-pill {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cream-2); color: var(--rose-dark); border-radius: 999px; padding: 4px 10px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 9px 4px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.hours-table th { color: var(--ink); font-weight: 650; width: 42%; }
.hours-table td { color: var(--muted); }
.hours-note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hours-note em { color: var(--rose-dark); font-style: normal; font-weight: 600; }

/* ======================= FOOTER ======================= */
.footer { background: var(--ink); color: rgba(250, 243, 236, 0.72); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.footer-brand { color: var(--cream); font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-addr { font-size: 13.5px; }
.footer-demo-tag {
  display: inline-block; margin-left: 8px;
  background: var(--gold); color: var(--ink);
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 999px; padding: 2px 8px; vertical-align: middle;
}
.footer-note { font-size: 12.5px; max-width: 560px; opacity: 0.75; }

/* ======================= REVEAL ======================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-hours { position: static; }
  .about-badge { right: 12px; bottom: 12px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: 68px 0; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 90px 0 120px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; }
}
