/* =====================================================================
   Anastasia's Skin Lounge — global styles
   Aesthetic: dark luxury — charcoal & graphite, champagne + soft gold,
   warm ivory accent bands. Playfair Display headings, Montserrat body.
   ===================================================================== */

:root {
  /* Palette */
  --cream: #14110d;        /* page background (warm near-black) */
  --sand: #1a1611;         /* alternate dark surface */
  --sand-deep: #2a241b;    /* borders, hovers */
  --ink: #f4efe7;          /* main text (light on dark) */
  --muted: rgba(244, 239, 231, 0.56);
  --line: rgba(244, 239, 231, 0.11);
  --gold: #d4af37;         /* soft gold — primary accent / buttons */
  --gold-deep: #c9a66b;    /* champagne — accent text, prices */
  --gold-soft: #e6d3a3;
  --dark: #0c0a07;         /* darkest bands / footer */
  --dark-soft: #14110d;
  --white: #201b14;        /* card / input surface on dark */

  /* Ivory accent band */
  --ivory: #f8f5f0;
  --ivory-line: #e7ddcb;
  --ink-dark: #2f2f32;     /* text on ivory */
  --ink-dark-muted: #6f6659;
  --gold-on-light: #a9802e;/* gold accent readable on ivory */

  --danger: #e0795f;
  --success: #8cbf76;

  /* Type */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Parisienne", cursive;

  /* Layout */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: 0.3px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.4rem;
}

.section { padding: clamp(3.5rem, 9vw, 7rem) 0; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.section-head { max-width: 640px; margin-bottom: 2.8rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.gold-rule {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  border: 0;
  margin: 1.1rem 0 1.4rem;
}
.section-head--center .gold-rule { margin-inline: auto; }

.script {
  font-family: var(--font-script);
  color: var(--gold-deep);
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95em 2em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), #c39a2f);
  color: #221d10;
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.26);
}
.btn--gold:hover { box-shadow: 0 16px 34px rgba(212, 175, 55, 0.4); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: #221d10; }

.btn--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(231, 211, 161, 0.45);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255, 255, 255, 0.16); }

.btn--block { width: 100%; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 31, 34, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--gold-deep);
}
.brand__sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 1.4rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: var(--dark);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(90% 80% at 0% 110%, rgba(201, 166, 107, 0.10), transparent 60%),
    var(--cream);
}
.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6rem);
}
.hero h1 { margin-bottom: 0.2em; }
.hero h1 .script { display: block; font-size: 1.15em; line-height: 1; margin-bottom: 0.1em; }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.hero__stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.hero__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.hero__stat span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.hero__art {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(8, 6, 4, 0.28) 0%, rgba(8, 6, 4, 0.5) 100%),
    url("https://d8j0ntlcm91z4.cloudfront.net/user_3CEmTx3woTvnJ4hvLtOoN7PLFas/hf_20260610_030825_190c0c27-b224-4b2a-9adc-2ddad2a44f5d.png") center / cover no-repeat;
  display: grid;
  place-items: start center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero__art::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(55% 45% at 50% 26%, rgba(212, 175, 55, 0.16), transparent 70%);
}
.hero__art img {
  width: 48%; max-width: 240px; position: relative;
  margin-top: 11%;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 34px rgba(212, 175, 55, 0.28));
}

/* ---------- Glass panel utility ---------- */
.glass {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

/* ---------- Feature cards ---------- */
.features { background: var(--sand); }
.card-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(212, 175, 55, 0.4); }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(201, 166, 107, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Featured services strip ---------- */
.featured { background: var(--cream); }
.featured-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.fcard {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(212, 175, 55, 0.4); }
.fcard__name { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.fcard__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 0.8rem; }
.fcard__price { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-deep); font-weight: 600; }
.fcard__time { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, #1c1c1f, var(--dark-soft));
  border-block: 1px solid var(--line);
  text-align: center;
}
.cta-band p { color: var(--muted); max-width: 48ch; margin-inline: auto; }

/* ---------- Service menu ---------- */
.menu-cat { margin-bottom: 3.2rem; }
.menu-cat__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.menu-cat__head h3 { margin: 0; white-space: nowrap; }
.menu-cat__head .line { flex: 1; height: 1px; background: var(--line); }
.menu-cat__note { font-size: 0.82rem; color: var(--muted); }

.service-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
}
.service-row__name { font-size: 1.02rem; color: var(--ink); }
.service-row__name small { display: block; color: var(--muted); font-size: 0.82rem; }
.service-row__dots { flex: 1; border-bottom: 1px dotted var(--sand-deep); transform: translateY(-4px); }
.service-row__time {
  font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.service-row__price {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold-deep);
  min-width: 74px;
  text-align: right;
}
.service-row__price .free { color: var(--success); font-size: 0.95rem; }

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2.5rem; align-items: center; }
.about-art {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #1c1c1f, #29292d);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.about-art::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 35%, rgba(212, 175, 55, 0.22), transparent 70%);
}
.about-art img { width: 74%; max-width: 300px; position: relative; }
.values { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.values li { display: flex; gap: 0.8rem; align-items: flex-start; }
.values .tick {
  flex: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(212, 175, 55, 0.18); color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: grid; place-items: center; font-size: 0.85rem; margin-top: 3px;
}

.info-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-top: 2.5rem; }
.info-card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.info-card h4 {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.6rem;
}
.info-card p { margin: 0; color: var(--muted); }

/* ---------- About split (mockup layout) ---------- */
.about-split { display: grid; grid-template-columns: 1fr; background: var(--cream); }
.about-split__media {
  position: relative; min-height: 360px; overflow: hidden;
  display: grid; place-items: center;
  background:
    linear-gradient(160deg, rgba(8, 6, 4, 0.22), rgba(8, 6, 4, 0.5)),
    url("https://d8j0ntlcm91z4.cloudfront.net/user_3CEmTx3woTvnJ4hvLtOoN7PLFas/hf_20260610_033248_490b20cf-b1a6-4f10-a10a-4dfc407682fa.png") center / cover no-repeat;
}
.about-split__media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 45% at 50% 30%, rgba(212, 175, 55, 0.16), transparent 70%);
}
.about-split__media img {
  width: 54%; max-width: 260px; position: relative; margin-top: -6%;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 34px rgba(212, 175, 55, 0.28));
}
.about-split__panel {
  background: var(--ivory); color: var(--ink-dark);
  padding: clamp(2.4rem, 6vw, 4.6rem) clamp(1.6rem, 5vw, 4rem);
}
.about-split__panel .eyebrow { color: var(--gold-on-light); }
.about-split__panel h2 { color: var(--ink-dark); font-size: clamp(2.1rem, 4.5vw, 3.1rem); margin-bottom: 0.3em; }
.about-split__panel > p { color: var(--ink-dark-muted); font-size: 1.04rem; }
.about-split__panel .gold-rule { background: linear-gradient(90deg, var(--gold-on-light), #dcc188); }
.about-split__panel strong.hl { color: var(--gold-on-light); font-weight: 600; }

.about-points { list-style: none; margin: 1.9rem 0 0; padding: 0; }
.about-points li {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.05rem 0; border-bottom: 1px solid var(--ivory-line);
}
.about-points li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-points .ic {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold-on-light); color: var(--gold-on-light);
  display: grid; place-items: center;
}
.about-points .ic svg { width: 21px; height: 21px; }
.about-points h4 {
  font-family: var(--font-serif); font-weight: 600; color: var(--ink-dark);
  font-size: 1.14rem; margin: 0.1rem 0 0.15rem;
}
.about-points li p { margin: 0; font-size: 0.92rem; color: var(--ink-dark-muted); }

/* ---------- About stats band ---------- */
.about-stats { background: var(--dark); border-top: 1px solid var(--line); }
.about-stats__grid {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  justify-content: space-around; padding-block: clamp(2rem, 5vw, 3rem);
}
.about-stat { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; text-align: center; flex: 1 1 150px; }
.about-stat svg { width: 30px; height: 30px; color: var(--gold); }
.about-stat strong { font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold); font-weight: 600; line-height: 1; }
.about-stat span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

@media (min-width: 880px) {
  .about-split { grid-template-columns: 0.92fr 1.08fr; }
  .about-split__media { min-height: 620px; }
}

/* ---------- Ivory accent band (overrides for light sections) ---------- */
.section--ivory { background: var(--ivory); color: var(--ink-dark); }
.section--ivory h1, .section--ivory h2, .section--ivory h3, .section--ivory h4 { color: var(--ink-dark); }
.section--ivory .eyebrow { color: var(--gold-on-light); }
.section--ivory .section-head p { color: var(--ink-dark-muted); }
.section--ivory .card,
.section--ivory .fcard,
.section--ivory .info-card { background: #fff; border-color: var(--ivory-line); }
.section--ivory .card p,
.section--ivory .info-card p,
.section--ivory .fcard__time { color: var(--ink-dark-muted); }
.section--ivory .fcard__name,
.section--ivory .service-row__name { color: var(--ink-dark); }
.section--ivory .card h3 { color: var(--ink-dark); }
.section--ivory .fcard__price,
.section--ivory .service-row__price,
.section--ivory .info-card h4 { color: var(--gold-on-light); }
.section--ivory .card:hover,
.section--ivory .fcard:hover { border-color: var(--gold-on-light); }
.section--ivory .card__icon,
.section--ivory .values .tick {
  background: linear-gradient(135deg, #f0e6cf, #e9ddc2);
  border-color: var(--ivory-line); color: var(--gold-on-light);
}
.section--ivory .values li { color: var(--ink-dark); }
.section--ivory .btn--ghost { color: var(--ink-dark); border-color: var(--gold-on-light); }
.section--ivory .btn--ghost:hover { background: var(--gold-on-light); color: #fff; }
.section--ivory .menu-cat__head .line,
.section--ivory .service-row { border-color: var(--ivory-line); }
.section--ivory .menu-cat__note { color: var(--ink-dark-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(170deg, #1d1d20, #141416);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 7vw, 5rem);
}
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; padding-bottom: 3rem; }
.footer-brand .brand__name { color: var(--gold-deep); }
.footer-brand .brand__sub { color: var(--muted); }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: var(--muted); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(231, 211, 161, 0.3);
  display: grid; place-items: center; font-size: 1rem;
}
.socials a:hover { background: var(--gold); color: #221d10; border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: space-between;
  font-size: 0.8rem; color: var(--muted);
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
  .hero__art { min-height: 460px; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ---------- Accessibility ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
