:root {
  --coal: #f4f1ea; --off-black: #ebe5d8; --graphite: #ffffff; --stone: #efe9db;
  --platinum: #534c3f; --cream: #2b2820; --gold: #a8772a; --gold-light: #c89436;
  --white: #15120c; --mid: #786f5d; --ink: #14110c; --on-dark: #f6f2ea;
  --serif: 'Cormorant Garamond', Georgia, serif; --sans: 'Barlow', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--coal); color: var(--cream); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
img { display: block; }

.dnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 22px 60px; background: rgba(244,241,234,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(168,119,42,.28); }
.dnav .logo { display: flex; align-items: baseline; gap: 12px; text-decoration: none; }
.logo-abbr { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); letter-spacing: .06em; }
.logo-name { font-family: var(--sans); font-size: .68rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--platinum); opacity: .8; }
.dnav-back { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--platinum); text-decoration: none; opacity: .8; transition: color .25s, opacity .25s; }
.dnav-back:hover { color: var(--gold-light); opacity: 1; }

.dhero { min-height: 74vh; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 60px 72px; overflow: hidden; }
.dhero-bg { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,13,13,.92) 0%, rgba(13,13,13,.32) 55%, rgba(13,13,13,.7) 100%), var(--hero-img) center/cover no-repeat; animation: zo 8s ease forwards; }
@keyframes zo { from { transform: scale(1.06); } to { transform: scale(1); } }
.dcrumb { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.dcrumb a { color: inherit; text-decoration: none; opacity: .78; }
.dcrumb a:hover { opacity: 1; color: var(--gold-light); }
.dhero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; line-height: 1.08; color: var(--on-dark); max-width: 780px; text-shadow: 0 2px 26px rgba(0,0,0,.45); }
.dhero h1 em { font-style: italic; color: var(--gold-light); }
.dhero-sub { margin-top: 24px; max-width: 580px; font-size: .96rem; line-height: 1.85; color: var(--on-dark); opacity: .92; text-shadow: 0 1px 14px rgba(0,0,0,.5); }

section { padding: 92px 60px; }
.wrap { max-width: 1120px; margin: 0 auto; }
.label { font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.15; color: var(--white); }
.title em { font-style: italic; color: var(--gold-light); }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 24px 0 30px; opacity: .6; }
.lead { font-size: 1rem; line-height: 1.95; color: var(--platinum); opacity: .88; max-width: 780px; }
.lead p { margin-bottom: 18px; }
.lead strong { color: var(--gold-light); font-weight: 400; }

.overview { background: var(--off-black); }
.features { background: var(--coal); }
.feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 50px; }
.feat { background: var(--graphite); padding: 44px 42px; border-top: 2px solid transparent; transition: border-color .35s, background .35s; }
.feat:hover { background: var(--stone); border-top-color: var(--gold); }
.feat .ic { font-size: 1.7rem; margin-bottom: 18px; }
.feat h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--white); margin-bottom: 12px; }
.feat p { font-size: .88rem; line-height: 1.8; color: var(--mid); }

.steps { background: var(--off-black); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 50px; }
.step .n { font-family: var(--serif); font-size: 2.6rem; color: rgba(184,156,92,.35); line-height: 1; }
.step h4 { font-family: var(--serif); font-size: 1.18rem; color: var(--white); margin: 14px 0 10px; }
.step p { font-size: .82rem; line-height: 1.75; color: var(--mid); }

.gallery { background: var(--coal); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 50px; }
.gal-grid figure { overflow: hidden; height: 320px; }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(12%) brightness(.97); transition: transform .6s, filter .6s; }
.gal-grid figure:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1.02); }

.cta { background: var(--graphite); text-align: center; }
.cta h2 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--white); }
.cta h2 em { font-style: italic; color: var(--gold-light); }
.cta p { margin: 20px auto 36px; max-width: 540px; color: var(--platinum); opacity: .8; font-size: .95rem; line-height: 1.85; }
.cta-row { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.btn-primary { display: inline-block; padding: 15px 42px; background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: background .25s, transform .2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 14px 40px; border: 1px solid rgba(21,18,12,.3); color: var(--platinum); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: border-color .25s, color .25s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.dfooter { background: var(--off-black); padding: 50px 60px; border-top: 1px solid rgba(168,119,42,.28); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.dfooter p { font-size: .72rem; color: var(--mid); letter-spacing: .04em; }
.dfooter a { color: var(--gold); text-decoration: none; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.dfooter a:hover { color: var(--gold-light); }

.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .25s; }
.whatsapp-btn:hover { transform: scale(1.1); }

@media (max-width: 980px) {
  .dnav { padding: 18px 22px; }
  .logo-name { display: none; }
  .dhero { padding: 0 22px 56px; min-height: 66vh; }
  section { padding: 64px 22px; }
  .feat-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gal-grid { grid-template-columns: 1fr; }
  .gal-grid figure { height: 250px; }
  .dfooter { padding: 40px 22px; flex-direction: column; align-items: flex-start; }
  .whatsapp-btn { width: 52px; height: 52px; bottom: 22px; right: 22px; }
}
@media (max-width: 560px) { .step-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
