:root {
  --bg-dark: #fdf9f5;
  --bg-section: #fff5f7;
  --bg-card: #ffffff;
  --fg: #1c1410;
  --fg-muted: #8b7b74;
  --accent: #e05275;
  --accent-light: #eb8aa0;
  --accent-glow: rgba(224, 82, 117, 0.14);
  --accent2: #f0b429;
  --accent2-light: #f7d06e;
  --hero-bg: #1a0511;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0511 0%, #2d0f1e 40%, #3d1328 60%, #1a0511 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, var(--accent-glow), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fdf9f5;
}

.hero-accent {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: rgba(253, 249, 245, 0.65);
  margin-top: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 2rem auto;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 249, 245, 0.45);
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(224, 82, 117, 0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: rgba(224, 82, 117, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(224, 82, 117, 0.08);
}

.service-icon {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== EXPERIENCE ===== */
.experience {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.experience-inner {
  max-width: 800px;
  margin: 0 auto;
}

.experience-description {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 650px;
}

.experience-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(224, 82, 117, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.closing-statement {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.closing-text {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 450px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  background: #1a0511;
  border-top: 1px solid rgba(224, 82, 117, 0.12);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(253, 249, 245, 0.5);
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(253, 249, 245, 0.25);
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .experience-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero {
    min-height: 90vh;
  }

  .services { padding: 4rem 1.5rem; }
  .experience { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 5, 17, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 82, 117, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  text-decoration: none;
  color: #fdf9f5;
  letter-spacing: 0.05em;
}

.nav-brand-accent { color: var(--accent); font-style: italic; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 249, 245, 0.6);
  transition: color 0.2s;
}

.nav-links a:hover { color: #fdf9f5; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--accent) !important;
  color: var(--accent) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent) !important;
  color: #fdf9f5 !important;
}

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

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fdf9f5;
  transition: transform 0.3s, opacity 0.3s;
}

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

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #1a0511;
  border-top: 1px solid rgba(224, 82, 117, 0.1);
}

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

.nav-mobile a {
  padding: 1rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 249, 245, 0.6);
  border-bottom: 1px solid rgba(224, 82, 117, 0.07);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: #fdf9f5; }
.nav-cta-mobile { color: var(--accent) !important; }

/* Push page content below fixed nav */
body > section:first-of-type,
.site-nav + section { padding-top: 80px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fdf9f5;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: rgba(253, 249, 245, 0.7);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(253, 249, 245, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}

.btn-full { width: 100%; text-align: center; padding: 1.1rem; font-size: 0.8rem; }

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #1a0511 0%, #2d0f1e 50%, #1a0511 100%);
  position: relative;
  padding-top: 80px;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 60%, var(--accent-glow), transparent);
  pointer-events: none;
}

.page-hero-sm { min-height: 28vh; }

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 2rem;
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: #fdf9f5;
  line-height: 1;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(253, 249, 245, 0.55);
}

/* hero-eyebrow on sub-pages */
.page-hero-content .hero-eyebrow {
  color: var(--accent2);
}

/* ===== SERVICES FULL PAGE ===== */
.services-full {
  padding: 5rem 2rem;
  background: var(--bg-dark);
}

.services-full-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(224, 82, 117, 0.1);
}

.service-row:last-child { border-bottom: none; }

.service-row-vip { background: none; position: relative; }
.service-row-vip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(240, 180, 41, 0.05), transparent);
  pointer-events: none;
}

/* Braids section accent */
.service-row-braids { position: relative; }
.service-row-braids::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(224, 82, 117, 0.04), transparent);
  pointer-events: none;
}

.service-row-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.service-number {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(224, 82, 117, 0.15);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.service-row-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.service-row-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Braids styles list */
.braids-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.braid-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(224, 82, 117, 0.07);
  border: 1px solid rgba(224, 82, 117, 0.2);
  border-radius: 2px;
  padding: 0.35rem 0.8rem;
}

/* ===== PRICING TIERS ===== */
.pricing-tiers {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tier {
  flex: 1;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid rgba(224, 82, 117, 0.1);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 1px 4px rgba(28, 20, 16, 0.04);
}

.tier-featured {
  border-color: rgba(224, 82, 117, 0.28);
  background: rgba(224, 82, 117, 0.03);
}

.tier-badge {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.tier-name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

/* Yellow highlight for VIP tier prices */
.service-row-vip .tier-price { color: var(--accent2); }

.tier-detail {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.service-book-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 82, 117, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.service-book-btn:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

/* ===== SERVICES CTA ===== */
.services-cta {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, #1a0511 100%);
}

.services-cta .closing-statement,
.services-cta .closing-text {
  color: inherit;
}

.services-cta-inner { max-width: 600px; margin: 0 auto; }

/* ===== GALLERY ===== */
.gallery-section {
  padding: 4rem 2rem;
  background: var(--bg-dark);
}

.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: none;
  border: 1px solid rgba(224, 82, 117, 0.15);
  color: var(--fg-muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(224, 82, 117, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-auto-rows: 240px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }

.gp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.gp-icon { font-size: 1.5rem; color: var(--accent); }
.gp-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-muted); }

/* Placeholder gradients — each unique, warm blush/rose palette */
.gp-1  { background: linear-gradient(135deg, #f9e8ef 0%, #f2c8d5 50%, #f9e8ef 100%); }
.gp-2  { background: linear-gradient(160deg, #fef0f5 0%, #f5d5e3 60%, #fef0f5 100%); }
.gp-3  { background: linear-gradient(120deg, #fdf5e8 0%, #f5e0c0 50%, #fdf5e8 100%); }
.gp-4  { background: linear-gradient(150deg, #f9eaf3 0%, #e8c5da 50%, #f9eaf3 100%); }
.gp-5  { background: linear-gradient(140deg, #fff4f0 0%, #f5d5c8 60%, #fff4f0 100%); }
.gp-6  { background: linear-gradient(130deg, #fef3f6 0%, #f0ccd9 50%, #fef3f6 100%); }
.gp-7  { background: linear-gradient(155deg, #fdf8ec 0%, #f0dca8 50%, #fdf8ec 100%); }
.gp-8  { background: linear-gradient(145deg, #fef0f3 0%, #f5c8d5 50%, #fef0f3 100%); }
.gp-9  { background: linear-gradient(125deg, #fff5f8 0%, #f0c8d8 60%, #fff5f8 100%); }
.gp-10 { background: linear-gradient(135deg, #fef5e8 0%, #f5d5a8 50%, #fef5e8 100%); }
.gp-11 { background: linear-gradient(150deg, #fef0f5 0%, #e8b0c8 50%, #fef0f5 100%); }
.gp-12 { background: linear-gradient(140deg, #fff8ec 0%, #f0e0b0 50%, #fff8ec 100%); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(0deg, rgba(26, 5, 17, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: #fdf9f5;
}

.gallery-caption-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-section) 0%, #1a0511 100%);
}

.gallery-cta .closing-statement {
  color: var(--fg);
}

/* ===== BOOKING FORM ===== */
.booking-section {
  padding: 4rem 2rem 6rem;
  background: var(--bg-dark);
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.booking-error {
  grid-column: 1 / -1;
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.25);
  color: #c0404a;
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group-full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.req { color: var(--accent); }

.form-input {
  background: var(--bg-card);
  border: 1px solid rgba(224, 82, 117, 0.15);
  border-radius: 3px;
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 82, 117, 0.08);
}

.form-input::placeholder { color: rgba(139, 123, 116, 0.4); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e05275' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-input option { background: var(--bg-card); color: var(--fg); }

.form-policy {
  font-size: 0.8rem;
  color: rgba(139, 123, 116, 0.6);
  line-height: 1.7;
  padding: 1rem;
  border: 1px solid rgba(224, 82, 117, 0.08);
  border-radius: 3px;
  background: var(--bg-section);
}

/* ===== BOOKING SIDEBAR ===== */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(224, 82, 117, 0.1);
  border-radius: 4px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(28, 20, 16, 0.04);
}

.sidebar-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.sidebar-list-bullets li {
  display: block;
  padding-left: 1rem;
  position: relative;
  font-size: 0.82rem;
}

.sidebar-list-bullets li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.sidebar-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(160deg, #1a0511 0%, #2d0f1e 50%, #1a0511 100%);
}

.success-inner {
  max-width: 560px;
  text-align: center;
}

.success-icon {
  font-size: 2rem;
  color: var(--accent2);
  margin-bottom: 1.5rem;
  animation: pulse-pink 2s ease infinite;
}

@keyframes pulse-pink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.success-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  color: #fdf9f5;
  margin: 0.75rem 0;
}

.success-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(253, 249, 245, 0.6);
  margin-bottom: 2.5rem;
}

.success-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(224, 82, 117, 0.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.success-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(224, 82, 117, 0.08);
}

.success-detail:last-child { border-bottom: none; }

.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 249, 245, 0.45);
}

.detail-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: #fdf9f5;
}

.success-note {
  font-size: 0.85rem;
  color: rgba(253, 249, 245, 0.4);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER UPDATE ===== */
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 249, 245, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .booking-inner {
    grid-template-columns: 1fr;
  }

  .booking-sidebar { position: static; }

  .form-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }

  .pricing-tiers { flex-direction: column; }

  .service-row-header { flex-direction: column; gap: 0.5rem; }
  .service-number { font-size: 2rem; width: auto; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
