@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --dark: #2c1810;
  --dark-soft: #4a3428;
  --cream: #faf7f2;
  --blush: #f5e6e0;
  --taupe: #a89f91;
  --gold: #c9a96e;
  --gold-light: #ddb97e;
  --gold-dark: #b8985a;
  --white: #ffffff;
  --gray-warm: #e8e0d8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--dark);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== NAVIGATION ===== */
nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--white); letter-spacing: 0.5px;
}

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

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

.nav-links a {
  color: var(--white); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.85;
}

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

.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,0.25) 0%, rgba(44,24,16,0.15) 40%, rgba(44,24,16,0.45) 100%);
}

.hero-content {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  padding: 160px 32px 100px; width: 100%;
}

.hero-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(250,247,242,0.7);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); font-weight: 500;
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
}

.hero p {
  font-size: 1rem; color: rgba(250,247,242,0.75);
  max-width: 520px; margin: 0 auto 40px; font-weight: 300;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  border-radius: 0; font-weight: 500; font-size: 0.8rem; transition: all 0.3s ease;
  cursor: pointer; border: none; letter-spacing: 2px; text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

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

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(250,247,242,0.4);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.breadcrumbs {
  padding-bottom: 20px; font-size: 0.8rem; color: rgba(250,247,242,0.6);
  font-weight: 300; letter-spacing: 0.5px;
}
.breadcrumbs a { color: rgba(250,247,242,0.6); }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span { color: var(--gold-light); }

/* ===== SECTIONS ===== */
section { padding: 120px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 20px; }
.section-header p { color: var(--taupe); font-size: 1rem; font-weight: 300; }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush); }
.bg-dark { background: var(--dark); color: var(--cream); }
.bg-dark .section-header h2 { color: var(--cream); }
.bg-dark .section-header p { color: rgba(250,247,242,0.6); }
.bg-gray { background: var(--gray-warm); }

/* ===== CARDS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: center; }

.card {
  background: var(--white); overflow: hidden;
  transition: all 0.4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,24,16,0.1); }

.card-img { height: 260px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 36px; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card-body p { color: var(--taupe); font-size: 0.92rem; margin-bottom: 20px; font-weight: 300; }
.card-body a { font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

/* ===== SERVICE LIST ===== */
.service-item { display: flex; gap: 20px; margin-bottom: 36px; }
.service-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.3rem; background: var(--blush);
}
.service-item h4 { font-size: 1.1rem; margin-bottom: 6px; font-family: 'Playfair Display', serif; }
.service-item p { color: var(--taupe); font-size: 0.9rem; font-weight: 300; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; color: var(--dark); margin-bottom: 8px; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; }
.form-group label .required { color: #b85c4a; }
.form-group small { color: var(--taupe); font-size: 0.8rem; font-weight: 300; }

input, select, textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(168,159,145,0.35);
  font-size: 0.95rem; background: var(--white); color: var(--dark);
  transition: all 0.3s ease; font-family: 'DM Sans', sans-serif;
}

input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}

textarea { resize: vertical; min-height: 120px; }

.checkbox-group, .radio-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.checkbox-group label, .radio-group label {
  display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer;
  padding: 10px 18px; border: 1px solid rgba(168,159,145,0.3);
  background: var(--white); transition: all 0.3s ease;
  font-size: 0.9rem; color: var(--dark-soft); text-transform: none; letter-spacing: 0;
}
.checkbox-group label:hover, .radio-group label:hover { border-color: var(--gold); }
.checkbox-group input, .radio-group input { width: auto; accent-color: var(--gold); }

.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid rgba(168,159,145,0.2); padding: 28px 0; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 12px; cursor: pointer; font-family: 'Playfair Display', serif; }
.faq-item h3::before { content: '+'; color: var(--gold); margin-right: 14px; font-weight: 400; font-family: 'DM Sans', sans-serif; }
.faq-item p { color: var(--taupe); padding-left: 30px; font-weight: 300; }

/* ===== PORTFOLIO ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { overflow: hidden; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(44,24,16,0.7), transparent);
  color: var(--cream); opacity: 0; transition: all 0.4s ease;
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(250,247,242,0.55); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-col h4 { color: var(--cream); font-size: 0.75rem; margin-bottom: 24px; letter-spacing: 2px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.footer-col p, .footer-col a { color: rgba(250,247,242,0.55); font-size: 0.85rem; line-height: 2.2; font-weight: 300; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(250,247,242,0.08); padding-top: 32px; text-align: center; font-size: 0.8rem; font-weight: 300; color: rgba(250,247,242,0.35); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 48px; }

/* ===== ALERTS ===== */
.alert { padding: 18px 22px; margin-bottom: 28px; font-size: 0.92rem; }
.alert-success { background: #f0f5f0; color: #3d7a3d; border: 1px solid #c5e0c5; }
.alert-error { background: #fdf2f0; color: #a84a3a; border: 1px solid #f0c5c0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero { min-height: 80vh; }
  .hero-content { padding-top: 120px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 80px 0; }
}
