:root {
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark: #a07830;
  --gold-pale: #f5e6c0;
  --logo-beige: #e8d6b4;
  --logo-beige-deep: #d6bd92;
  --brand-maroon: #74121d;
  --maroon: #6b0f1a;
  --maroon-dark: #4a0810;
  --maroon-light: #8b1525;
  --header-brown: #3c2415;
  --header-brown-deep: #24140b;
  --cream: #fdf6e3;
  --cream-dark: #f0e8d0;
  --text-dark: #1a0508;
  --text-mid: #4a2030;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(rgba(253, 246, 227, 0.9), rgba(253, 246, 227, 0.9)),
    url("BG Images/pic1.jpeg") center top / cover fixed no-repeat,
    var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--cream-dark);
  color: var(--brand-maroon);
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
}
.topbar a {
  color: var(--brand-maroon);
  text-decoration: none;
  margin: 0 12px;
}
.topbar a:hover {
  color: var(--maroon-dark);
}

/* ── NAVBAR ── */
nav {
  background: var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 24px rgba(60, 36, 21, 0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 88px;
}
.nav-logo {
  height: 78px;
  width: auto;
  background: var(--cream-dark);
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  box-shadow: none;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: auto;
}
.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links li a {
  display: block;
  padding: 10px 16px;
  color: var(--brand-maroon);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s;
}
.nav-links li a:hover::after {
  width: 80%;
}
.nav-links li a:hover {
  color: var(--gold-dark);
}
.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark) !important;
  padding: 10px 20px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  letter-spacing: 1px;
}
.nav-book-btn:hover {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold)
  ) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--brand-maroon);
  display: block;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  background:
    linear-gradient(rgba(74, 8, 16, 0.42), rgba(107, 15, 26, 0.5)),
    url("BG Images/2026-02-09.jpeg") center 18% / cover no-repeat,
    linear-gradient(
      160deg,
      var(--maroon-dark) 0%,
      var(--maroon) 45%,
      #3d0510 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    ),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.58;
}
.hero-ornament {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 4s ease-in-out infinite;
}
.hero-ornament::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
}
@keyframes pulse-ring {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 44px;
  align-items: center;
  text-align: left;
}
.hero-copy {
  text-align: left;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-family: "Raleway", sans-serif;
  animation: fadeInDown 0.8s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero h1 span {
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-pale);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  max-width: 500px;
  margin: 0 0 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--maroon-dark);
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

.hero-stats {
  display: flex;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 42px;
  animation: fadeInUp 0.8s 0.7s ease both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-booking {
  width: 100%;
  text-align: left;
  animation: fadeInUp 0.8s 0.65s ease both;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  background: rgba(107, 15, 26, 0.76);
  border: 1px solid rgba(201, 168, 76, 0.24);
  backdrop-filter: blur(12px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION BASE ── */
section {
  padding: 80px 20px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--maroon);
  margin-bottom: 16px;
}
.section-title span {
  color: var(--gold-dark);
}
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--maroon),
    var(--gold),
    var(--maroon)
  );
  margin: 0 auto 16px;
}
.section-desc {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── MARQUEE ── */
.marquee-band {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-track span::before {
  content: "✦ ";
  color: var(--gold);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SERVICES ── */
#services {
  background: #f5efe2;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 78, 0.12);
  pointer-events: none;
}
#services::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(125, 13, 27, 0.08);
  pointer-events: none;
}

/* Services Showcase */
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Studio Block */
.studio-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow:
    0 8px 40px rgba(125, 13, 27, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 163, 78, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.studio-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7d0d1b, #c9a34e, #7d0d1b);
}
.studio-block:hover {
  box-shadow:
    0 16px 56px rgba(125, 13, 27, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

/* Block Head */
.block-head {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 163, 78, 0.2);
}
.block-index {
  display: inline-block;
  background: linear-gradient(135deg, #7d0d1b, #a01525);
  color: #c9a34e;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: "Raleway", sans-serif;
}
.block-head h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #7d0d1b;
  margin-bottom: 12px;
  line-height: 1.3;
}
.block-head p {
  color: #4a2030;
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Aari Layout */
.aari-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}
.service-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

/* Cluster Card */
.cluster-card {
  background: linear-gradient(145deg, #fffdf8, #f5efe2);
  border: 1px solid rgba(201, 163, 78, 0.2);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.cluster-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c9a34e, #7d0d1b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.cluster-card:hover::after {
  transform: scaleX(1);
}
.cluster-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(125, 13, 27, 0.12);
  border-color: #c9a34e;
}

/* Feature Card */
.cluster-card.feature-card {
  grid-column: span 2;
  background: linear-gradient(135deg, #7d0d1b, #5a0a14);
  border: none;
  color: #fff;
}
.cluster-card.feature-card h4 {
  color: #c9a34e;
}
.cluster-card.feature-card .cluster-icon {
  background: rgba(201, 163, 78, 0.2);
  color: #c9a34e;
  border: 1px solid rgba(201, 163, 78, 0.3);
}

/* Cluster Icon */
.cluster-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #7d0d1b, #a01525);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #c9a34e;
  transition: all 0.3s ease;
}
.cluster-card:hover .cluster-icon {
  transform: scale(1.1) rotate(5deg);
}
.cluster-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #7d0d1b;
  margin-bottom: 10px;
}
.cluster-card p {
  font-size: 13px;
  color: #4a2030;
  line-height: 1.7;
}

/* Cluster List */
.cluster-list {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}
.cluster-list li {
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(201, 163, 78, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cluster-list li::before {
  content: "✦";
  color: #c9a34e;
  font-size: 10px;
}
.cluster-list li:last-child {
  border-bottom: none;
}

/* Pricing Panel */
.pricing-panel {
  background: linear-gradient(160deg, #7d0d1b, #4a0810);
  border-radius: 20px;
  padding: 36px 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pricing-panel::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 20px solid rgba(201, 163, 78, 0.08);
  pointer-events: none;
}
.pricing-panel::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid rgba(201, 163, 78, 0.05);
  pointer-events: none;
}
.pricing-tag {
  display: inline-block;
  background: linear-gradient(135deg, #c9a34e, #a07830);
  color: #4a0810;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-panel h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}
.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 163, 78, 0.2);
}
.pricing-item:last-of-type {
  border-bottom: none;
}
.pricing-item strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}
.pricing-item span {
  color: #c9a34e;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-style: italic;
}

/* Makeup Grid */
.makeup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.makeup-card {
  background: linear-gradient(145deg, #fffdf8, #f5efe2);
  border: 1px solid rgba(201, 163, 78, 0.18);
  border-radius: 14px;
  padding: 22px 14px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.makeup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(125, 13, 27, 0.92),
    rgba(74, 8, 16, 0.95)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 14px;
}
.makeup-card:hover::before {
  opacity: 1;
}
.makeup-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(125, 13, 27, 0.18);
}
.makeup-card i {
  display: block;
  font-size: 24px;
  color: #c9a34e;
  margin-bottom: 10px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}
.makeup-card:hover i {
  transform: scale(1.2);
  color: #e8c96d;
}
.makeup-card span {
  font-size: 12.5px;
  font-weight: 600;
  color: #7d0d1b;
  letter-spacing: 0.3px;
  display: block;
  transition: color 0.35s ease;
  position: relative;
  z-index: 1;
}
.makeup-card:hover span {
  color: #fff;
}

/* Beauty Categories */
.beauty-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.category-card {
  background: linear-gradient(145deg, #fffdf8, #f5efe2);
  border: 1px solid rgba(201, 163, 78, 0.18);
  border-radius: 18px;
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #c9a34e, #7d0d1b);
  transition: height 0.4s ease;
  border-radius: 0 4px 4px 0;
}
.category-card:hover::before {
  height: 100%;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(125, 13, 27, 0.1);
  border-color: #c9a34e;
}
.category-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 163, 78, 0.15);
}
.category-top i {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #7d0d1b, #a01525);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #c9a34e;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.category-card:hover .category-top i {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 4px 12px rgba(125, 13, 27, 0.2);
}
.category-top h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: #7d0d1b;
  margin: 0;
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-list li {
  background: #fff;
  border: 1px solid rgba(201, 163, 78, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12.5px;
  color: #4a2030;
  transition: all 0.3s ease;
  cursor: default;
}
.category-list li:hover {
  background: linear-gradient(135deg, #7d0d1b, #a01525);
  color: #fff;
  border-color: #7d0d1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 13, 27, 0.15);
}

/* Services Scroll Animation */
.studio-block {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.4s ease;
}
.studio-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Services Responsive */
@media (max-width: 900px) {
  .aari-layout {
    grid-template-columns: 1fr;
  }
  .cluster-card.feature-card {
    grid-column: span 1;
  }
  .makeup-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
  .beauty-categories {
    grid-template-columns: 1fr;
  }
  .studio-block {
    padding: 28px 18px;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .service-cluster {
    grid-template-columns: 1fr;
  }
  .makeup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .makeup-card {
    padding: 16px 10px;
  }
  .makeup-card i {
    font-size: 20px;
  }
  .makeup-card span {
    font-size: 11.5px;
  }
}

/* ── ABOUT / USP ── */
#about {
  background:
    linear-gradient(rgba(74, 8, 16, 0.9), rgba(107, 15, 26, 0.92)),
    url("BG Images/3.jpeg") center center / cover no-repeat,
    linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 20px;
}
.about-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  list-style: none;
  margin: 20px 0 30px;
}
.about-features li {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-features li i {
  color: var(--gold);
  font-size: 14px;
}
.about-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}
.about-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
}
.about-card.about-cert .cert-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto 14px;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 9px 22px;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
}
.about-card.about-cert img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
.cert-caption {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin: 14px 8px 0;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
.about-aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}
.about-cert,
.founder-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.06)
  );
  backdrop-filter: blur(10px);
}
.about-cert {
  padding: 18px 18px 20px;
}
.founder-card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.founder-meta {
  padding: 18px 20px 22px;
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}
.founder-meta h3 {
  margin: 0;
}
.founder-meta p {
  margin: 0;
}
@media (max-width: 900px) {
  .about-aside {
    grid-template-columns: 1fr;
  }
}

.founder-card {
  padding: 0;
}
.founder-meta {
  display: grid;
  gap: 8px;
}
.founder-card h3 {
  color: #ffffff;
  font-size: 1.18rem;
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.3;
}
.founder-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12.5px;
  line-height: 1.7;
  text-transform: none;
  letter-spacing: 0.2px;
  margin: 0;
  max-width: 240px;
}

/* ── PRICING ── */
#pricing {
  background:
    linear-gradient(rgba(240, 232, 208, 0.92), rgba(240, 232, 208, 0.92)),
    url("BG Images/4.jpeg") center center / cover no-repeat,
    var(--cream-dark);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.price-card.featured {
  background: linear-gradient(160deg, var(--maroon-dark), var(--maroon));
  border: none;
  transform: scale(1.04);
  box-shadow: 0 16px 50px rgba(107, 15, 26, 0.35);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(107, 15, 26, 0.15);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.feat-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 4px 18px;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
.price-cat {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.price-card.featured .price-cat {
  color: var(--gold-light);
}
.price-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--maroon);
  margin-bottom: 8px;
}
.price-card.featured .price-title {
  color: var(--white);
}
.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 20px 0;
}
.price-card.featured .price-amount {
  color: var(--gold-light);
}
.price-amount small {
  font-size: 1rem;
  font-weight: 400;
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 28px;
}
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.price-features li i {
  color: var(--gold);
  font-size: 13px;
}

/* ── GALLERY ── */
#gallery {
  background:
    linear-gradient(rgba(253, 246, 227, 0.88), rgba(253, 246, 227, 0.9)),
    url("BG Images/5.jpeg") center center / cover no-repeat,
    var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-light));
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  gap: 10px;
  transition: all 0.3s;
}
.gallery-placeholder i {
  font-size: 2rem;
  color: rgba(201, 168, 76, 0.4);
}
.gallery-placeholder span {
  font-size: 11px;
  letter-spacing: 2px;
}
.gallery-item:hover .gallery-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.gallery-item:hover .gallery-placeholder i {
  color: var(--gold);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 15, 26, 0.8), transparent);
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 1px;
}
.gallery-social {
  display: block;
  text-decoration: none;
}
.gallery-social .gallery-placeholder {
  background: linear-gradient(
    135deg,
    rgba(107, 15, 26, 0.45),
    rgba(201, 168, 76, 0.16)
  );
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.insta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(131, 58, 180, 0.28);
}
.gallery-note {
  text-align: center;
  margin-top: 24px;
  color: var(--text-mid);
  font-size: 14px;
  font-style: italic;
}

/* ── BOOKING ── */
#booking {
  background:
    linear-gradient(rgba(74, 8, 16, 0.9), rgba(45, 4, 10, 0.94)),
    url("BG Images/6.jpeg") center center / cover no-repeat,
    linear-gradient(160deg, var(--maroon-dark) 0%, #2d040a 100%);
  position: relative;
  overflow: hidden;
}
#booking::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.booking-info .tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.booking-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.booking-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.booking-steps {
  list-style: none;
}
.booking-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
}
.step-text h4 {
  color: var(--gold-light);
  font-size: 14px;
  margin-bottom: 4px;
}
.step-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.booking-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 36px;
}
#booking .booking-form {
  display: none;
}
#booking .booking-grid {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.form-title {
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  outline: none;
  transition: 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.form-group select option {
  background: var(--maroon-dark);
  color: var(--white);
}
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--maroon-dark);
  border: none;
  cursor: pointer;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  transition: all 0.3s;
}
.form-submit:hover {
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}
.success-msg {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--gold-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background:
    linear-gradient(rgba(240, 232, 208, 0.92), rgba(240, 232, 208, 0.92)),
    url("BG Images/2026-02-09.jpeg") center center / cover no-repeat,
    var(--cream-dark);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.testi-card:hover {
  box-shadow: 0 8px 32px rgba(107, 15, 26, 0.12);
  transform: translateY(-3px);
}
.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testi-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}
.testi-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--maroon);
}
.testi-loc {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.testi-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.testi-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gold);
  color: var(--maroon);
  padding: 12px 22px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.testi-actions a:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ── CONTACT ── */
#contact {
  background:
    linear-gradient(rgba(253, 246, 227, 0.9), rgba(253, 246, 227, 0.9)),
    url("BG Images/2025-11-19.jpg") center center / cover no-repeat,
    var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--maroon);
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--gold);
  font-size: 18px;
}
.contact-item h4 {
  color: var(--maroon);
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.contact-item p,
.contact-item a {
  color: var(--text-mid);
  font-size: 14px;
  text-decoration: none;
  line-height: 1.7;
}
.contact-item a:hover {
  color: var(--maroon);
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem !important;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.phone-link i {
  color: var(--maroon);
  font-size: 0.95rem;
}
.google-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.google-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--maroon);
  padding: 9px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: all 0.3s;
}
.google-actions a:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
  margin-top: 20px;
  transition: all 0.3s;
}
.wa-btn:hover {
  background: #1ebe59;
  transform: translateY(-2px);
}
.map-placeholder {
  position: relative;
  background:
    linear-gradient(145deg, rgba(74, 8, 16, 0.88), rgba(107, 15, 26, 0.64)),
    radial-gradient(
      circle at 24% 18%,
      rgba(232, 201, 109, 0.28),
      transparent 34%
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--maroon-dark);
  background-size:
    auto,
    auto,
    48px 48px,
    48px 48px,
    auto;
  border: 2px solid rgba(201, 168, 76, 0.35);
  height: 100%;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  gap: 14px;
  font-family: "Playfair Display", serif;
  overflow: hidden;
  padding: 30px 20px;
  box-shadow: 0 18px 48px rgba(107, 15, 26, 0.16);
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(232, 201, 109, 0.22);
  pointer-events: none;
}
.map-placeholder::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -48px;
  top: -52px;
  border-radius: 50%;
  border: 34px solid rgba(232, 201, 109, 0.1);
  pointer-events: none;
}
.map-placeholder > i {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--maroon);
  opacity: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}
.map-placeholder p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  font-size: 15px;
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(232, 201, 109, 0.18);
  backdrop-filter: blur(6px);
}
.map-placeholder p strong {
  color: var(--gold-light) !important;
}
.google-card {
  position: relative;
  z-index: 1;
  width: min(82%, 360px);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(107, 15, 26, 0.08);
}
.google-card span {
  display: block;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 10px;
}
.google-card i {
  font-size: 1rem;
  opacity: 1;
  color: var(--maroon);
}
.google-card a {
  display: inline-flex;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--maroon-dark);
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── FOOTER ── */
footer {
  background: var(--cream-dark);
  border-top: 2px solid rgba(60, 36, 21, 0.14);
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 60px 24px 40px;
}
.footer-brand img {
  height: 112px;
  width: auto;
  max-width: min(100%, 320px);
  object-fit: contain;
  margin-bottom: 20px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  display: block;
}
.footer-brand p {
  color: var(--brand-maroon);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(60, 36, 21, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header-brown);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.social-btn:hover {
  background: var(--header-brown);
  color: var(--cream-dark);
}
.footer-col h4 {
  color: var(--brand-maroon);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--brand-maroon);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: var(--brand-maroon);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(60, 36, 21, 0.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: var(--brand-maroon);
  font-size: 13px;
  letter-spacing: 0.3px;
}
.footer-bottom span {
  color: var(--brand-maroon);
}

/* ── SCROLL BTN ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  border: none;
  font-size: 16px;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero {
    padding: 42px 16px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 30px;
  }
  .hero-btns,
  .hero-stats {
    justify-content: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px 26px;
    margin-top: 34px;
  }
  .hero-booking {
    max-width: 520px;
    margin: 0 auto;
  }
  .topbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.5;
  }
  .topbar span {
    margin: 0;
  }
  .nav-inner {
    padding: 0 16px;
    min-height: 78px;
  }
  .nav-logo {
    height: 66px;
    width: auto;
    padding: 5px 12px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(240, 232, 208, 0.98);
    flex-direction: column;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(116, 18, 29, 0.08);
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .booking-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }
  .hero-stats {
    gap: 24px;
  }
}

/* Premium Services Refresh */
#services {
  background:
    radial-gradient(
      circle at top right,
      rgba(201, 163, 78, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(125, 13, 27, 0.08),
      transparent 24%
    ),
    linear-gradient(rgba(245, 239, 226, 0.9), rgba(245, 239, 226, 0.92)),
    url("BG Images/2.jpeg") center center / cover no-repeat,
    #f5efe2;
  padding: 110px 20px;
}
#services::before {
  top: -180px;
  right: -180px;
  width: 460px;
  height: 460px;
  border-color: rgba(201, 163, 78, 0.16);
}
#services::after {
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  border-color: rgba(125, 13, 27, 0.12);
}
.services-shell {
  position: relative;
  z-index: 1;
}
.services-header {
  max-width: 860px;
  margin: 0 auto 38px;
}
.services-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto 42px;
}
.service-note {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 163, 78, 0.22);
  border-radius: 24px;
  padding: 22px 22px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 14px 40px rgba(125, 13, 27, 0.08);
}
.service-note-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a34e;
  font-size: 1.1rem;
  background: linear-gradient(145deg, #7d0d1b, #561019);
  box-shadow: 0 12px 24px rgba(125, 13, 27, 0.2);
}
.service-note strong {
  display: block;
  color: #7d0d1b;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.service-note p {
  color: #5b3640;
  font-size: 13.5px;
  line-height: 1.75;
}
.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.studio-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 251, 244, 0.98)
  );
  border-radius: 32px;
  padding: 48px;
  box-shadow:
    0 18px 60px rgba(95, 20, 29, 0.08),
    0 3px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 163, 78, 0.18);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.studio-block::before {
  height: 5px;
  background: linear-gradient(90deg, #7d0d1b 0%, #c9a34e 48%, #7d0d1b 100%);
}
.studio-block::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  top: -95px;
  border-radius: 50%;
  border: 1px solid rgba(201, 163, 78, 0.2);
  pointer-events: none;
}
.studio-block.visible {
  opacity: 1;
  transform: translateY(0);
}
.studio-block:hover {
  transform: translateY(-6px);
  box-shadow:
    0 26px 72px rgba(95, 20, 29, 0.13),
    0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: rgba(201, 163, 78, 0.32);
}
.block-head {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}
.block-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2.4px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(125, 13, 27, 0.18);
}
.block-head h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  margin-bottom: 12px;
  line-height: 1.22;
}
.block-head p {
  color: #5b3640;
  max-width: 680px;
  line-height: 1.85;
}
.block-divider {
  width: 120px;
  height: 1px;
  margin: 0 auto 32px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 163, 78, 0.9),
    transparent
  );
}
.aari-layout {
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px;
}
.service-cluster {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.cluster-card {
  background: linear-gradient(145deg, #fffdfa, #f9f0e1);
  border: 1px solid rgba(201, 163, 78, 0.18);
  border-radius: 24px;
  padding: 28px 22px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.cluster-card::after {
  left: 22px;
  right: 22px;
  height: 3px;
}
.cluster-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(125, 13, 27, 0.12);
  border-color: rgba(201, 163, 78, 0.38);
}
.cluster-card.feature-card {
  grid-column: span 2;
  background: linear-gradient(145deg, #6b0f1a, #4a0810);
  text-align: left;
  padding: 32px 28px;
}
.cluster-card.feature-card .cluster-icon {
  margin: 0 0 18px;
}
.cluster-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(125, 13, 27, 0.18);
}
.cluster-card h4 {
  font-size: 1.14rem;
}
.cluster-card p {
  font-size: 13.5px;
  color: #5b3640;
  line-height: 1.8;
}
.cluster-list li::before {
  content: "•";
  font-size: 14px;
}
.pricing-panel {
  border-radius: 28px;
  padding: 34px 28px;
  box-shadow: 0 22px 46px rgba(88, 16, 27, 0.24);
}
.pricing-panel::before {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -50px;
  border-width: 18px;
}
.pricing-panel::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 20px;
  top: auto;
  width: auto;
  height: 1px;
  border: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 163, 78, 0.32),
    transparent
  );
}
.pricing-copy {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.pricing-item {
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
}
.pricing-item strong {
  font-weight: 600;
}
.pricing-item span {
  font-weight: 700;
  text-align: right;
}
.makeup-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.makeup-card {
  border-radius: 22px;
  padding: 22px 14px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.makeup-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, #e5c46d, #7d0d1b);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.makeup-card:hover::after {
  transform: scaleX(1);
}
.makeup-card:hover::before {
  opacity: 0 !important;
}
.makeup-card:hover {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(125, 13, 27, 0.08) !important;
  border-color: rgba(201, 163, 78, 0.24) !important;
  background: linear-gradient(145deg, #fffdfa, #f8efde) !important;
}
.makeup-card:hover i {
  transform: none;
  color: #c9a34e !important;
}
.makeup-card span {
  font-weight: 700;
  line-height: 1.45;
}
.makeup-card:hover span {
  color: #7d0d1b !important;
}
.beauty-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.category-card {
  border-radius: 24px;
  padding: 28px 24px;
  transition: none !important;
}
.category-card::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: linear-gradient(90deg, #7d0d1b, #c9a34e, #7d0d1b);
  transition: none !important;
}
.category-card:hover::before {
  width: 100% !important;
  height: 4px !important;
}
.category-card:hover {
  transform: none !important;
  box-shadow: 0 12px 28px rgba(125, 13, 27, 0.08) !important;
  border-color: rgba(201, 163, 78, 0.2) !important;
}
.category-top {
  border-bottom: 1px solid rgba(201, 163, 78, 0.12);
}
.category-top i {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(125, 13, 27, 0.18);
  transition: none !important;
}
.category-card:hover .category-top i {
  transform: none !important;
  box-shadow: 0 10px 24px rgba(125, 13, 27, 0.18) !important;
}
.category-top h4 {
  font-size: 1.22rem;
}
.category-list {
  gap: 10px;
}
.category-list li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 163, 78, 0.16);
  border-radius: 999px;
  color: #5a2d36;
  transition: none !important;
}
.category-list li:hover {
  background: rgba(255, 255, 255, 0.88) !important;
  color: #5a2d36 !important;
  border-color: rgba(201, 163, 78, 0.16) !important;
  transform: none !important;
  box-shadow: none !important;
}
@media (max-width: 1024px) {
  .services-intro {
    grid-template-columns: 1fr;
  }
  .aari-layout {
    grid-template-columns: 1fr;
  }
  .service-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .makeup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .beauty-categories {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  #services {
    padding: 90px 16px;
  }
  .studio-block {
    padding: 34px 22px;
    border-radius: 24px;
  }
  .cluster-card.feature-card {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }
  .topbar {
    gap: 6px 8px;
    font-size: 11px;
    padding: 8px 10px;
  }
  .topbar > span {
    display: none;
  }
  nav {
    position: sticky;
  }
  .nav-inner {
    padding: 0 12px;
    min-height: 72px;
  }
  .nav-logo {
    height: 60px;
    width: auto;
    padding: 4px 11px;
  }
  .nav-links li a {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .hero {
    min-height: auto;
    padding: 34px 14px 42px;
    background-position: 58% 12%;
  }
  .hero-ornament {
    width: 360px;
    height: 360px;
  }
  .hero-badge {
    padding: 6px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 13vw, 3.4rem);
    line-height: 1.08;
  }
  .hero-sub {
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .hero-desc {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 auto 24px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 28px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .hero-booking,
  .booking-form {
    padding: 24px 16px;
  }
  .form-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    font-size: 11px;
    letter-spacing: 1.2px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 15px;
  }
  .form-submit {
    padding: 14px;
    font-size: 13px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .services-header {
    margin-bottom: 30px;
  }
  .service-note {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }
  .service-note-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
  .service-cluster {
    grid-template-columns: 1fr;
  }
  .cluster-card.feature-card {
    grid-column: span 1;
  }
  .makeup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .makeup-card {
    min-height: 108px;
    padding: 18px 10px 16px;
    border-radius: 18px;
  }
  .makeup-card i {
    font-size: 20px;
  }
  .makeup-card span {
    font-size: 11.5px;
  }
  .category-card {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .pricing-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .price-card {
    padding: 28px 20px;
  }
  .map-placeholder {
    min-height: 300px;
  }
  .scroll-top {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }
}

/* ── CLASSES PAGE STYLES ── */
.nav-links li a.active {
  color: var(--gold) !important;
}
.nav-links li a.active::after {
  width: 80% !important;
}

.classes-hero {
  position: relative;
  min-height: 45vh;
  background:
    linear-gradient(rgba(74, 8, 16, 0.65), rgba(107, 15, 26, 0.72)),
    url("BG Images/2026-02-09.jpeg") center 18% / cover no-repeat,
    linear-gradient(
      160deg,
      var(--maroon-dark) 0%,
      var(--maroon) 45%,
      #3d0510 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 60px 20px;
}
.classes-hero .hero-ornament {
  width: 400px;
  height: 400px;
}
.classes-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}
.academy-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
}
.classes-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.classes-hero h1 span {
  color: var(--gold-light);
}
.classes-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}

#academy-classes {
  background: #f5efe2;
  padding: 80px 20px;
  position: relative;
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.class-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow:
    0 8px 30px rgba(125, 13, 27, 0.05),
    0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(201, 163, 78, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7d0d1b, #c9a34e, #7d0d1b);
}
.class-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(125, 13, 27, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.05);
}
.class-card-top {
  margin-bottom: 24px;
}
.class-card-top h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--maroon);
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.class-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.class-card:hover .class-icon {
  transform: scale(1.1) rotate(8deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--maroon-dark);
}
.class-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}
.class-highlights li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 163, 78, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.class-highlights li:last-child {
  border-bottom: none;
}
.class-highlights li i {
  color: var(--gold-dark);
  font-size: 12px;
}
.class-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  letter-spacing: 0.5px;
}
.class-wa-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
}

@media (max-width: 992px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .classes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .classes-hero {
    min-height: 35vh;
    padding: 40px 16px;
  }
  .class-card {
    padding: 28px 20px;
  }
}
