/* =================================================
   OC Makeup & Henna — Dark Luxury Editorial Theme
   ================================================= */

:root {
  --bg: #0d0810;
  --bg-alt: #150e19;
  --bg-card: #1c1420;
  --bg-card-2: #241a29;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f6efe9;
  --text-soft: #cdbcc5;
  --text-mute: #93818b;

  --accent: #ff2f6e;       /* sharp crimson-rose */
  --accent-deep: #b8003f;
  --accent-soft: #ff7d9e;
  --accent-glow: rgba(255, 47, 110, 0.35);

  --gold: #f0c14e;
  --gold-deep: #c99524;
  --gold-soft: #ffe3a3;

  --violet: #b774f0;
  --violet-deep: #7c3fb0;
  --emerald: #2fd08f;
  --emerald-deep: #14875c;

  --grad-accent: linear-gradient(120deg, var(--gold) 0%, var(--accent) 65%);
  --grad-accent-2: linear-gradient(120deg, var(--accent) 0%, var(--violet) 100%);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  --glow-accent: 0 0 0 1px rgba(255, 47, 110, 0.35), 0 20px 45px rgba(255, 47, 110, 0.22);
  --glow-gold: 0 0 0 1px rgba(240, 193, 78, 0.35), 0 20px 45px rgba(240, 193, 78, 0.18);

  --radius: 16px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-soft);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 47, 110, 0.08), transparent 40%),
    radial-gradient(circle at 100% 30%, rgba(240, 193, 78, 0.06), transparent 40%);
}

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

a { color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--text);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }

.text-accent {
  font-style: italic;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-accent-invert {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}

p { margin: 0 0 16px; }

.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 680px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 54px;
}

.section-header p { color: var(--text-mute); }

.section-header h2::after,
.grid-2 h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: var(--grad-accent);
}
.grid-2 h2::after { margin: 16px 0 0; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.bg-cream-deep { background: var(--bg-alt); }
.bg-ink { background: var(--bg-card); color: var(--text-soft); }
.bg-ink h2, .bg-ink h3 { color: var(--text); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: var(--accent);
  color: var(--text);
  box-shadow: var(--glow-accent);
}
.btn-gold:hover { transform: translateY(-2px); background: var(--accent-deep); box-shadow: 0 20px 50px rgba(255, 47, 110, 0.35); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); transform: translateY(-2px); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline-light:hover { background: var(--text); border-color: var(--text); color: var(--bg); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------------- Header / Nav ---------------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 8, 16, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px var(--line-strong); }
.logo-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 10px 16px;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 1.5px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--text); }

.nav-cta {
  margin-left: 10px;
  padding: 11px 24px !important;
  background: var(--accent);
  color: var(--text) !important;
  border-radius: 999px;
  box-shadow: var(--glow-accent);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger .bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

@media (max-width: 860px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--line);
  }
  .nav-menu.active { display: flex; }
  .nav-link { display: block; padding: 14px 16px; }
  .nav-cta { text-align: center; justify-content: center; }
  .hamburger { display: flex; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--text);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  filter: saturate(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,8,16,0.35) 0%, rgba(13,8,16,0.55) 40%, rgba(13,8,16,0.96) 100%),
    radial-gradient(circle at 85% 12%, rgba(255,47,110,0.28), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 28px;
  margin: 0 auto;
  text-align: center;
}
.hero-content .eyebrow { color: var(--gold-soft); justify-content: center; }
.hero-content .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: var(--text); text-shadow: 0 6px 30px rgba(0,0,0,0.4); }
.hero-content .lead { color: rgba(246, 239, 233, 0.85); margin: 0 auto 34px; font-size: 1.18rem; }
.hero .btn-row { justify-content: center; }

.page-hero {
  position: relative;
  padding: 156px 0 76px;
  text-align: center;
  color: var(--text);
  background: var(--bg-alt);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,47,110,0.22), transparent 42%),
    radial-gradient(circle at 88% 85%, rgba(240,193,78,0.18), transparent 45%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--text); }
.page-hero .eyebrow { justify-content: center; }
.page-hero p { color: var(--text-mute); max-width: 620px; margin: 0 auto; }

/* ---------------- Cards / grids ---------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
}

.card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: center;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--glow-accent); border-color: var(--line-strong); }
.card img { height: 260px; width: 100%; object-fit: cover; filter: saturate(1.05); }
.card .card-body { padding: 28px 26px 34px; }
.card .card-body p { font-size: 0.95rem; color: var(--text-mute); }
.card .card-body h3 { color: var(--text); }

.card.card-rose { border-top-color: var(--accent); }
.card.card-purple { border-top-color: var(--violet); }
.card.card-teal { border-top-color: var(--emerald); }
.card.card-orange { border-top-color: var(--gold); }

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 47, 110, 0.12);
  border: 1px solid rgba(255, 47, 110, 0.35);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
}
.icon-circle.rose { background: rgba(255, 47, 110, 0.12); border-color: rgba(255, 47, 110, 0.35); color: var(--accent-soft); }
.icon-circle.purple { background: rgba(183, 116, 240, 0.14); border-color: rgba(183, 116, 240, 0.4); color: var(--violet); }
.icon-circle.teal { background: rgba(47, 208, 143, 0.14); border-color: rgba(47, 208, 143, 0.4); color: var(--emerald); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ---------------- Testimonials ---------------- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .testimonial-track { grid-template-columns: 1fr; } }

.testimonial-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  text-align: left;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.testimonial-card p.quote { font-style: italic; font-size: 1rem; color: var(--text-soft); position: relative; }
.testimonial-card .who { font-family: var(--serif); font-weight: 600; color: var(--accent-soft); margin-top: 14px; font-style: italic; }
.testimonial-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-mute);
  margin-top: 26px;
}

/* ---------------- Pricing ---------------- */
.pricing-block { margin-bottom: 60px; }
.pricing-block h3 { color: var(--text); }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pricing-table th, .pricing-table td {
  padding: 17px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-soft);
}
.pricing-table th {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  color: var(--bg);
  background: var(--grad-accent);
  border-bottom: none;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--bg-card-2); }
.pricing-table tr td:last-child { color: var(--gold); font-weight: 600; }
.price-note {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-top: 14px;
}

/* ---------------- Gallery ---------------- */
.gallery-grid {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-grid figure {
  margin: 0 0 18px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--line);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.gallery-grid figure:hover { box-shadow: var(--glow-accent); border-color: var(--line-strong); }
.gallery-grid img, .gallery-grid video { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 8, 0.95);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: var(--glow-accent); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---------------- About ---------------- */
.about-list { list-style: none; padding: 0; margin: 24px 0; }
.about-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 16px;
  font-size: 0.98rem;
  color: var(--text-soft);
}
.about-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.about-list b { color: var(--gold-soft); font-family: var(--serif); font-size: 1.05rem; font-weight: 600; }

.portrait-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-strong);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
  border-radius: var(--radius);
}

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 54px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-top: 3px solid var(--accent);
}
.contact-card:nth-child(2) { border-top-color: var(--violet); }
.contact-card:nth-child(3) { border-top-color: var(--emerald); }
.contact-card:nth-child(4) { border-top-color: var(--gold); }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--glow-accent); border-color: var(--line-strong); }
.contact-card h4 { margin-bottom: 6px; font-size: 1.1rem; color: var(--text); }
.contact-card p { margin: 0; font-size: 0.9rem; color: var(--text-mute); }

.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); filter: grayscale(0.3) contrast(1.05); }
.map-container iframe { width: 100%; height: 420px; border: 0; display: block; }

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.service-area-list li {
  background: rgba(255, 47, 110, 0.1);
  border: 1px solid rgba(255, 47, 110, 0.3);
  color: var(--accent-soft);
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}
.service-area-list li:nth-child(2n) { background: rgba(183, 116, 240, 0.1); border-color: rgba(183, 116, 240, 0.3); color: var(--violet); }
.service-area-list li:nth-child(3n) { background: rgba(240, 193, 78, 0.1); border-color: rgba(240, 193, 78, 0.3); color: var(--gold); }

/* ---------------- CTA banner ---------------- */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 90px 28px;
  background: var(--bg-card);
  color: var(--text);
  border-radius: var(--radius);
  margin: 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,47,110,0.3), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(240,193,78,0.22), transparent 50%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text); }
.cta-banner h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: var(--grad-accent);
}
.cta-banner .btn-row { justify-content: center; }
.cta-banner .btn-gold { background: var(--accent); color: var(--text); }

/* ---------------- Footer ---------------- */
footer {
  background: var(--bg-alt);
  color: var(--text-mute);
  padding: 64px 0 24px;
  margin-top: 100px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; font-size: 0.92rem; }
footer a { text-decoration: none; color: var(--text-mute); transition: color 0.2s; }
footer a:hover { color: var(--accent-soft); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 42px; height: 42px; border-radius: 50%; box-shadow: 0 0 0 2px var(--line-strong); }
.footer-brand span { font-family: var(--serif); font-size: 1.2rem; color: var(--text); font-weight: 700; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 26px;
  color: var(--text-mute);
  opacity: 0.7;
}
