:root {
  --pink: #e91e63;
  --pink-dark: #c2185b;
  --dark: #1a1a1a;
  --gray: #5c5c5c;
  --light: #f8f7f5;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-dark); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

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

.header-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
}

.header-contact a {
  color: var(--gray);
  font-weight: 500;
}

.header-contact .phone {
  color: var(--pink);
  font-weight: 600;
}

/* Nav */
.nav {
  background: var(--dark);
}

.nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.nav a {
  color: #fff;
  padding: 14px 20px;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 6px;
}

.nav a:hover,
.nav a.active {
  background: var(--pink);
  color: #fff;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  color: var(--dark);
  padding: 10px 18px;
}

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--pink);
}

/* Hero */
.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,26,26,0.55) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.hero-text {
  color: #fff;
  max-width: 480px;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  background: var(--pink);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

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

/* Main content */
main {
  padding: 48px 0 64px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--gray);
  margin-bottom: 32px;
}

/* Cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.card-img {
  height: 180px;
  overflow: hidden;
  background: #fce4ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.card-body p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Content page */
.page-hero {
  height: 280px;
  position: relative;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.content-block h1 {
  font-size: 1.9rem;
  margin-bottom: 16px;
}

.content-block p {
  color: var(--gray);
  margin-bottom: 14px;
}

.team-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 40px 0 28px;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
}

.site-footer .brand {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }
  .header-contact {
    flex-direction: column;
    gap: 6px;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  .nav a {
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #2a2a2a;
  }
  .dropdown-menu a {
    color: #ccc;
  }
  .hero {
    height: 320px;
  }
  .hero-overlay {
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 70%);
    align-items: flex-end;
    padding-bottom: 32px;
  }
  .content-block {
    padding: 28px 20px;
    margin-top: -40px;
  }
  .page-hero {
    height: 200px;
  }
}
