/* ============================================================
   LUXALLURE AESTHETIC CENTER
   Warm-gold / cream editorial theme
   Palette + type extracted from brand marketing graphics
   Layout structure adapted from supplied reference layout
   ============================================================ */

:root {
  --gold:        #b8862f;
  --gold-bright: #d9ad55;
  --gold-deep:   #8a6321;
  --gold-soft:   #e7cf9c;
  --cream:       #f7efe1;
  --cream-2:     #fbf6ec;
  --paper:       #fffdf9;
  --ink:         #2b2620;
  --ink-soft:    #6b6357;
  --line:        rgba(184,134,47,.28);
  --shadow:      0 24px 60px -28px rgba(80,58,15,.45);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; }

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

a { color: inherit; text-decoration: none; }

.wrap { width: min(1180px, 90vw); margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #3a2a06;
  border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
  box-shadow: 0 12px 26px -12px rgba(184,134,47,.75);
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(184,134,47,.9); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn.ghost:hover { background: var(--gold); color: #3a2a06; border-color: var(--gold); }

/* ---------- Logo mark ---------- */
.logo { display: inline-flex; align-items: center; gap: .6rem; }
.logo .mark { width: 34px; height: 34px; flex: none; }
.logo .type { line-height: 1; }
.logo .name {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 1.05rem;
  color: var(--ink);
}
.logo .sub {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .5em;
  font-size: .5rem;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.4rem clamp(1.2rem, 5vw, 3.5rem);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
.nav .links { display: flex; gap: 2.2rem; }
.nav .links a, .nav .actions a.textlink {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); transition: color .25s;
}
.nav .links a:hover { color: var(--gold); }
.nav .center { justify-self: center; }
.nav .actions { justify-self: end; }
.nav.scrolled {
  background: rgba(255,253,249,.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -20px rgba(80,58,15,.5);
  padding-block: .85rem;
  border-bottom: 1px solid var(--line);
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0;
  background: url("assets/img/hero.jpg") center/cover no-repeat;
  transform: scale(1.05);
}
.hero::after { /* warm brand glow + legibility wash */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% 15%, rgba(217,173,85,.45), transparent 55%),
    linear-gradient(90deg, rgba(30,22,8,.72) 0%, rgba(30,22,8,.35) 45%, rgba(30,22,8,.05) 100%),
    linear-gradient(0deg, rgba(20,15,5,.55), rgba(20,15,5,.05));
}
.hero .inner { position: relative; z-index: 2; max-width: 620px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: .98; letter-spacing: .01em; margin-bottom: 1.3rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero p.lead {
  font-size: 1.08rem; max-width: 460px; margin-bottom: 2.2rem;
  color: rgba(255,255,255,.9); font-weight: 300; letter-spacing: .01em;
}
.hero .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero .scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: .62rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.75); display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero .scroll-hint span.line { width: 1px; height: 40px; background: rgba(255,255,255,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ---------- Section base ---------- */
section { position: relative; }
.pad { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05; }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-weight: 300; font-size: 1.05rem; }

/* ---------- Services grid (card row from reference) ---------- */
.services { background: linear-gradient(180deg, var(--paper), var(--cream-2)); }
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.card {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/4.2; box-shadow: var(--shadow);
  isolation: isolate;
}
.card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.card:hover img { transform: scale(1.08); }
.card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(28,20,6,.85) 0%, rgba(28,20,6,.25) 45%, rgba(28,20,6,0) 70%);
}
.card .body {
  position: absolute; inset: auto 0 0 0; z-index: 2; padding: 1.5rem 1.4rem 1.6rem;
  color: #fff; text-align: center;
}
.card .body h3 { font-size: 1.55rem; line-height: 1.1; margin-bottom: .3rem; }
.card .body .learn {
  display: inline-block; margin-top: .9rem;
  font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft); border-bottom: 1px solid var(--gold-soft); padding-bottom: 3px;
  transition: color .25s, border-color .25s;
}
.card:hover .learn { color: #fff; border-color: #fff; }

/* ---------- Treatment areas strip ---------- */
.areas { background: var(--ink); color: #f7efe1; }
.areas .wrap { text-align: center; }
.areas .eyebrow { color: var(--gold-soft); }
.areas h2 { font-size: clamp(1.8rem,3.4vw,2.7rem); margin-bottom: 2.6rem; }
.area-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.4rem;
}
.area {
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  width: 130px; padding: 1.4rem .5rem; border-radius: 8px;
  border: 1px solid rgba(231,207,156,.18);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, transform .3s, background .3s;
}
.area:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(217,173,85,.06); }
.area .ico {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-deep));
  color: #2b1e05;
}
.area .ico svg { width: 24px; height: 24px; }
.area span.lbl { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: #e7cf9c; }

/* ---------- Quote / results (Memorable Moments equivalent) ---------- */
.quote {
  position: relative; color: #fff; text-align: center;
  background: url("assets/img/results-bg.jpg") center/cover fixed no-repeat;
}
.quote::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(24,17,5,.72), rgba(24,17,5,.55)); }
.quote .wrap { position: relative; z-index: 2; max-width: 780px; }
.quote .mark { font-family: var(--serif); font-size: 5rem; line-height: 0; color: var(--gold-soft); display:block; height: 2.4rem; }
.quote h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); font-style: italic; line-height: 1.25; }
.quote .attr { margin-top: 1.6rem; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); }
.stats { display: flex; justify-content: center; gap: clamp(2rem,6vw,5rem); margin-top: 3rem; flex-wrap: wrap; }
.stat .num { font-family: var(--serif); font-size: 2.8rem; color: #fff; line-height: 1; }
.stat .cap { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: .5rem; }

/* ---------- Split / Why choose (packages equivalent) ---------- */
.split { background: var(--cream); }
.split .grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split .media { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.split .media img { width:100%; height:100%; object-fit: cover; }
.split h2 { font-size: clamp(2rem,4vw,3.2rem); line-height: 1.05; margin-bottom: 1.4rem; }
.feature { display: flex; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.feature:first-of-type { border-top: none; }
.feature .n { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); font-style: italic; flex: none; width: 2rem; }
.feature h3 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: .2rem; }
.feature p { color: var(--ink-soft); font-size: .95rem; font-weight: 300; }

/* ---------- About band ---------- */
.about { background: var(--paper); }
.about .grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items:center; }
.about .media { border-radius:6px; overflow:hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.about .media img { width:100%; height:100%; object-fit:cover; }
.about h2 { font-size: clamp(2rem,4vw,3.2rem); line-height:1.05; margin-bottom:1.2rem; }
.about p { color: var(--ink-soft); font-weight:300; margin-bottom:1rem; }

/* ---------- Contact / footer ---------- */
.contact { background: var(--ink); color: #f2e9d7; }
.contact .grid { display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; }
.contact h2 { font-size: clamp(2rem,4vw,3rem); line-height:1.05; margin-bottom: 1rem; color:#fff; }
.contact .eyebrow { color: var(--gold-soft); }
.contact p, .contact li { color: rgba(242,233,215,.8); font-weight: 300; }
.contact h4 { font-size:.72rem; letter-spacing:.22em; text-transform:uppercase; color: var(--gold-soft); margin-bottom:1rem; font-weight:600; }
.contact ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.contact a:hover { color: var(--gold-bright); }
.contact .phone { font-family: var(--serif); font-size:1.4rem; color:#fff; }
.footer-bar {
  border-top: 1px solid rgba(231,207,156,.15); margin-top: 3.5rem; padding-top: 1.6rem;
  display:flex; justify-content: space-between; flex-wrap: wrap; gap:1rem;
  font-size:.7rem; letter-spacing:.08em; color: rgba(242,233,215,.55);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split .grid, .about .grid, .contact .grid { grid-template-columns: 1fr; }
  .split .media, .about .media { max-width: 460px; }
  .quote { background-attachment: scroll; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: auto 1fr; }
  .nav .links { display: none; }
  .nav .center { justify-self: start; }
  .nav .actions { justify-self: end; }
  .cards { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .card .body h3 { font-size: 1.3rem; }
}
@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
}
