/* =========================================================
   Aurum & Ember - Dark Luxury Atelier Theme
   ========================================================= */
:root {
  --bg: #0a0806;
  --bg-soft: #0f0c09;
  --bg-card: #15110b;
  --bg-2: #0c0a08;
  --gold: #d8b26a;
  --gold-light: #eecfa0;
  --gold-dark: #a8813f;
  --gold-hover: #e0bd82;
  --champagne: #f2e2c2;
  --emerald: #2e8b57;
  --emerald-bright: #3fb57f;
  --emerald-glow: rgba(62, 174, 120, 0.28);
  --bronze: #9a7b3f;
  --cta: #d8b26a;
  --whatsapp: #25d366;
  --white: #fbf7ee;
  --muted: rgba(240, 230, 210, 0.62);
  --border: rgba(255, 255, 255, 0.08);
  --gold-glow: rgba(216, 178, 106, 0.35);
  --font-head: 'Jost', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --font-display: 'Marcellus', serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Ambient site-wide background (champagne + emerald haze) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 12% 0%, rgba(216, 178, 106, 0.06), transparent 60%),
    radial-gradient(45% 40% at 88% 18%, rgba(216, 178, 106, 0.045), transparent 60%),
    radial-gradient(50% 40% at 50% 105%, rgba(46, 139, 87, 0.06), transparent 62%);
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold-dark), #2a2a2a); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- Film grain overlay ---------- */
/* (removed: animated grain caused a moving dark layer over the background) */

/* =========================================================
   Preloader
   ========================================================= */
.dd-preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.dd-preloader.hidden { opacity: 0; visibility: hidden; }

.dd-preloader-inner { text-align: center; }

.dd-preloader-logo {
  width: 92px;
  animation: preloaderFloat 1.8s ease-in-out infinite;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.04); }
}

.dd-preloader-text {
  display: block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  animation: preloaderFade 1.6s ease-in-out infinite;
}

@keyframes preloaderFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.dd-preloader-bar {
  width: 190px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 18px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.dd-preloader-bar span {
  display: block;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: preloaderBar 1.1s ease-in-out infinite;
}

@keyframes preloaderBar {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(340%); }
}

/* =========================================================
   Scroll progress
   ========================================================= */
.dd-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 2100;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.7);
}

/* =========================================================
   Custom cursor
   ========================================================= */
.dd-cursor,
.dd-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 4000;
  transform: translate(-50%, -50%);
}

.dd-cursor {
  width: 38px; height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              background 0.25s, border-color 0.25s, opacity 0.3s;
}

.dd-cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
}

.dd-cursor.hovering {
  width: 58px; height: 58px;
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.dd-cursor.hovering .dd-cursor-dot { display: none; }

.dd-cursor.dd-cursor-hidden,
.dd-cursor-dot.dd-cursor-hidden { opacity: 0; }

@media (hover: none), (max-width: 991.98px) {
  .dd-cursor, .dd-cursor-dot { display: none; }
}

/* =========================================================
   Gold shimmer text
   ========================================================= */
.shimmer-gold {
  background: linear-gradient(100deg, #d4af37 20%, #f9e07a 40%, #d4af37 55%, #a8842a 75%, #d4af37 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 4.5s linear infinite;
}

@keyframes shimmer {
  to { background-position: -200% center; }
}

.gold-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.serif { font-family: var(--font-serif); font-weight: 500; }

/* =========================================================
   Navbar
   ========================================================= */
.dd-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 24px;
  transition: padding 0.35s ease;
}

.dd-nav {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 60px;
  background: transparent;
  transition: all 0.4s ease;
}

.dd-navbar.scrolled .dd-nav {
  background: rgba(5, 5, 5, 0.82);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(212, 175, 55, 0.12);
}

.dd-navbar.scrolled { padding: 10px 24px; }

.dd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.dd-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.45));
  transition: transform 0.5s var(--ease-out);
}

.dd-logo:hover img { transform: rotate(-8deg) scale(1.06); }

.dd-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.dd-logo-text em { font-style: normal; color: var(--gold); }

.dd-menu {
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-menu-link {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 0;
  transition: color 0.3s;
}

.dd-menu-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 8px var(--gold-glow);
  transition: width 0.35s ease;
}

.dd-menu-link:hover,
.dd-menu-link.active { color: var(--gold-light); }

.dd-menu-link:hover::after,
.dd-menu-link.active::after { width: 100%; }

.dd-nav-actions { display: flex; align-items: center; gap: 16px; }

/* Theme toggle */
.dd-theme-toggle {
  background: none;
  border: 1px solid rgba(216,178,106,.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold-light);
  font-size: 1rem;
  transition: all 0.3s;
  position: relative;
}
.dd-theme-toggle:hover {
  background: rgba(216,178,106,.1);
  border-color: var(--gold);
  color: var(--gold);
}
.dd-theme-icon { display: inline; }
[data-theme="light"] .dd-theme-dark,
:not([data-theme="light"]) .dd-theme-light { display: none; }
[data-theme="light"] .dd-theme-light,
:not([data-theme="light"]) .dd-theme-dark { display: inline; }

/* Light theme overrides */
[data-theme="light"] {
  --bg: #f5f0e8;
  --panel: #ffffff;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --emerald: #2d7a4a;
  --emerald-bright: #3fb57f;
  --emerald-glow: rgba(63,181,127,.35);
  --text: #2c2c2c;
  --muted: #6b5b4a;
  --border: rgba(0,0,0,.1);
  --danger: #c0392b;
  --champagne: #c4952a;
}

/* =========================================================
   Buttons
   ========================================================= */
.dd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  border-radius: 60px;
  padding: 13px 30px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.dd-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg);
  transition: left 0.7s var(--ease-out);
  z-index: -1;
}

.dd-btn:hover::before { left: 150%; }

.dd-btn-sm { padding: 10px 22px; font-size: 0.72rem; }
.dd-btn-lg { padding: 15px 36px; }

.dd-btn-gold {
  background: linear-gradient(120deg, var(--gold-hover), var(--gold));
  color: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.dd-btn-gold:hover {
  background: linear-gradient(120deg, var(--gold-light), var(--gold-hover));
  color: #0a0a0a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px rgba(212, 175, 55, 0.5);
}

.dd-btn-cta {
  background: linear-gradient(120deg, var(--cta), #e6b800);
  color: #0a0a0a;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.dd-btn-cta:hover { background: linear-gradient(120deg, #f8dd5e, var(--cta)); color: #0a0a0a; transform: translateY(-3px); }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.45); }
  50% { box-shadow: 0 0 0 20px rgba(241, 196, 15, 0); }
}

.dd-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dd-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
}

/* ---------- Hamburger ---------- */
.dd-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.dd-hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.dd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dd-hamburger.open span:nth-child(2) { opacity: 0; }
.dd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile overlay ---------- */
.dd-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5, 5, 5, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: 30px 34px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.45s var(--ease-out);
}

.dd-mobile-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }

.dd-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dd-overlay-close {
  background: none;
  border: 0;
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.4s;
}

.dd-overlay-close:hover { transform: rotate(90deg); }

.dd-mobile-menu {
  list-style: none;
  margin: 60px 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dd-mobile-menu li { overflow: hidden; }

.dd-mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.dd-mobile-overlay.open .dd-mobile-menu a {
  opacity: 1;
  transform: translateY(0);
}

.dd-mobile-menu a:hover { color: var(--gold); padding-left: 10px; }

.dd-mobile-cta { align-self: flex-start; }

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

/* Parallax wrapper */
.dd-hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.dd-hero-bg {
  position: absolute;
  inset: -4% 0;
  background: url('https://images.unsplash.com/photo-1536935338788-846bb9981813?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.06) brightness(0.92);
  will-change: transform;
}

/* Rotating light rays (cinematic beams) */
.dd-hero-rays {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg at 50% 0%,
    transparent 0deg,
    rgba(212, 175, 55, 0.13) 8deg,
    transparent 20deg,
    transparent 34deg,
    rgba(212, 175, 55, 0.09) 44deg,
    transparent 58deg,
    transparent 70deg,
    rgba(212, 175, 55, 0.06) 80deg,
    transparent 92deg);
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: raySpin 80s linear infinite;
  pointer-events: none;
}

@keyframes raySpin {
  to { transform: rotate(360deg); }
}

/* Pulsing central gold glow */
.dd-hero-glow {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 62vmax;
  height: 62vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.07) 38%, transparent 62%);
  animation: glowPulse 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
}

/* Cinematic vignette */
.dd-hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, transparent 40%, rgba(3, 3, 3, 0.55) 78%, rgba(2, 2, 2, 0.92) 100%);
  pointer-events: none;
}

.dd-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 32%, rgba(212, 175, 55, 0.12) 0%, transparent 52%),
    linear-gradient(180deg, rgba(5,5,5,0.66) 0%, rgba(5,5,5,0.30) 42%, #050505 100%);
}

.dd-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 { width: 380px; height: 380px; top: 8%; left: -80px; background: rgba(212,175,55,0.30); animation: orbFloat 9s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; bottom: 5%; right: -60px; background: rgba(212,175,55,0.22); animation: orbFloat 11s ease-in-out infinite reverse; }
.orb-3 { width: 220px; height: 220px; top: 45%; right: 24%; background: rgba(255,255,255,0.10); animation: orbFloat 13s ease-in-out infinite; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-34px) translateX(22px); }
}

/* Hero particles canvas */
.dd-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.dd-hero-icon {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}

.dd-hero-icon svg { width: 46px; height: 46px; filter: drop-shadow(0 0 12px var(--gold-glow)); }

.icon-1 { top: 20%; left: 8%; animation: iconFloat 3s ease-in-out infinite; }
.icon-2 { top: 30%; right: 10%; animation: iconFloat 2.4s ease-in-out 0.6s infinite; }
.icon-3 { bottom: 24%; left: 14%; animation: iconFloat 2.8s ease-in-out 1s infinite; }
.icon-4 { bottom: 18%; right: 18%; animation: iconFloat 3.2s ease-in-out 0.3s infinite; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

/* Hero vertical side labels */
.dd-hero-side {
  position: absolute;
  z-index: 2;
  font-family: var(--font-head);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  opacity: 0;
  animation: sideFade 1.4s var(--ease-out) 1.1s forwards;
}

.side-left {
  left: 26px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.side-right {
  right: -60px;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right top;
}

@keyframes sideFade {
  to { opacity: 1; }
}

.dd-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 130px 24px 110px;
  max-width: 920px;
}

.dd-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 60px;
  padding: 9px 22px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.dd-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-25deg);
  animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeShine {
  0%, 60% { left: -120%; }
  85%, 100% { left: 160%; }
}

.dd-hero-title {
  font-size: clamp(2.5rem, 6.5vw, 4.8rem);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 26px;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px) rotate(3deg);
}

.hero-word.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.dd-hero-title .gold-italic { font-size: 1.08em; }

.dd-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 660px;
  margin: 0 auto 42px;
  line-height: 1.75;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.dd-hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.dd-scroll-hint {
  position: absolute;
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: wheelScroll 1.8s ease-in-out infinite;
}

@keyframes wheelScroll {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Hero bottom strip */
.dd-hero-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: rgba(5, 5, 5, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* =========================================================
   Marquee (shared)
   ========================================================= */
.dd-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.dd-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 6px 0 10px;
}

.dd-marquee-right .dd-marquee-track { animation: marqueeRight var(--marquee-speed, 45s) linear infinite; }
.dd-marquee-left .dd-marquee-track { animation: marqueeLeft var(--marquee-speed, 45s) linear infinite; }

.dd-marquee:hover .dd-marquee-track { animation-play-state: paused; }

@keyframes marqueeRight {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeLeft {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Divider strip items */
.dd-divider-strip {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 26px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.dd-divider-strip .dd-marquee-track { gap: 0; padding: 0; }

.dd-divider-item {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-right: 48px;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  transition: color 0.4s;
}

.dd-divider-strip:hover .dd-divider-item { color: rgba(212, 175, 55, 0.75); }

.dd-divider-item em { font-style: normal; color: var(--gold); text-shadow: 0 0 14px var(--gold-glow); }

/* =========================================================
   Sections shared
   ========================================================= */
.dd-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.dd-section > .container,
.dd-gallery-head,
.dd-marquee-row {
  position: relative;
  z-index: 1;
}

/* Section corner glows */
.dd-services::before, .dd-contact::before, .dd-testimonials::before,
.dd-services::after, .dd-contact::after, .dd-testimonials::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.dd-services::before, .dd-contact::before, .dd-testimonials::before {
  top: -140px;
  left: -140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09), transparent 70%);
}

.dd-services::after, .dd-contact::after, .dd-testimonials::after {
  bottom: -140px;
  right: -140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07), transparent 70%);
}

.dd-section-head {
  text-align: center;
  margin-bottom: 64px;
}

.dd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 18px;
}

.dd-eyebrow::before,
.dd-eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.dd-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.dd-title {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  position: relative;
  display: inline-block;
}

.dd-section-head .dd-title {
  padding-bottom: 26px;
}

.dd-section-head .dd-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.dd-section-head .dd-title::before {
  content: '\2726';
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
  background: var(--bg);
  padding: 0 10px;
  z-index: 1;
  text-shadow: 0 0 12px var(--gold-glow);
}

.dd-lead {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--muted);
  margin: 20px auto 0;
  max-width: 580px;
}

.dd-hint {
  display: block;
  margin-top: 16px;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Reveal animation */
.dd-reveal,
.dd-reveal-left,
.dd-reveal-right,
.dd-reveal-zoom {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.dd-reveal { transform: translateY(42px); }
.dd-reveal-left { transform: translateX(-60px); }
.dd-reveal-right { transform: translateX(60px); }
.dd-reveal-zoom { transform: scale(0.88); }

.dd-reveal.visible,
.dd-reveal-left.visible,
.dd-reveal-right.visible,
.dd-reveal-zoom.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   About
   ========================================================= */
.dd-about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.dd-about-media {
  position: relative;
  border-radius: var(--radius);
}

.dd-about-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.dd-about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(30%);
  border: 1px solid var(--border);
  transition: transform 0.8s var(--ease-out), filter 0.8s;
}

.dd-about-media:hover img { transform: scale(1.04); filter: grayscale(10%); }

.dd-about-corner {
  position: absolute;
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  opacity: 0.75;
  z-index: 2;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.corner-tl { top: -16px; left: -16px; border-right: 0; border-bottom: 0; }
.corner-br { bottom: -16px; right: -16px; border-left: 0; border-top: 0; }

.dd-about-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  max-width: 300px;
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.08);
  z-index: 2;
  animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.dd-card-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.dd-about-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.dd-about .dd-title { margin-bottom: 36px; text-align: left; }

.dd-about-block {
  border-left: 1px solid rgba(212, 175, 55, 0.45);
  padding-left: 22px;
  margin-bottom: 24px;
  position: relative;
  transition: border-color 0.4s, padding-left 0.4s;
}

.dd-about-block:hover { border-color: var(--gold); padding-left: 28px; }

.dd-about-block h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin: 0 0 8px;
}

.dd-about-block p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.dd-stats {
  display: flex;
  gap: 48px;
  margin: 40px 0 36px;
  flex-wrap: wrap;
}

.dd-stat { display: flex; flex-direction: column; }

.dd-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

.dd-stat-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

/* =========================================================
   Services
   ========================================================= */
.dd-services { background: var(--bg-2); }

.dd-svc-card {
  position: relative;
  height: 100%;
  min-height: 350px;
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dd-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.dd-svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(212,175,55,0.8), rgba(212,175,55,0) 40%, rgba(212,175,55,0) 60%, rgba(212,175,55,0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.dd-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(212, 175, 55, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.dd-svc-card:hover::before { opacity: 1; }
.dd-svc-card:hover::after { opacity: 1; }

.dd-svc-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.14);
  transition: color 0.4s;
}

.dd-svc-card:hover .dd-svc-num { color: var(--gold); }

.dd-svc-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.5s var(--ease-out);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.06);
}

.dd-svc-card:hover .dd-svc-icon {
  background: linear-gradient(120deg, var(--gold-hover), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.12), 0 0 30px rgba(212, 175, 55, 0.4);
  transform: rotate(-8deg) scale(1.05);
}

.dd-svc-icon svg { width: 24px; height: 24px; }

.dd-svc-tag {
  font-family: var(--font-head);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 10px;
}

.dd-svc-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.dd-svc-desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.dd-svc-more {
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.35s;
}

.dd-svc-card:hover .dd-svc-more { color: var(--gold-light); }

.dd-svc-more i { font-style: normal; transition: transform 0.35s; display: inline-block; }

.dd-svc-card:hover .dd-svc-more i { transform: translateX(8px); }

/* Service modal */
.dd-modal {
  background: var(--bg-card);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.08);
}

.dd-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  filter: invert(1) brightness(2);
  opacity: 0.9;
}

.dd-modal-img {
  height: 100%;
  min-height: 330px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dd-modal-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,5,5,0.3), transparent 60%);
}

.dd-modal-body { padding: 42px 38px; }

.dd-modal-sub {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin: 26px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dd-modal-sub::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.5), transparent);
}

.dd-feat-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.dd-feat-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
}

.dd-feat-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 10px var(--gold-glow);
}

/* =========================================================
   Gallery
   ========================================================= */
.dd-gallery {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding-bottom: 50px;
  overflow: hidden;
}

.dd-gallery-head { text-align: center; margin-bottom: 56px; }

.dd-marquee-row { margin-bottom: 32px; }

.dd-marquee-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 0 24px;
}

.dd-marquee-idx {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

.dd-marquee-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.dd-gallery-item {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  width: 250px;
  height: 190px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.4s, box-shadow 0.4s;
  transform: perspective(700px) rotateY(0);
}

.dd-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.6s;
}

.dd-gallery-item:hover {
  border-color: rgba(212, 175, 55, 0.65);
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(212, 175, 55, 0.15);
}

.dd-gallery-item:hover img { transform: scale(1.12); }

.dd-gallery-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(5,5,5,0.88) 0%, transparent 55%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.4s;
}

.dd-gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.dd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 4, 4, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}

.dd-lightbox.open { opacity: 1; visibility: visible; }

.dd-lightbox-figure {
  margin: 0;
  max-width: min(920px, 90vw);
  animation: lightboxIn 0.5s var(--ease-out);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.dd-lightbox-figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.dd-lightbox-figure figcaption {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  margin-top: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.dd-lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s;
  z-index: 2;
}

.dd-lightbox button:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); box-shadow: 0 0 30px var(--gold-glow); }

.dd-lightbox-close { top: 26px; right: 26px; }
.dd-lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.dd-lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   Why
   ========================================================= */
.dd-why {
  background: var(--bg-soft);
  overflow: hidden;
}

.dd-why-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 12vw, 11rem);
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
}

.dd-pillar {
  position: relative;
  text-align: center;
  padding: 50px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255,255,255,0.03), transparent);
  height: 100%;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.dd-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-out);
}

.dd-pillar:hover { border-color: rgba(212, 175, 55, 0.5); background: rgba(212, 175, 55, 0.05); transform: translateY(-8px); }
.dd-pillar:hover::before { width: 100%; }

.dd-pillar-icon {
  width: 74px; height: 74px;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  transition: all 0.5s var(--ease-out);
}

.dd-pillar:hover .dd-pillar-icon {
  background: linear-gradient(120deg, var(--gold-hover), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.1), 0 0 36px rgba(212, 175, 55, 0.4);
  transform: rotateY(360deg);
}

.dd-pillar-icon svg { width: 32px; height: 32px; }

.dd-pillar h3 {
  font-size: 1.22rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
}

.dd-pillar p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.dd-why-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 78px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

.dd-why-stat { display: flex; flex-direction: column; align-items: center; position: relative; }

.dd-why-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.5), transparent);
}

.dd-why-stat .dd-stat-num { font-size: 2.7rem; }

.dd-why-stat .dd-stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 6px;
}

/* =========================================================
   Testimonials / Partners
   ========================================================= */
.dd-testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding-bottom: 70px;
}

.dd-partner-row { margin: 18px 0 28px; }

.dd-partner-marquee { -webkit-mask-image: none; mask-image: none; }

.dd-partner-name {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 16px 38px;
  white-space: nowrap;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.02), transparent);
}

.dd-partner-name::before {
  content: '\2726';
  color: var(--gold);
  margin-right: 12px;
  font-size: 0.7em;
}

.dd-partner-name:hover {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   Contact
   ========================================================= */
.dd-contact {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.dd-contact .dd-title { margin-bottom: 24px; text-align: left; }

.dd-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

.dd-contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));
  transition: all 0.4s var(--ease-out);
}

a.dd-contact-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  background: rgba(212, 175, 55, 0.06);
  transform: translateX(8px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45), 0 0 30px rgba(212, 175, 55, 0.06);
}

.dd-contact-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  transition: all 0.4s var(--ease-out);
}

a.dd-contact-card:hover .dd-contact-icon {
  background: linear-gradient(120deg, var(--gold-hover), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 0 26px rgba(212, 175, 55, 0.4);
}

.dd-contact-icon svg { width: 21px; height: 21px; }

.dd-contact-card small {
  display: block;
  font-family: var(--font-head);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3px;
}

.dd-contact-card strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.dd-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
  transition: color 0.3s, transform 0.3s;
}

a.dd-contact-card:hover .dd-arrow { color: var(--gold); transform: translate(4px, -4px); }

/* Form card */
.dd-form-card {
  background: linear-gradient(170deg, rgba(13, 13, 13, 0.95), rgba(8, 8, 8, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}

.dd-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.dd-form-title {
  font-size: 1.5rem;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dd-form-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212,175,55,0.4), transparent);
}

.dd-form-title em { font-size: 1.1em; }

.dd-form-card .form-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.65);
}

.dd-form-card .form-control,
.dd-form-card .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: #fff;
  padding: 13px 16px;
  font-size: 0.92rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.dd-form-card .form-control::placeholder { color: rgba(255, 255, 255, 0.28); }

.dd-form-card .form-control:focus,
.dd-form-card .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.22rem rgba(212, 175, 55, 0.16), 0 0 24px rgba(212, 175, 55, 0.08);
  color: #fff;
}

.dd-form-card .form-select { color: rgba(255, 255, 255, 0.7); }

.dd-form-card .form-select option { background: #111; color: #fff; }

.dd-form-card .form-control.is-invalid,
.dd-form-card .form-select.is-invalid { border-color: #e74c3c; box-shadow: 0 0 0 0.22rem rgba(231, 76, 60, 0.14); }

.dd-form-card .form-control.is-valid { border-color: #2ecc71; }

/* Success / error states */
.dd-form-success {
  text-align: center;
  padding: 46px 10px;
}

.dd-success-emoji {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 14px;
  animation: successPop 0.6s var(--ease-out);
}

@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.dd-form-success .dd-svc-tag { display: block; margin-bottom: 12px; }

.dd-form-success h3 {
  font-size: 1.7rem;
  margin: 0 0 14px;
}

.dd-form-success p {
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  max-width: 430px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.dd-form-error {
  margin-top: 22px;
  padding: 15px 18px;
  border: 1px solid rgba(231, 76, 60, 0.5);
  border-radius: 6px;
  color: #e8a19b;
  background: rgba(231, 76, 60, 0.08);
  font-size: 0.92rem;
  animation: errorShake 0.4s;
}

@keyframes errorShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* =========================================================
   Footer
   ========================================================= */
.dd-footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 90px 0 34px;
  position: relative;
  overflow: hidden;
}

.dd-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.dd-footer .dd-logo { margin-bottom: 22px; }

.dd-footer-tag {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 8px;
}

.dd-footer-tag em { font-size: 1.15em; }

.dd-footer-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.dd-footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin: 0 0 22px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.dd-footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.dd-footer-links,
.dd-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dd-footer-links li { margin-bottom: 13px; }

.dd-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  position: relative;
  padding-left: 0;
  transition: color 0.3s, padding-left 0.3s;
}

.dd-footer-links a::before {
  content: '\203A';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, left 0.3s;
}

.dd-footer-links a:hover { color: var(--gold-light); padding-left: 16px; }
.dd-footer-links a:hover::before { opacity: 1; left: 2px; }

.dd-footer-contact li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.dd-fc-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.dd-fc-icon svg { width: 16px; height: 16px; }

.dd-social { display: flex; gap: 12px; }

.dd-social a {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.4s var(--ease-out);
}

.dd-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
}

.dd-footer-bottom {
  margin-top: 64px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.dd-footer-sep { color: rgba(255, 255, 255, 0.2); }

.dd-gold-link { color: var(--gold); transition: color 0.3s, text-shadow 0.3s; }
.dd-gold-link:hover { color: var(--gold-light); text-shadow: 0 0 14px var(--gold-glow); }

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.dd-whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 1500;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #2ee06f, var(--whatsapp));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45);
  animation: waBounce 2.8s ease-in-out infinite;
  transition: transform 0.35s var(--ease-out);
}

.dd-whatsapp-float:hover { transform: scale(1.12) rotate(8deg); }

.dd-whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waRing 2.4s ease-out infinite;
}

@keyframes waRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.dd-whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* =========================================================
   Back to top
   ========================================================= */
.dd-totop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1500;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dd-totop.show { opacity: 1; visibility: visible; transform: translateY(0); }

.dd-totop svg { width: 20px; height: 20px; }

.dd-totop:hover {
  background: linear-gradient(120deg, var(--gold-hover), var(--gold));
  color: #0a0a0a;
  box-shadow: 0 0 30px var(--gold-glow);
  transform: translateY(-4px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1199.98px) {
  .side-left, .side-right { display: none; }
}

@media (max-width: 991.98px) {
  .dd-menu, .dd-nav-actions .dd-btn { display: none; }
  .dd-hamburger { display: flex; }
  .dd-section { padding: 90px 0; }
  .dd-about-media img { height: 420px; }
  .dd-about-card { right: 8px; bottom: -18px; }
  .dd-modal-img { min-height: 220px; }
  .dd-gallery-item { width: 210px; height: 160px; }
  .dd-why-stat:not(:last-child)::after { display: none; }
  .dd-scroll-hint { display: none; }
}

@media (max-width: 575.98px) {
  .dd-nav { padding: 10px 18px; }
  .dd-logo-text { font-size: 1rem; }
  .dd-hero-cta { flex-direction: column; align-items: center; }
  .dd-btn-lg { width: 100%; }
  .dd-stats { gap: 26px; }
  .dd-why-stats { gap: 40px; }
  .dd-about-card { position: static; margin-top: 18px; max-width: 100%; }
  .dd-form-card { padding: 28px 20px; }
  .dd-lightbox-prev { left: 10px; }
  .dd-lightbox-next { right: 10px; }
  .dd-totop { right: 20px; bottom: 92px; width: 44px; height: 44px; }
  .dd-hero-inner { padding: 120px 20px 100px; }
}

/* =========================================================
   PREMIUM REFINEMENTS
   ========================================================= */
:root {
  --font-script: 'Great Vibes', cursive;
  --champagne: #f4e4b8;
  --rose-gold: #d9a25f;
  --line-gold: rgba(212, 175, 55, 0.35);
}

.dd-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
}

/* ---------- Navbar logo ---------- */
.dd-logo-text {
  font-weight: 600;
  letter-spacing: 0.12em;
}
.dd-logo-text em { position: relative; }
.dd-logo-text em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Hero ---------- */
.dd-hero-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--champagne);
  margin-bottom: 16px;
  opacity: 0;
  animation: heroScriptIn 1.2s var(--ease-out) 0.25s forwards;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.35);
}

@keyframes heroScriptIn {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.dd-badge {
  padding: 10px 24px;
  font-weight: 500;
  letter-spacing: 0.3em;
  background: rgba(212, 175, 55, 0.1);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.2), 0 0 30px rgba(212, 175, 55, 0.08);
}

.dd-hero-title .dd-script {
  font-size: 1.25em;
  line-height: 1;
  letter-spacing: 0.01em;
  vertical-align: middle;
}

.dd-hero-title .gold-italic {
  font-size: 1.15em;
  font-weight: 500;
}

/* ---------- Section head ---------- */
.dd-section-head .dd-title {
  letter-spacing: 0.02em;
}

.dd-section-head .dd-title .dd-script {
  font-size: 1.35em;
  letter-spacing: 0.01em;
  margin: 0 0.06em;
  vertical-align: baseline;
}

.dd-section-head .dd-title::after {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 30%, var(--gold) 50%, var(--line-gold) 70%, transparent);
}

.dd-section-head .dd-title::before {
  content: '\2740';
  font-size: 1rem;
  bottom: -11px;
  color: var(--gold);
  text-shadow: 0 0 18px var(--gold-glow);
  letter-spacing: 0;
}

.dd-eyebrow {
  font-weight: 600;
  color: var(--gold-light);
}

/* ---------- Buttons ---------- */
.dd-btn {
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.dd-btn-gold {
  background: linear-gradient(115deg, #f2dc9a 0%, var(--gold) 45%, #b8912e 100%);
  background-size: 180% auto;
  animation: btnGoldFlow 6s linear infinite;
}

@keyframes btnGoldFlow {
  to { background-position: 180% center; }
}

.dd-btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ---------- Stat numbers ---------- */
.dd-stat-num {
  background: linear-gradient(120deg, #f7e7c6, var(--gold) 50%, #b8912e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* ---------- Service cards ---------- */
.dd-svc-card {
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dd-svc-card::before {
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.16), transparent 45%);
}

.dd-svc-num {
  font-size: 2rem;
  font-weight: 500;
}

.dd-svc-card .dd-svc-tag {
  letter-spacing: 0.3em;
  font-weight: 500;
}

.dd-svc-title {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dd-svc-title::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 12px;
  transition: width 0.45s var(--ease-out);
}

.dd-svc-card:hover .dd-svc-title::after { width: 70px; }

/* ---------- Gallery captions ---------- */
.dd-gallery-item figcaption {
  letter-spacing: 0.03em;
}

.dd-gallery-item::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0);
  border-radius: calc(var(--radius) - 4px);
  transition: border-color 0.4s;
  pointer-events: none;
}

.dd-gallery-item:hover::after { border-color: rgba(212, 175, 55, 0.35); }

/* ---------- Why pillars ---------- */
.dd-pillar {
  border-radius: var(--radius);
  background: linear-gradient(175deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.005) 55%, transparent 100%);
}

.dd-pillar h3 {
  font-weight: 600;
  letter-spacing: 0.2em;
}

/* ---------- Partner names ---------- */
.dd-partner-name {
  font-weight: 500;
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
}

/* ---------- Contact ---------- */
.dd-contact-card {
  border-radius: var(--radius);
}

.dd-contact-card strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dd-form-card {
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255,255,255,0.05);
}

.dd-form-title .dd-script {
  font-size: 1.5em;
}

/* ---------- Footer ---------- */
.dd-footer-tag {
  font-family: var(--font-serif);
}

.dd-footer-tag .dd-script {
  font-size: 1.7em;
  line-height: 0.9;
  vertical-align: middle;
  color: var(--gold-light);
  text-shadow: 0 0 22px var(--gold-glow);
}

.dd-footer-bottom { letter-spacing: 0.04em; }

/* ---------- Divider strip ---------- */
.dd-divider-strip { background: linear-gradient(180deg, var(--bg), #0a0703 50%, var(--bg)); }

.dd-divider-item { font-weight: 500; }

/* ---------- Section subtle gradient seams ---------- */
.dd-about { background: linear-gradient(180deg, var(--bg) 0%, #070605 50%, var(--bg-soft) 100%); }
.dd-services { background: linear-gradient(180deg, var(--bg-soft) 0%, #0a0a0a 100%); }
.dd-why { background: linear-gradient(180deg, var(--bg-soft) 0%, #070605 50%, var(--bg-soft) 100%); }
.dd-contact { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }

/* ---------- Preloader script ---------- */
.dd-preloader-script {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--champagne);
  margin-bottom: 6px;
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.4);
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

.dd-preloader-text {
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: var(--muted);
}

.dd-preloader-bar {
  height: 3px;
  width: 220px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}

.dd-preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 99px;
  background: linear-gradient(90deg, #f2dc9a, var(--gold), #b8912e);
  animation: preloaderSlide 1.1s var(--ease-out) infinite;
}

@keyframes preloaderSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(420%); }
}

/* ---------- Custom cursor gold ---------- */
.dd-cursor {
  border-color: rgba(212, 175, 55, 0.55) !important;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25) inset, 0 0 12px rgba(212, 175, 55, 0.2);
}

.dd-cursor-dot {
  background: var(--gold) !important;
}

/* ---------- Nav link hover sweep (applied to .dd-menu-link in Header v2) ---------- */


/* ---------- Form inputs ---------- */
.dd-form input,
.dd-form textarea,
.dd-form select {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.dd-form input:focus,
.dd-form textarea:focus,
.dd-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 8px 30px rgba(212, 175, 55, 0.08);
}

.dd-form input::-moz-placeholder,
.dd-form textarea::-moz-placeholder { color: rgba(255, 255, 255, 0.3); }
.dd-form input::placeholder,
.dd-form textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

/* ---------- Scroll progress gold ---------- */
.dd-progress {
  background: linear-gradient(90deg, #f2dc9a, var(--gold), #b8912e) !important;
}

/* ---------- Testimonial quotes ---------- */
.dd-testi { position: relative; }

.dd-testi::before {
  content: '\201C';
  position: absolute;
  top: -18px; left: 22px;
  font-family: var(--font-script);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
}

.dd-testi .dd-testi-quote {
  font-family: var(--font-serif);
  font-style: italic;
  line-height: 1.7;
}

/* ---------- About image frame ---------- */
.dd-about-media { position: relative; }

.dd-about-media::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--line-gold);
  border-radius: calc(var(--radius) + 8px);
  opacity: 0.45;
  pointer-events: none;
}

/* ---------- Text selection ---------- */
::selection {
  background: var(--gold);
  color: #0a0a0a;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .dd-hero-script,
  .dd-preloader-script,
  .dd-preloader-bar span { animation: none; }
}

/* =========================================================
   AURUM & EMBER - SIGNATURE ORNAMENTS
   ========================================================= */

/* Section title centre ornament = script ampersand (brand motif) */
.dd-section-head .dd-title::before {
  content: '\0026';
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
  bottom: -15px;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
  opacity: 0.95;
}

.dd-section-head .dd-title::after {
  background: linear-gradient(90deg, transparent, var(--line-gold) 25%, var(--emerald) 50%, var(--line-gold) 75%, transparent);
  opacity: 0.9;
}

/* Giant script ampersand watermark behind about + contact */
.dd-about, .dd-contact { position: relative; overflow: hidden; }

.dd-amp-watermark {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-script);
  font-size: clamp(16rem, 40vw, 30rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 178, 106, 0.14);
  text-shadow: 0 0 80px rgba(216, 178, 106, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.dd-about .container, .dd-contact .container { position: relative; z-index: 1; }

/* Emerald accent on pillar icons */
.dd-pillar-icon {
  transition: box-shadow 0.35s, border-color 0.35s;
}

.dd-pillar:hover .dd-pillar-icon {
  border-color: var(--emerald);
  box-shadow: 0 0 24px var(--emerald-glow);
}

.dd-pillar:hover .dd-pillar-icon svg { color: var(--emerald-bright); }

/* Emerald glint on service card hover */
.dd-svc-card:hover {
  border-color: rgba(63, 181, 127, 0.35);
}

.dd-svc-card:hover .dd-svc-title::after {
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}

/* Badge ring emerald glint */
.dd-badge {
  box-shadow: inset 0 0 0 1px rgba(216, 178, 106, 0.22), 0 0 30px rgba(216, 178, 106, 0.08);
}

.dd-badge::after {
  content: '\0026';
  font-family: var(--font-script);
  font-size: 1.2em;
  margin-left: 10px;
  color: var(--emerald-bright);
  vertical-align: middle;
  opacity: 0.85;
}

/* Hero marquee items - light champagne */
.dd-divider-item {
  color: rgba(242, 226, 194, 0.85);
  letter-spacing: 0.12em;
}

/* Nav active state emerald underline */
.dd-menu-link.active::after { background: linear-gradient(90deg, var(--emerald-bright), var(--gold)); }

/* =========================================================
   BOLD TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5 { font-weight: 600; }
p { font-weight: 400; }

.dd-hero-title { font-weight: 600; }
.dd-title { font-weight: 600; }
.dd-eyebrow { font-weight: 600; }
.dd-btn { font-weight: 600; }
.dd-form-title { font-weight: 600; }
.dd-footer-heading { font-weight: 600; }
.dd-mobile-menu a { font-weight: 600; }
.dd-lead { font-weight: 500; }
.gold-italic { font-weight: 600; }
.dd-hero-sub { font-weight: 400; }
.dd-svc-desc { font-weight: 400; }
.dd-hero-script,
.dd-script,
.dd-preloader-script,
.dd-footer-tag .dd-script { font-weight: 400; }
.dd-badge { font-weight: 600; letter-spacing: 0.3em; }
.dd-hero-side { font-weight: 500; }
.dd-svc-more { font-weight: 600; }

/* =========================================================
   HEADER - FLOATING GLASS PILL (NO NUMBERS)
   ========================================================= */
.dd-navbar {
  flex-direction: column;
  gap: 10px;
  padding: 12px 24px;
}

.dd-navbar.scrolled { padding: 10px 24px; }

/* Topbar */
.dd-topbar {
  width: min(1180px, 100%);
  max-height: 70px;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s ease, transform 0.45s var(--ease-out);
}

.dd-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 26px;
  border: 1px solid rgba(216, 178, 106, 0.18);
  border-radius: 60px;
  background: rgba(10, 8, 6, 0.4);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.dd-navbar.scrolled .dd-topbar {
  max-height: 0;
  opacity: 0;
  transform: translateY(-16px);
}

.dd-topbar-inner a { color: var(--gold-light); display: inline-flex; align-items: center; gap: 7px; }
.dd-topbar-inner a:hover { color: var(--champagne); }
.dd-topbar-link svg { width: 13px; height: 13px; color: var(--gold); }
.dd-topbar-sep { width: 1px; height: 12px; background: rgba(216, 178, 106, 0.32); display: inline-block; }
.dd-topbar-tag { color: var(--muted); display: inline-flex; align-items: center; }
.dd-topbar-tag .dd-script {
  font-size: 1.15rem;
  line-height: 1;
  color: var(--emerald-bright);
  margin-right: 6px;
  text-shadow: 0 0 14px var(--emerald-glow);
}

/* Glass pill nav */
.dd-nav {
  background: rgba(10, 8, 6, 0.45);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-color: rgba(216, 178, 106, 0.16);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dd-navbar.scrolled .dd-nav {
  background: rgba(8, 6, 4, 0.88);
  border-color: rgba(216, 178, 106, 0.28);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(216, 178, 106, 0.14);
}

/* Menu links - clean luxury style (no numbers) */
.dd-menu {
  gap: 32px;
}

.dd-menu-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(251, 247, 238, 0.85);
}

.dd-menu-link::after {
  background: linear-gradient(90deg, var(--gold), var(--emerald-bright));
  height: 2px;
  border-radius: 99px;
  box-shadow: 0 0 10px var(--gold-glow);
}

.dd-menu-link:hover,
.dd-menu-link.active { color: var(--champagne); }

.dd-nav-actions .dd-btn { font-weight: 600; }

/* Mobile */
@media (max-width: 991px) {
  .dd-topbar { display: none; }
  .dd-navbar { padding: 12px 16px; }
  .dd-navbar.scrolled { padding: 8px 16px; }
  .dd-nav { padding: 10px 18px; }
}

/* =========================================================
   SERVICES - PREMIUM IMAGE CARDS
   ========================================================= */
.dd-services .dd-amp-watermark { opacity: 0.7; }
.dd-services .container.position-relative { z-index: 1; }

.dd-svc-card {
  min-height: 470px;
  padding: 0;
  background: #0d0b08;
  border: 1px solid rgba(216, 178, 106, 0.16);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
}

.dd-svc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(0.85) brightness(0.62);
  transition: transform 0.9s var(--ease-out), filter 0.6s ease;
}

.dd-svc-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0.05) 42%, rgba(10, 8, 6, 0.94) 84%, #0d0b08 100%);
  transition: background 0.5s ease;
}

.dd-svc-card:hover .dd-svc-bg {
  transform: scale(1.16);
  filter: saturate(1.1) brightness(0.55);
}

.dd-svc-card::before {
  background: radial-gradient(620px circle at var(--mx, 50%) var(--my, 50%), rgba(216, 178, 106, 0.22), transparent 46%);
  z-index: 2;
}

.dd-svc-card::after {
  background: linear-gradient(140deg, rgba(216,178,106,0.9), rgba(216,178,106,0) 40%, rgba(46,139,87,0) 60%, rgba(63,181,127,0.7));
}

/* House signature ribbon */
.dd-svc-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(120deg, #eecfa0, var(--gold) 60%, #a8813f);
  padding: 7px 16px;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

/* Calligraphy number */
.dd-svc-num {
  position: absolute;
  top: 16px;
  left: 24px;
  z-index: 3;
  font-family: var(--font-script);
  font-size: 2.7rem;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.95;
  text-shadow: 0 0 24px rgba(216, 178, 106, 0.4);
  transition: color 0.4s, text-shadow 0.4s;
}

.dd-svc-card:hover .dd-svc-num {
  color: var(--emerald-bright);
  text-shadow: 0 0 26px var(--emerald-glow);
}

/* Icon medallion */
.dd-svc-icon {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 3;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 178, 106, 0.5);
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--gold);
  box-shadow: inset 0 0 18px rgba(216, 178, 106, 0.1);
  transition: all 0.5s var(--ease-out);
}

.dd-svc-card:hover .dd-svc-icon {
  background: linear-gradient(120deg, #eecfa0, var(--gold) 60%, #a8813f);
  color: #0a0a0a;
  border-color: transparent;
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 0 0 8px rgba(216, 178, 106, 0.12), 0 0 30px rgba(216, 178, 106, 0.4);
}

/* Content */
.dd-svc-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
}

.dd-svc-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.dd-svc-tag::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.dd-svc-title {
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 12px;
}

.dd-svc-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 14px;
  transition: width 0.45s var(--ease-out);
}

.dd-svc-card:hover .dd-svc-title::after { width: 78px; }

.dd-svc-desc {
  color: rgba(242, 226, 194, 0.78);
  font-size: 0.95rem;
}

.dd-svc-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 226, 194, 0.55);
  transition: color 0.35s;
}

.dd-svc-more i { font-style: normal; transition: transform 0.35s var(--ease-out); }

.dd-svc-card:hover .dd-svc-more { color: var(--gold-light); }
.dd-svc-card:hover .dd-svc-more i { transform: translateX(7px); }

/* Corner accents */
.dd-svc-corners { position: absolute; inset: 0; z-index: 4; pointer-events: none; }

.dd-svc-corners::before,
.dd-svc-corners::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: rgba(216, 178, 106, 0.85);
  opacity: 0;
  transition: opacity 0.5s;
}

.dd-svc-corners::before {
  top: 14px; left: 14px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}

.dd-svc-corners::after {
  bottom: 14px; right: 14px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

.dd-svc-card:hover .dd-svc-corners::before,
.dd-svc-card:hover .dd-svc-corners::after { opacity: 1; }

/* Bottom concierge CTA */
.dd-services-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 56px;
  padding: 26px 32px;
  border: 1px solid rgba(216, 178, 106, 0.18);
  border-radius: 60px;
  background: linear-gradient(120deg, rgba(216,178,106,0.06), rgba(46,139,87,0.05));
  text-align: center;
}

.dd-services-cta .dd-script {
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald-bright);
  text-shadow: 0 0 20px var(--emerald-glow);
}

.dd-services-cta p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

@media (max-width: 767px) {
  .dd-svc-card { min-height: 420px; }
  .dd-services-cta { flex-direction: column; border-radius: 24px; }
}

/* =========================================================
   GALLERY - MODERN PREMIUM HOVER
   ========================================================= */
.dd-gallery-item {
  width: 300px;
  height: 220px;
  border-radius: 16px;
  border-color: rgba(216, 178, 106, 0.14);
  transform: perspective(700px) rotateY(0) rotateX(0);
  will-change: transform;
}

.dd-gallery-item img {
  transform: scale(1.06);
  filter: saturate(0.7) brightness(0.85) contrast(1.06);
  transition: transform 0.9s var(--ease-out), filter 0.6s ease;
}

.dd-gallery-item:hover {
  border-color: rgba(216, 178, 106, 0.7);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(216, 178, 106, 0.2),
    inset 0 0 0 1px rgba(216, 178, 106, 0.2);
}

.dd-gallery-item:hover img {
  transform: scale(1.18);
  filter: saturate(1.05) brightness(0.95) contrast(1.05);
}

/* dark mood shade rising from bottom */
.dd-gallery-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, rgba(10, 8, 6, 0) 34%, rgba(10, 8, 6, 0.55) 62%, rgba(10, 8, 6, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.dd-gallery-item:hover .dd-gallery-shade { opacity: 1; }

/* cursor-follow champagne glow */
.dd-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(216, 178, 106, 0.3), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.dd-gallery-item:hover::before { opacity: 1; }

/* diagonal shine sweep */
.dd-gallery-shine {
  position: absolute;
  top: -45%;
  left: -90%;
  z-index: 2;
  width: 55%;
  height: 190%;
  background: linear-gradient(90deg, transparent, rgba(255, 236, 200, 0.28), transparent);
  transform: rotate(24deg) translateX(-130%);
  transition: transform 0.95s var(--ease-out);
  pointer-events: none;
}

.dd-gallery-item:hover .dd-gallery-shine { transform: rotate(24deg) translateX(420%); }

/* calligraphy index (top-left) */
.dd-gallery-idx {
  position: absolute;
  top: 14px;
  left: 18px;
  z-index: 3;
  font-family: var(--font-script);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--champagne);
  text-shadow: 0 0 22px rgba(216, 178, 106, 0.5);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.45s, transform 0.45s var(--ease-out), color 0.3s;
  pointer-events: none;
}

.dd-gallery-item:hover .dd-gallery-idx {
  opacity: 1;
  transform: translateX(0);
  color: var(--emerald-bright);
}

/* zoom medallion (top-right) */
.dd-gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  background: linear-gradient(120deg, #eecfa0, var(--gold) 60%, #a8813f);
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5), 0 0 22px rgba(216, 178, 106, 0.45);
  opacity: 0;
  transform: scale(0.5) rotate(-60deg);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
  pointer-events: none;
}

.dd-gallery-zoom svg { width: 20px; height: 20px; }

.dd-gallery-item:hover .dd-gallery-zoom {
  opacity: 1;
  transform: scale(1) rotate(0);
}

/* glass caption panel sliding up */
.dd-gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 13px 18px 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.03em;
  background: linear-gradient(0deg, rgba(9, 7, 5, 0.94), rgba(9, 7, 5, 0.6) 72%, transparent);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transform: translateY(60%);
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease;
  pointer-events: none;
}

.dd-gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.dd-gallery-line {
  width: 30px;
  height: 2px;
  margin-bottom: 9px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.dd-gallery-cap {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gold-light);
  line-height: 1.3;
}

.dd-gallery-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 226, 194, 0.6);
}

.dd-gallery-more i { font-style: normal; transition: transform 0.35s var(--ease-out); }

.dd-gallery-item:hover .dd-gallery-more { color: var(--gold-light); }
.dd-gallery-item:hover .dd-gallery-more i { transform: translateX(6px); }

/* inner gold frame reveal */
.dd-gallery-item::after {
  content: '';
  position: absolute;
  inset: 9px;
  z-index: 4;
  border: 1.5px solid rgba(216, 178, 106, 0);
  border-radius: calc(var(--radius) - 2px);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out), border-color 0.3s;
  pointer-events: none;
}

.dd-gallery-item:hover::after {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(216, 178, 106, 0.65);
}

/* keyboard focus */
.dd-gallery-item:focus-visible {
  outline: 2px solid var(--emerald-bright);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .dd-gallery-zoom { display: none; }
  .dd-gallery-idx { font-size: 1.5rem; }
}

/* =========================================================
   MENU - COCKTAILS
   ========================================================= */
.dd-menu .dd-amp-watermark { opacity: 0.6; }

.dd-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.dd-menu-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(216, 178, 106, 0.14);
  background: #0d0b08;
  cursor: default;
  transition: transform 0.45s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.dd-menu-card:hover {
  border-color: rgba(216, 178, 106, 0.55);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(216, 178, 106, 0.12);
  transform: translateY(-4px);
}

.dd-menu-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(0.8) brightness(0.55);
  transition: transform 0.8s var(--ease-out), filter 0.6s;
  z-index: 0;
}

.dd-menu-card:hover .dd-menu-img {
  transform: scale(1.12);
  filter: saturate(1) brightness(0.5);
}

.dd-menu-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.3) 0%, rgba(10, 8, 6, 0.05) 45%, rgba(10, 8, 6, 0.92) 82%, #0d0b08 100%);
}

.dd-menu-content {
  position: relative;
  z-index: 2;
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.dd-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.dd-menu-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
  margin: 0;
}

.dd-menu-price {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--champagne);
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(216, 178, 106, 0.35);
}

.dd-menu-desc {
  font-size: 0.88rem;
  color: rgba(242, 226, 194, 0.72);
  line-height: 1.55;
  margin: 0;
}

.dd-menu-corners {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.dd-menu-corners::before,
.dd-menu-corners::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(216, 178, 106, 0);
  transition: border-color 0.4s;
}

.dd-menu-corners::before {
  top: 10px; left: 10px;
  border-top: 1.5px solid;
  border-left: 1.5px solid;
}

.dd-menu-corners::after {
  bottom: 10px; right: 10px;
  border-bottom: 1.5px solid;
  border-right: 1.5px solid;
}

.dd-menu-card:hover .dd-menu-corners::before,
.dd-menu-card:hover .dd-menu-corners::after {
  border-color: rgba(216, 178, 106, 0.55);
}

.dd-menu-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
  padding: 24px 32px;
  border: 1px solid rgba(216, 178, 106, 0.18);
  border-radius: 60px;
  background: linear-gradient(120deg, rgba(216, 178, 106, 0.05), rgba(46, 139, 87, 0.04));
  text-align: center;
}

.dd-menu-cta .dd-script {
  font-size: 2rem;
  line-height: 1;
  color: var(--emerald-bright);
  text-shadow: 0 0 20px var(--emerald-glow);
}

.dd-menu-cta p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

@media (max-width: 767px) {
  .dd-menu-grid { grid-template-columns: 1fr; }
  .dd-menu-cta { flex-direction: column; border-radius: 24px; }
}

/* =========================================================
   PROCESS - 4 STEP WORKFLOW
   ========================================================= */
.dd-process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 44px;
  position: relative;
}

.dd-process-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 28px 0;
  position: relative;
}

.dd-process-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--champagne);
  border: 1px solid rgba(216, 178, 106, 0.3);
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.6);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.dd-process-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(216, 178, 106, 0.25);
  border-radius: 50%;
  background: rgba(10, 8, 6, 0.4);
  font-size: 1.1rem;
}

.dd-process-body {
  flex: 1;
  padding-top: 6px;
}

.dd-process-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 6px;
}

.dd-process-desc {
  font-size: 0.9rem;
  color: rgba(242, 226, 194, 0.7);
  line-height: 1.6;
  margin: 0;
}

.dd-process-line {
  position: absolute;
  left: 51px;
  top: 70px;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(216, 178, 106, 0.35), rgba(216, 178, 106, 0.05));
}

@media (max-width: 767px) {
  .dd-process-step { gap: 14px; }
  .dd-process-num { width: 40px; height: 40px; font-size: 1.4rem; }
  .dd-process-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .dd-process-line { left: 29px; }
}

/* =========================================================
   FAQ - ACCORDION
   ========================================================= */
.dd-faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dd-faq-item {
  border: 1px solid rgba(216, 178, 106, 0.14);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}

.dd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s, background 0.3s;
}

.dd-faq-q:hover {
  background: rgba(216, 178, 106, 0.04);
}

.dd-faq-q[aria-expanded="true"] {
  color: var(--gold-light);
}

.dd-faq-q-text {
  flex: 1;
}

.dd-faq-q-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.35s var(--ease-out);
}

.dd-faq-q[aria-expanded="true"] .dd-faq-q-icon {
  transform: rotate(45deg);
  color: var(--emerald-bright);
}

.dd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s;
  padding: 0 22px;
}

.dd-faq-item.open .dd-faq-a {
  max-height: 300px;
  padding: 0 22px 18px;
}

.dd-faq-a p {
  font-size: 0.9rem;
  color: rgba(242, 226, 194, 0.78);
  line-height: 1.65;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 178, 106, 0.1);
}
