:root {
  --pink: #E8197A;
  --pink-light: #ff4fa0;
  --pink-dark: #b8115e;
  --black: #111111;
  --dark: #1e1e1e;
  --gray: #6b6b6b;
  --light: #f8f8f8;
  --white: #ffffff;

  --text: var(--black);
  --text-muted: var(--gray);
  --bg: var(--white);
  --bg-alt: var(--light);
  --surface: var(--white);
  --border: #ebebeb;
  --input-border: #e0e0e0;
  --nav-bg: rgba(255,255,255,0.95);
  --pink-tint: #fff0f6;
  --pink-tint-border: #ffd0e8;
}

:root[data-theme="dark"] {
  --text: #f2f2f2;
  --text-muted: #a8a8a8;
  --bg: #121212;
  --bg-alt: #181818;
  --surface: #1c1c1c;
  --border: #2c2c2c;
  --input-border: #333333;
  --nav-bg: rgba(18,18,18,0.9);
  --pink-tint: rgba(232,25,122,0.15);
  --pink-tint-border: rgba(232,25,122,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

nav ul a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.2s;
}

nav ul a:hover { color: var(--pink); }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--pink-dark) !important; color: var(--white) !important; }

.theme-toggle {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s, background-color 0.25s ease, transform 0.2s;
}

.theme-toggle:hover {
  border-color: var(--pink);
  transform: translateY(-1px);
}

/* ── NAV DROPDOWN ── */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7em;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  list-style: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text);
}

.dropdown li a:hover {
  background: var(--pink-tint);
  color: var(--pink);
}

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  background: var(--bg);
  transition: background-color 0.25s ease;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,25,122,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
  margin-left: 16px;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image video {
  width: 100%;
  max-width: 440px;
  border-radius: 5px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-tint);
  border: 1px solid var(--pink-tint-border);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

/* ── PAGE HERO (service landing pages) ── */
.page-hero {
  padding: 150px 60px 80px;
  background: var(--bg-alt);
  transition: background-color 0.25s ease;
}

.breadcrumb {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink); }

.page-hero-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  background: var(--pink-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--text);
  margin-bottom: 16px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.page-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 32px;
}

/* ── SECTION SHARED ── */
section { padding: 100px 60px; }

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

/* ── ABOUT ── */
#about { background: var(--bg-alt); transition: background-color 0.25s ease; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

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

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 2px solid var(--pink);
  border-radius: 16px;
  z-index: 0;
}

.about-img-placeholder {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
  border-radius: 16px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img-placeholder .cat-icon {
  font-size: 7rem;
  opacity: 0.15;
}

.about-img-placeholder .about-img-text {
  position: absolute;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-text h2 { margin-bottom: 20px; }

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── SERVICES ── */
#services { background: var(--bg); transition: background-color 0.25s ease; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.service-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: var(--pink-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ── FEATURE LIST (service landing pages) ── */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}

.feature-item-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--pink-tint);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.service-cta {
  margin-top: 56px;
  padding: 48px;
  border-radius: 24px;
  background: var(--pink-tint);
  border: 1px solid var(--pink-tint-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.service-cta h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--text);
}

.service-cta p {
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── CONTACT ── */
#contact { background: var(--bg-alt); transition: background-color 0.25s ease; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-info p, .contact-info a {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1.7;
}

.contact-info a:hover { color: var(--pink); }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--pink-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.25s ease;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(232,25,122,0.1);
}

textarea { height: 140px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 60px;
  font-size: 0.85rem;
}

footer a { color: var(--pink); text-decoration: none; }

/* ── DIVIDER ── */
.pink-divider {
  width: 48px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav ul { display: none; }

  section { padding: 80px 24px; }

  #home { padding: 120px 24px 60px; }
  .page-hero { padding: 130px 24px 60px; }

  .hero-inner, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-image { order: -1; }
  .hero-image video { max-width: 280px; }

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

  .services-header { flex-direction: column; align-items: flex-start; }

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

  .feature-list { grid-template-columns: 1fr; }

  .service-cta { flex-direction: column; align-items: flex-start; }
}
