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

:root {
  --bg: #faf8f5;
  --text: #1a1a1a;
  --accent: #c4a77d;
  --accent-dark: #a68b5b;
  --soft: #e8e2d9;
  --dark: #2c2c2c;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--soft);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
}

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

/* Hero */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 100%);
}

.hero-content {
  max-width: 650px;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--accent);
  font-style: italic;
}

.subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn.primary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1.5px solid var(--dark);
  color: var(--dark);
}

.btn.secondary:hover {
  background: var(--dark);
  color: white;
}

/* Featured / Services */
.featured {
  padding: 5rem 5%;
  text-align: center;
}

.featured h2,
.portfolio h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

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

.style-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.style-card:hover {
  transform: translateY(-8px);
}

.style-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.style-card h3 {
  padding: 1.2rem 1.2rem 0.4rem;
  font-size: 1.2rem;
}

.style-card p {
  padding: 0 1.2rem 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

/* Portfolio */
.portfolio {
  padding: 5rem 5%;
  text-align: center;
  background: #f5f1eb;
}

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

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay span {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

/* CTA */
.cta {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 5rem 5%;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.cta p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.cta .btn.primary {
  background: var(--accent);
  color: var(--dark);
}

.cta .btn.primary:hover {
  background: #d4b78a;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid var(--soft);
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    min-height: 75vh;
  }
  .portfolio-item {
    height: 240px;
  }
}
