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

:root {
  --primary: #2d1f2b;
  --accent: #b5314a;
  --accent-hover: #8e2a3c;
  --accent-soft: rgba(181, 49, 74, 0.08);
  --light: #faf5f6;
  --dark: #1a1218;
  --text: #2d1f2b;
  --text-muted: #7a6472;
  --white: #fff;
  --border: #e8d8de;
  --card-shadow: 0 4px 20px rgba(45, 31, 43, 0.06);
  --card-shadow-hover: 0 8px 30px rgba(45, 31, 43, 0.14);
  --nav-bg: #1a1218;
  --body-bg: #fff;
  --form-bg: var(--light);
  --form-focus-bg: var(--white);
  --card-border-bottom: #f0e4e8;
  --hero-gradient: linear-gradient(160deg, #1a1218 0%, #2d1f2b 40%, #3d1f30 70%, #4a1a35 100%);
  --rose-glow: rgba(181, 49, 74, 0.12);
}

[data-theme="dark"] {
  --primary: #f0e4e8;
  --light: #1e161b;
  --dark: #0e0a0d;
  --text: #e0d4d8;
  --text-muted: #9a8a92;
  --white: #161114;
  --border: #2e2228;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
  --accent-soft: rgba(181, 49, 74, 0.15);
  --nav-bg: #0e0a0d;
  --body-bg: #131014;
  --form-bg: #1e161b;
  --form-focus-bg: #241c22;
  --card-border-bottom: #2e2228;
  --hero-gradient: linear-gradient(160deg, #0e0a0d 0%, #1a1218 40%, #2a1420 70%, #351528 100%);
  --rose-glow: rgba(181, 49, 74, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--body-bg);
  transition: background 0.3s, color 0.3s;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Nav ─── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2.5rem;
  background: rgba(26, 18, 24, 0.85);
  position: fixed;
  top: 1rem;
  left: 2rem;
  right: 2rem;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] nav {
  background: rgba(14, 10, 13, 0.9);
  border-color: rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  letter-spacing: 0.2px;
}

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

.nav-cta {
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  color: #fff !important;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

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

.theme-toggle {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Hero ─── */
.hero {
  background: var(--hero-gradient);
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 65%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181, 49, 74, 0.06) 0%, transparent 65%);
  border-radius: 50%;
}

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

.hero-pre {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.05;
}

.hero-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.hero-tagline {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero-sub {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

/* ─── Button ─── */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  font-family: inherit;
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ─── Services ─── */
.services {
  padding: 6rem 2rem;
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
  border: 1px solid transparent;
  border-top: 3px solid var(--accent);
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── My Work (Before/After) ─── */
.work {
  padding: 6rem 2rem;
  background: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}

.comparison-card:hover {
  box-shadow: var(--card-shadow-hover);
}

.comparison-slider {
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.comparison-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
}

.comparison-img-wrapper > img {
  width: 100%;
  display: block;
}

.comp-before {
  position: relative;
  display: block;
}

.comp-after-clip {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.comp-after-clip img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.comp-handle-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.comp-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.comp-handle-circle span {
  font-size: 0.75rem;
  color: #2d1f2b;
  font-weight: 700;
  letter-spacing: 2px;
}

.comp-labels {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: var(--nav-bg);
}

.comp-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── Pricing ─── */
.pricing {
  padding: 6rem 2rem;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s;
  text-align: center;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.price-card.featured {
  border-color: var(--accent);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1.25rem;
  border-radius: 0 0 8px 8px;
}

.price-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.price-card li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--card-border-bottom);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.price-card li::before {
  content: '\2713';
  color: var(--accent);
  margin-right: 0.75rem;
  font-weight: 700;
}

/* ─── Contact / Booking ─── */
.contact {
  padding: 6rem 2rem;
  background: var(--white);
}

.cal-embed {
  max-width: 1000px;
  margin: 0 auto;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  color: #e0d4d8;
  text-align: center;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
}

footer p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.footer-copy {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: #1a1218;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
  }

  .nav-cta {
    text-align: center;
    font-size: 1.1rem !important;
    padding: 0.75rem 2rem;
    margin-top: 0.5rem;
  }

  .mobile-menu-btn {
    z-index: 1000;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
