/* ── RESET & BASE ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #0a0a0a;
  color: #e8e8e8;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --border: rgba(201,168,76,0.22);
  --text: #e8e8e8;
  --muted: #888888;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── NAVIGATION ─────────────────────────────────────────────────────────────── */
.dg-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  transition: background 0.4s, box-shadow 0.4s;
}
.dg-nav.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.dg-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--gold);
  text-decoration: none; letter-spacing: 1px;
}
.dg-nav-links { display: flex; gap: 36px; list-style: none; }
.dg-nav-links a {
  color: var(--text); text-decoration: none; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.65; transition: opacity 0.3s, color 0.3s;
}
.dg-nav-links a:hover { opacity: 1; color: var(--gold); }
.dg-nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 9px 26px; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
  text-decoration: none;
}
.dg-nav-cta:hover { background: var(--gold); color: #0a0a0a; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.dg-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: #0a0a0a;
}
.dg-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.dg-hero-grid {
  position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.6) 1px, transparent 1px);
  background-size: 60px 60px;
}
.dg-hero-content {
  position: relative; z-index: 2;
  max-width: 1240px; width: 100%; margin: 0 auto;
  padding: 120px 60px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.dg-hero-badge {
  display: inline-block; border: 1px solid var(--border);
  padding: 6px 16px; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.dg-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 82px); font-weight: 300;
  line-height: 1.05; color: #fff; margin-bottom: 24px;
}
.dg-hero-title em { color: var(--gold); font-style: italic; }
.dg-hero-desc {
  font-size: 15px; line-height: 1.85; color: var(--muted);
  max-width: 400px; margin-bottom: 44px;
}
.dg-hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.dg-btn-primary {
  background: var(--gold); color: #0a0a0a;
  padding: 15px 38px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: all 0.3s; display: inline-block; border: none; cursor: pointer;
}
.dg-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: #0a0a0a; }
.dg-btn-ghost {
  color: var(--text); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  opacity: 0.55; transition: opacity 0.3s;
}
.dg-btn-ghost:hover { opacity: 1; }
.dg-hero-stats { display: flex; flex-direction: column; gap: 4px; }
.dg-stat {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  padding: 28px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.dg-stat:hover { border-color: var(--gold); }
.dg-stat::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--gold);
}
.dg-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 600; color: var(--gold); line-height: 1;
}
.dg-stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ── SHARED SECTION ──────────────────────────────────────────────────────────── */
.dg-section { max-width: 1240px; margin: 0 auto; padding: 100px 60px; }
.dg-section-label {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.dg-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 52px); font-weight: 300;
  color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.dg-section-title em { font-style: italic; color: var(--gold); }
.dg-section-desc { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 520px; }
.dg-divider { border: none; border-top: 1px solid var(--border); max-width: 1240px; margin: 0 auto; }

/* ── SERVICES ───────────────────────────────────────────────────────────────── */
.dg-services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 64px;
}
.dg-service {
  background: #111; padding: 48px 36px;
  border: 1px solid var(--border); position: relative;
  overflow: hidden; transition: all 0.4s; cursor: default;
}
.dg-service:hover { background: #1a1a1a; border-color: var(--gold); }
.dg-service-bg-num {
  font-family: 'Cormorant Garamond', serif; font-size: 80px; font-weight: 700;
  color: rgba(201,168,76,0.05); position: absolute;
  top: 16px; right: 20px; line-height: 1; pointer-events: none;
}
.dg-service-icon { font-size: 30px; margin-bottom: 24px; display: block; transition: transform 0.4s; }
.dg-service:hover .dg-service-icon { transform: scale(1.15); }
.dg-service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; color: #fff; margin-bottom: 14px;
}
.dg-service-desc { font-size: 14px; color: var(--muted); line-height: 1.8; }
.dg-service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 24px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); text-decoration: none;
  opacity: 0; transition: opacity 0.3s;
}
.dg-service:hover .dg-service-link { opacity: 1; }

/* ── WHY US ─────────────────────────────────────────────────────────────────── */
.dg-why { background: #111; padding: 100px 0; }
.dg-why-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.dg-why-features { display: flex; flex-direction: column; }
.dg-why-feature {
  padding: 28px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 20px; align-items: flex-start; transition: padding-left 0.3s;
}
.dg-why-feature:first-child { border-top: 1px solid var(--border); }
.dg-why-feature:hover { padding-left: 10px; }
.dg-why-icon {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0; color: var(--gold);
}
.dg-why-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: #fff; margin-bottom: 6px;
}
.dg-why-text p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── GALLERY ────────────────────────────────────────────────────────────────── */
.dg-gallery-cats { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0 28px; }
.dg-cat-btn {
  padding: 10px 22px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer; border: 1px solid var(--border);
  background: transparent; color: var(--muted); font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; display: flex; align-items: center; gap: 8px;
}
.dg-cat-btn:hover { border-color: var(--gold); color: var(--gold); }
.dg-cat-btn.active { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.dg-cat-count {
  background: rgba(255,255,255,0.15); border-radius: 20px;
  padding: 2px 8px; font-size: 10px;
}
.dg-cat-btn.active .dg-cat-count { background: rgba(0,0,0,0.2); }

.dg-gallery-panel { display: none; flex-direction: column; gap: 4px; }
.dg-gallery-panel.active { display: flex; }

.dg-gallery-featured {
  width: 100%; height: 480px; overflow: hidden;
  position: relative; cursor: pointer; background: #111;
}
.dg-gallery-featured img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.82);
}
.dg-gallery-featured:hover img { transform: scale(1.03); filter: brightness(0.95); }
.dg-gallery-feat-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 36px 32px 24px;
  display: flex; align-items: flex-end; justify-content: space-between;
  pointer-events: none;
}
.dg-gallery-feat-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: #fff; font-weight: 400;
}
.dg-gallery-feat-label span {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.dg-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.dg-thumb {
  height: 130px; overflow: hidden; position: relative;
  cursor: pointer; background: #111; border: 2px solid transparent;
  transition: border-color 0.25s;
}
.dg-thumb.active { border-color: var(--gold); }
.dg-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s, filter 0.3s; filter: brightness(0.55);
}
.dg-thumb:hover img, .dg-thumb.active img { transform: scale(1.07); filter: brightness(0.88); }
.dg-thumb-lbl {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 7px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text); opacity: 0; transition: opacity 0.3s;
}
.dg-thumb:hover .dg-thumb-lbl, .dg-thumb.active .dg-thumb-lbl { opacity: 1; }

/* ── LIGHTBOX ───────────────────────────────────────────────────────────────── */
.dg-lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.96);
  align-items: center; justify-content: center; padding: 20px;
}
.dg-lightbox.open { display: flex; animation: lbFadeIn 0.25s ease; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.dg-lightbox-inner { position: relative; max-width: 1000px; width: 100%; }
.dg-lightbox-inner img { width: 100%; max-height: 80vh; object-fit: contain; display: block; }
.dg-lb-close {
  position: absolute; top: -46px; right: 0;
  background: none; border: 1px solid var(--border); color: var(--text);
  width: 36px; height: 36px; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.dg-lb-close:hover { border-color: var(--gold); color: var(--gold); }
.dg-lb-caption {
  text-align: center; margin-top: 16px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
}
.dg-lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid var(--border); color: var(--text);
  width: 46px; height: 46px; cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.dg-lb-nav:hover { border-color: var(--gold); color: var(--gold); }
.dg-lb-prev { left: -60px; }
.dg-lb-next { right: -60px; }

/* ── CONTACT ────────────────────────────────────────────────────────────────── */
.dg-contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 72px;
}
.dg-contact-info { display: flex; flex-direction: column; gap: 36px; }
.dg-contact-item { display: flex; gap: 18px; align-items: flex-start; }
.dg-contact-icon {
  width: 46px; height: 46px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--gold);
}
.dg-contact-item h4 {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.dg-contact-item p, .dg-contact-item a {
  font-size: 15px; color: var(--text); text-decoration: none;
  display: block; line-height: 1.6;
}
.dg-contact-item a:hover { color: var(--gold); }
.dg-form { display: flex; flex-direction: column; gap: 18px; }
.dg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dg-field { display: flex; flex-direction: column; gap: 7px; }
.dg-field.full { grid-column: span 2; }
.dg-field label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.dg-field input, .dg-field textarea, .dg-field select {
  background: #111; border: 1px solid var(--border);
  color: var(--text); padding: 13px 16px; font-size: 14px;
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.3s; resize: none; width: 100%;
}
.dg-field input:focus, .dg-field textarea:focus, .dg-field select:focus {
  border-color: var(--gold);
}
.dg-field textarea { height: 130px; }
.dg-field select option { background: #111; }
.dg-wa-btn {
  background: #25D366; color: #fff; border: none;
  padding: 16px 44px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px;
}
.dg-wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.dg-footer {
  background: #111; border-top: 1px solid var(--border);
  padding: 52px 60px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.dg-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600; color: var(--gold);
}
.dg-footer-links { display: flex; gap: 28px; }
.dg-footer-links a {
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s;
}
.dg-footer-links a:hover { color: var(--gold); }
.dg-footer-copy { font-size: 12px; color: var(--muted); }

/* ── FADE ANIMATION ─────────────────────────────────────────────────────────── */
.dg-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.dg-fade.in { opacity: 1; transform: translateY(0); }

/* ── MOBILE ─────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dg-nav { padding: 18px 20px; }
  .dg-nav-links, .dg-nav-cta { display: none; }
  .dg-hero-content { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 40px; }
  .dg-section { padding: 70px 20px; }
  .dg-services-grid { grid-template-columns: 1fr; }
  .dg-why { padding: 70px 0; }
  .dg-why-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 50px; }
  .dg-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .dg-gallery-featured { height: 260px; }
  .dg-contact-grid { grid-template-columns: 1fr; }
  .dg-form-row { grid-template-columns: 1fr; }
  .dg-field.full { grid-column: span 1; }
  .dg-footer { padding: 36px 20px; flex-direction: column; align-items: flex-start; }
  .dg-lb-prev { left: -36px; }
  .dg-lb-next { right: -36px; }
}
