/* ===========================
   IYAA Studio - Main Stylesheet
   =========================== */

/* --- Google Fonts Import --- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap");

/* --- CSS Variables --- */
:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --gold: #f5c518;
  --gold-dark: #d4a614;
  --gold-light: #ffd84d;
  --white: #ffffff;
  --text-muted: #888888;
  --text-secondary: #cccccc;
  --border: #2a2a2a;
  --border-gold: rgba(245, 197, 24, 0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(245, 197, 24, 0.15);
  --header-height: 72px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-secondary);
}

.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--text-muted);
}
.text-center {
  text-align: center;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section --- */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.logo span {
  color: var(--gold);
}

.logo:hover {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(245, 197, 24, 0.08);
}

.nav-cta {
  background: var(--gold);
  color: var(--bg-primary) !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--bg-primary) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 999;
  padding: 40px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.4rem;
  padding: 14px 28px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.mobile-nav .nav-cta {
  margin-top: 16px;
  font-size: 1.1rem;
  padding: 14px 32px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 60% 50%,
      rgba(245, 197, 24, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(245, 197, 24, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight {
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.05) 0%,
    transparent 60%
  );
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--bg-primary);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.hero-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  display: block;
  line-height: 1;
}

/* ===========================
   FEATURES / ABOUT
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===========================
   ZONES / CARDS GRID
   =========================== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.zone-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.zone-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.zone-image.white-bg {
  background-image: url("../images/zone-white.jpg");
  background-size: cover;
  background-position: center;
}
.zone-image.black-bg {
  background-image: url("../images/zone-black.jpg");
  background-size: cover;
  background-position: center;
}
.zone-image.natural-bg {
  background-image: url("../images/zone-natural.jpg");
  background-size: cover;
  background-position: center;
}
.zone-image.studio-bg {
  background-image: url("../images/zone-full.jpg");
  background-size: cover;
  background-position: center;
}

.zone-body {
  padding: 20px;
}

.zone-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.zone-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.zone-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(245, 197, 24, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #1a1a0a 0%, var(--bg-card) 100%);
}

.pricing-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.pricing-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.pricing-card .zone-image {
  aspect-ratio: 16/7;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 3rem;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-tier {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.pricing-tier-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-tier-price {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing-includes {
  margin-bottom: 24px;
}

.pricing-includes h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.pricing-includes li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===========================
   INVENTORY
   =========================== */
.inventory-section {
  margin-bottom: 48px;
}

.inventory-section-title {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.inventory-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.inventory-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.inventory-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.inventory-body {
  padding: 16px;
}

.inventory-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.inventory-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ===========================
   MAKEUP ROOM
   =========================== */
.makeup-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.makeup-section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.makeup-section-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.makeup-photo {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.makeup-body {
  padding: 24px;
}

.makeup-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.makeup-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.makeup-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-tag {
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.makeup-free-banner {
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.1),
    rgba(245, 197, 24, 0.05)
  );
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.makeup-free-banner h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.makeup-free-banner p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* ===========================
   CONTACTS PAGE
   =========================== */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-info-card h2 {
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact-value a {
  color: var(--gold);
}

.working-hours {
  margin-top: 28px;
  padding: 20px;
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}

.working-hours h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
  color: var(--text-secondary);
}

.hours-row.closed {
  color: var(--text-muted);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-card .section-subtitle {
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ===========================
   FORMS
   =========================== */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.12);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Success message */
.success-msg {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 500;
  margin-top: 16px;
}

.success-msg.show {
  display: block;
}

/* ===========================
   BOOKING / CALENDAR
   =========================== */
.booking-steps {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.booking-step.active {
  background: rgba(245, 197, 24, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.booking-step.completed {
  background: rgba(245, 197, 24, 0.08);
  border-color: var(--border-gold);
  color: var(--gold);
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking-step.active .step-num {
  background: var(--gold);
  color: var(--bg-primary);
}

.booking-step.completed .step-num {
  background: var(--gold);
  color: var(--bg-primary);
}

.booking-step.completed .step-num::after {
  content: "✓";
}

.booking-section {
  max-width: 800px;
  margin: 0 auto 48px;
  display: none;
}

.booking-section.active {
  display: block;
}

.booking-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* Zone selector */
.zone-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.zone-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.zone-option:hover {
  border-color: var(--border-gold);
}

.zone-option.selected {
  border-color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
}

.zone-option .zone-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.zone-option h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.zone-option p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Calendar */
.calendar-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 1.1rem;
}

.cal-nav {
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.available {
  background: rgba(34, 197, 94, 0.08);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.2);
}

.cal-day.available:hover {
  background: rgba(34, 197, 94, 0.18);
  transform: scale(1.1);
}

.cal-day.unavailable {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-day.selected {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  font-weight: 700;
  border-color: var(--gold) !important;
  transform: scale(1.1);
}

.cal-day.today {
  border-color: var(--gold);
}

/* Time slots */
.timeslots {
  margin-top: 28px;
}

.timeslots h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.timeslots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.timeslot {
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.timeslot.available {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.timeslot.available:hover {
  background: rgba(34, 197, 94, 0.15);
}

.timeslot.taken {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  text-decoration: line-through;
  cursor: not-allowed;
}

.timeslot.selected {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  border-color: var(--gold) !important;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.08) 0%,
    rgba(245, 197, 24, 0.03) 100%
  );
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: 64px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 197, 24, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  justify-content: center;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--text-muted);
}

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 560px;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal .section-subtitle {
  margin-bottom: 24px;
  text-align: left;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.8rem;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 260px;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-contact-item .icon {
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ===========================
   UTILITIES
   =========================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.divider-left {
  margin: 20px 0 0;
}

.badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===========================
   RESPONSIVE — 768px
   =========================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-main {
    aspect-ratio: 16/9;
    font-size: 4rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .makeup-sections {
    grid-template-columns: 1fr;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .zone-selector {
    grid-template-columns: 1fr;
  }
  .timeslots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .booking-steps {
    flex-wrap: wrap;
  }

  .booking-step {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .modal {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .zones-grid {
    grid-template-columns: 1fr;
  }
  .inventory-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================
   COOKIE BANNER
   =========================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.97);
  border-top: 1px solid rgba(245, 197, 24, 0.3);
  padding: 16px 24px;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  font-size: 0.88rem;
  color: #aaa;
}

.cookie-content a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===========================
   FOOTER LEGAL LINKS
   =========================== */
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    justify-content: center;
    margin-top: 8px;
  }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 64px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin: 40px 0 16px;
  font-family: "Playfair Display", serif;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--gold);
}

.legal-last-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
