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

:root {
  --cream: #f8f9fc;
  --gold: #7c9eb2;
  --brown: #6b7280;
  --dark: #1f2937;
  --white: #ffffff;
  --accent: #e8b4bc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

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

/* Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 2rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(124, 158, 178, 0.3);
}

.hero-img img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.about-img img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--brown);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trait {
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--brown);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Gallery */
.gallery {
  padding: 6rem 2rem;
  background: var(--white);
}

.gallery h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* CTA */
.cta {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: var(--white);
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .btn {
  background: var(--white);
  color: var(--gold);
}

.cta .btn:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--brown);
  font-size: 0.9rem;
}

/* Gallery links */
.gallery-grid a {
  display: block;
  position: relative;
}

.gallery-grid a:has(.video-thumb)::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0,0,0,0.5);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-content {
    order: 1;
  }

  .hero-img {
    order: 0;
  }

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

  .about-img {
    order: -1;
  }

  .traits {
    justify-content: center;
  }

  .nav-links {
    gap: 1rem;
  }
}
