@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #fff7fa;
  --card: rgba(255,255,255,0.75);
  --text: #1c1c1c;
  --muted: #7a7a7a;
  --accent: #e8b7c5;
  --border: rgba(0,0,0,0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -200px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(232,183,197,0.35), transparent 60%);
  filter: blur(60px);
  z-index: -1;
}

.header {
  padding: 25px 10%;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.6);
  padding: 15px 25px;
  border-radius: 999px;
  position: sticky;
  top: 20px;
  z-index: 1000;
}

.logo {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text);
  opacity: 0.6;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.hero {
  padding: 160px 10% 120px;
  max-width: 1100px;
  margin: auto;
}

.hero-left h1 {
  font-size: 78px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.hero-left p {
  margin-top: 25px;
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
}

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.4s ease;
}

.btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.section {
  padding: 140px 10%;
  max-width: 1100px;
  margin: auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.project-card {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid #f0e6ea;
}

.project-content h3 {
  font-size: 22px;
  font-weight: 500;
}

.project-content p {
  margin-top: 12px;
  color: var(--muted);
  max-width: 650px;
}

/* GRID — equal height cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  align-items: start;
}

/* CARD */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(12px);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(232,183,197,0.15);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 500;
}

.service-card p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Videos fill card width and have consistent height */
.service-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 15px;
  background: #000;
}

/* Portfolio placeholder box matches video height */
.portfolio-placeholder {
  width: 100%;
  height: 220px;
  background: #fdf0f4;
  border-radius: 12px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #bbb;
  text-align: center;
  padding: 20px;
}

.about-box {
  margin-top: 40px;
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
}

.contact-box {
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}

footer {
  padding: 60px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .header, .hero, .section {
    padding: 40px 25px;
  }

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