/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --purple-deep:    #2D1B69;
  --purple-mid:     #3D2585;
  --purple-light:   #5B3FA6;
  --lavender-soft:  #E8E0F5;
  --lavender-light: #F4F0FA;
  --white:          #FFFFFF;
  --off-white:      #FAFAF8;
  --gold:           #C9A96E;
  --gold-dark:      #A8823F;
  --text-dark:      #1A1025;
  --text-body:      #3D3250;
  --text-muted:     #7B6E9A;
  --border:         #E2D9F3;

  --font:    'Poppins', sans-serif;
  --max-w:   1200px;
  --nav-h:   72px;
  --ease:    220ms ease;
  --ease-md: 380ms ease;
  --ease-lg: 550ms ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--purple-deep);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.75rem, 6vw, 4.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 4vw, 2.875rem); letter-spacing: -0.01em; }
h3 { font-size: 1rem; font-weight: 600; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) { .container { padding-inline: 3rem; } }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.875rem;
  font-size: 0.7375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease),
              box-shadow var(--ease), transform var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--purple-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(45, 27, 105, 0.28);
}

.btn-ghost {
  background: transparent;
  color: rgba(232, 224, 245, 0.9);
  border: 1.5px solid rgba(232, 224, 245, 0.35);
}
.btn-ghost:hover {
  background: rgba(232, 224, 245, 0.1);
  border-color: rgba(232, 224, 245, 0.7);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.3);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease-md), box-shadow var(--ease-md),
              backdrop-filter var(--ease-md);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) { .nav-inner { padding-inline: 3rem; } }

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}

.nav-logo-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--ease);
}

.nav-logo-sub {
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav.scrolled .nav-logo-name { color: var(--purple-deep); }

/* Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color var(--ease);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease-md);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--purple-deep); }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-book {
  display: none;
  padding: 0.5rem 1.375rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

@media (min-width: 900px) { .nav-book { display: inline-block; } }

.nav-book:hover {
  background: var(--white);
  color: var(--purple-deep);
  border-color: var(--white);
}

.nav.scrolled .nav-book {
  border-color: var(--purple-deep);
  color: var(--purple-deep);
}
.nav.scrolled .nav-book:hover {
  background: var(--purple-deep);
  color: var(--white);
}

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

@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: transform var(--ease), opacity var(--ease), background var(--ease);
}

.nav.scrolled .hamburger span { background: var(--purple-deep); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  inset-inline: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--ease-md), opacity var(--ease-md);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 0.9375rem 0;
  border-bottom: 1px solid var(--lavender-soft);
  transition: color var(--ease);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--purple-deep); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--purple-deep);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero { grid-template-columns: 1fr 1fr; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3.5rem) 1.5rem 4rem;
}

@media (min-width: 768px) {
  .hero-content { padding: calc(var(--nav-h) + 4.5rem) 3rem 5rem; }
}

@media (min-width: 900px) {
  .hero-content {
    padding: calc(var(--nav-h) + 5rem) 4rem calc(var(--nav-h) + 5rem) 4rem;
    max-width: 600px;
  }
}

@media (min-width: 1100px) {
  .hero-content { padding-inline: 5rem 4rem; }
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--lavender-soft);
}

.hero-sub {
  font-size: 0.9375rem;
  font-weight: 300;
  color: rgba(232, 224, 245, 0.7);
  line-height: 1.78;
  max-width: 400px;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 3.5rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(232, 224, 245, 0.12);
}

.hero-avatars { display: flex; }

.hero-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(232, 224, 245, 0.25);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--gold);
}

.hero-avatars span:first-child { margin-left: 0; }

.hero-proof-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lavender-soft);
}

.hero-proof-text small {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(232, 224, 245, 0.5);
}

/* Hero image */
.hero-image {
  position: relative;
  min-height: 55vh;
}

@media (min-width: 900px) { .hero-image { min-height: 100svh; } }

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--purple-deep) 0%, rgba(45,27,105,0.15) 55%, transparent 100%);
}

@media (max-width: 899px) {
  .hero-image-overlay {
    background: linear-gradient(to bottom, var(--purple-deep) 0%, transparent 40%),
                linear-gradient(to top, var(--purple-deep) 0%, transparent 50%);
  }
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: pulse-down 2.4s ease infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.6));
}

.hero-scroll span {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.6);
}

@keyframes pulse-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SECTION SHARED
============================================================ */
section { padding-block: 6rem; }

@media (min-width: 768px) { section { padding-block: 8rem; } }

.section-header {
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 4.5rem;
}

.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  font-size: 0.9125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  cursor: pointer;
  transition: background var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--ease-md);
}

.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--lavender-light); }

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 1.625rem;
  stroke: var(--purple-light);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-price {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.125rem;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  transition: gap var(--ease);
}

.service-arrow:hover { gap: 0.625rem; }

.service-arrow svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--white); overflow: hidden; }

.about-inner {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-inner {
    grid-template-columns: 5fr 6fr;
    gap: 6rem;
  }
}

.about-img-block { position: relative; }

.about-img-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--ease-lg);
}

.about-img-frame:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  width: 46%;
  aspect-ratio: 1;
  background: var(--lavender-soft);
  z-index: -1;
}

@media (min-width: 900px) {
  .about-img-accent { bottom: -2.5rem; right: -2rem; }
}

.about-text .eyebrow { margin-bottom: 1.125rem; }
.about-text h2 { margin-bottom: 1.625rem; }

.about-lead {
  font-size: 1.025rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.85;
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}

.about-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.stat-value {
  font-size: 2.125rem;
  font-weight: 300;
  color: var(--purple-deep);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   GALLERY
============================================================ */
.gallery { background: var(--lavender-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 340px;
  }
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gal-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-lg);
}

.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 105, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background var(--ease-md);
}

.gal-item:hover .gal-overlay { background: rgba(45, 27, 105, 0.5); }

.gal-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--ease-md), transform var(--ease-md);
}

.gal-item:hover .gal-label { opacity: 1; transform: translateY(0); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--purple-deep); }

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(232, 224, 245, 0.6); }

.test-grid { display: grid; gap: 1.25rem; }

@media (min-width: 600px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  padding: 2.25rem;
  border: 1px solid rgba(232, 224, 245, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--ease), border-color var(--ease);
}

.test-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}

.test-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.test-text {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(232, 224, 245, 0.78);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.test-author { display: flex; align-items: center; gap: 0.875rem; }

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(91, 63, 166, 0.6);
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
}

.test-name { font-size: 0.8125rem; font-weight: 600; color: var(--lavender-soft); }

.test-role {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(232, 224, 245, 0.45);
  letter-spacing: 0.06em;
}

.test-stars { margin-left: auto; font-size: 0.7rem; color: var(--gold); letter-spacing: 1px; }

/* ============================================================
   BOOKING / CONTACT
============================================================ */
.booking { background: var(--white); }

.booking-inner { display: grid; gap: 4rem; }

@media (min-width: 900px) {
  .booking-inner {
    grid-template-columns: 5fr 7fr;
    gap: 5.5rem;
    align-items: start;
  }
}

.booking-info .eyebrow { margin-bottom: 1.125rem; }
.booking-info h2 { margin-bottom: 1.25rem; }
.booking-info > p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 2.75rem;
}

.booking-details { display: flex; flex-direction: column; gap: 1.5rem; }

.booking-detail { display: flex; align-items: flex-start; gap: 1rem; }

.detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--purple-deep);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.detail-value { font-size: 0.875rem; font-weight: 400; color: var(--text-dark); line-height: 1.6; }

/* Booking card */
.book-card { background: var(--lavender-light); padding: 2.5rem; }

@media (min-width: 768px) { .book-card { padding: 3rem; } }

.book-card-label {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.book-card-heading { font-size: 1.25rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }

.book-card-sub {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.book-fresha-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 1rem;
  background: var(--purple-deep);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  margin-bottom: 0.875rem;
}

.book-fresha-btn:hover {
  background: var(--purple-mid);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(45, 27, 105, 0.25);
}

.book-fresha-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
}

.book-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.9375rem;
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  text-decoration: none;
}

.book-call-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple-deep);
  background: var(--white);
}

.book-call-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Price list */
.price-list { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }

.price-list-title {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-of-type { border-bottom: none; }

.price-service { font-size: 0.8125rem; font-weight: 300; color: var(--text-body); }

.price-amount { font-size: 0.8rem; font-weight: 500; color: var(--purple-deep); letter-spacing: 0.04em; }

.price-full-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-top: 1.25rem;
  transition: gap var(--ease);
}

.price-full-link:hover { gap: 0.625rem; }

.price-full-link svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
}

.price-list-note {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
}

/* Emily Rodgers banner */
.emily-banner {
  margin-top: 1.75rem;
  padding: 1.125rem 1.25rem;
  background: rgba(201, 169, 110, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.22);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.emily-banner svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.emily-banner p { font-size: 0.78rem; font-weight: 300; color: var(--text-muted); line-height: 1.65; }

.emily-banner strong { font-weight: 500; color: var(--text-dark); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--text-dark);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.footer-grid { display: grid; gap: 3rem; margin-bottom: 3.5rem; }

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; } }

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}

.footer-brand-sub {
  font-size: 0.52rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.8;
  max-width: 250px;
  margin-bottom: 1.75rem;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
  text-decoration: none;
}

.social-btn:hover { border-color: var(--gold); background: rgba(201, 169, 110, 0.1); }

.social-btn svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.45); transition: fill var(--ease); }

.social-btn:hover svg { fill: var(--gold); }

.footer-col h4 {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--ease);
  cursor: pointer;
}

.footer-col a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-bottom p { font-size: 0.73rem; font-weight: 300; color: rgba(255, 255, 255, 0.27); }

.footer-credit { margin-top: 0.5rem; }

.footer-credit-link {
  color: var(--gold);
  font-weight: 400;
  transition: color var(--ease);
}
.footer-credit-link:hover { color: var(--gold-dark); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-fade { opacity: 0; transition: opacity 700ms ease; }

.reveal-fade.visible { opacity: 1; }

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 75ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 150ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 225ms; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
