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

:root {
  --cream: #F5F0E8;
  --dark: #1A1714;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --mid: #6B5E4E;
  --white: #FDFAF5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(26,23,20,0.95), transparent);
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled { background: rgba(26,23,20,0.98); padding: 16px 48px; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.3) 0%, rgba(26,23,20,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 32px;
}

.crumbs {
  position: absolute; top: 96px; left: 48px;
  z-index: 3;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { color: var(--gold-light); }

.section { padding: 100px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 32px;
  max-width: 800px;
}
.intro h2 em { font-style: italic; color: var(--gold-light); }

.intro p {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.8;
  margin-bottom: 20px;
  max-width: 720px;
}

.services-strip { background: #141210; }
.services-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  margin-bottom: 48px;
  text-align: center;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  border: 1px solid rgba(201,169,110,0.18);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.svc:hover { border-color: var(--gold); transform: translateY(-2px); }
.svc-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.svc h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.svc p {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-img img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
}
.feature-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.feature-text h2 em { font-style: italic; color: var(--gold-light); }
.feature-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  opacity: 0.78;
  margin-bottom: 20px;
}

.faq { border-top: 1px solid rgba(201,169,110,0.15); }
.faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  margin-bottom: 48px;
  text-align: center;
}
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: 28px 0;
}
.faq-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--gold-light);
}
.faq-item p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.78;
}

.cta-banner {
  padding: 110px 48px;
  text-align: center;
  background: linear-gradient(135deg, #1A1714 0%, #2A2118 50%, #1A1714 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

.btn-primary {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.5);
  padding: 16px 36px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: #25D366;
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-btn:hover { background: #1ebe59; transform: translateY(-1px); }

.related {
  padding: 80px 48px;
  background: #141210;
  text-align: center;
}
.related h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 28px;
}
.related-links {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.related-links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.3);
  padding: 14px 28px;
  transition: background 0.2s, color 0.2s;
}
.related-links a:hover { background: var(--gold); color: var(--dark); }

footer {
  background: #0E0C0A;
  padding: 50px 48px 36px;
  text-align: center;
}
footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 12px;
}
footer .logo span { color: var(--gold); }
footer p {
  font-size: 0.78rem;
  opacity: 0.45;
  margin-top: 8px;
}
footer .links {
  margin-top: 18px;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
footer .links a { color: var(--cream); opacity: 0.55; text-decoration: none; }
footer .links a:hover { opacity: 1; color: var(--gold); }

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .crumbs { left: 24px; top: 80px; }
  .section { padding: 70px 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 80px 24px; }
}
