/* ============================================
   DELUVIX LAB - MAIN STYLESHEET
   Prefix: dd-
   ============================================ */


:root {
  --dd-clay: #C4622D;
  --dd-clay-dark: #A04E22;
  --dd-clay-light: #E8855A;
  --dd-ember: #E8A24A;
  --dd-soil: #2C1A0E;
  --dd-soil-mid: #4A2E18;
  --dd-stone: #F5EDE4;
  --dd-stone-mid: #EAD9C8;
  --dd-stone-dark: #D4BFA8;
  --dd-white: #FDF8F4;
  --dd-text: #1E120A;
  --dd-text-mid: #5C3D25;
  --dd-text-light: #F5EDE4;
  --dd-iso-1: #C4622D;
  --dd-iso-2: #A04E22;
  --dd-iso-3: #E8A24A;
  --dd-shadow-sm: 0 2px 8px rgba(44,26,14,0.08), 0 1px 3px rgba(44,26,14,0.05);
  --dd-shadow-md: 0 8px 24px rgba(44,26,14,0.12), 0 3px 8px rgba(44,26,14,0.07);
  --dd-shadow-lg: 0 20px 48px rgba(44,26,14,0.16), 0 8px 16px rgba(44,26,14,0.08);
  --dd-shadow-xl: 0 32px 64px rgba(44,26,14,0.2), 0 12px 24px rgba(44,26,14,0.1);
  --dd-radius-sm: 6px;
  --dd-radius-md: 12px;
  --dd-radius-lg: 20px;
  --dd-radius-xl: 32px;
  --dd-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --dd-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html { scroll-behavior: smooth; font-size: 16px; }

body.dd-body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--dd-white);
  color: var(--dd-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  color: var(--dd-text);
}

.dd-section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.dd-heading-light { color: var(--dd-text-light); }

.dd-subsection-heading {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.dd-body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dd-text-mid);
  margin-bottom: 1rem;
}

.dd-text-light { color: rgba(245,237,228,0.85); }

.dd-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dd-clay);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--dd-clay);
  border-radius: 100px;
}

.dd-label-light {
  color: var(--dd-ember);
  border-color: var(--dd-ember);
}

.dd-max-60 { max-width: 60ch; margin-left: auto; margin-right: auto; }


.dd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.dd-section {
  padding: 6rem 0;
}

.dd-section-light { background-color: var(--dd-stone); }
.dd-section-white { background-color: var(--dd-white); }
.dd-section-dark { background-color: var(--dd-soil); }
.dd-section-accent { background-color: var(--dd-clay); }

.dd-center { text-align: center; }
.dd-section-header { margin-bottom: 3.5rem; }

.dd-mt-sm { margin-top: 0.75rem; }
.dd-mt-md { display: inline-block; margin-top: 1.5rem; }
.dd-full-width { width: 100%; text-align: center; display: block; }


.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--dd-radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--dd-transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  white-space: nowrap;
}

.dd-btn-primary {
  background: var(--dd-clay);
  color: #fff;
  border-color: var(--dd-clay);
  box-shadow: var(--dd-shadow-sm);
}
.dd-btn-primary:hover {
  background: var(--dd-clay-dark);
  border-color: var(--dd-clay-dark);
  box-shadow: var(--dd-shadow-md);
  transform: translateY(-1px);
}

.dd-btn-outline {
  background: transparent;
  color: var(--dd-clay);
  border-color: var(--dd-clay);
}
.dd-btn-outline:hover {
  background: var(--dd-clay);
  color: #fff;
  transform: translateY(-1px);
}

.dd-btn-ghost {
  background: transparent;
  color: var(--dd-text);
  border-color: rgba(44,26,14,0.2);
}
.dd-btn-ghost:hover {
  background: rgba(44,26,14,0.06);
  border-color: rgba(44,26,14,0.35);
  transform: translateY(-1px);
}

.dd-btn-white {
  background: #fff;
  color: var(--dd-clay);
  border-color: #fff;
  box-shadow: var(--dd-shadow-sm);
}
.dd-btn-white:hover {
  background: var(--dd-stone);
  transform: translateY(-1px);
  box-shadow: var(--dd-shadow-md);
}

.dd-btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.dd-btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

.dd-btn-submit {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  justify-content: center;
}


.dd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(253,248,244,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dd-stone-dark);
  transition: all var(--dd-transition);
}

.dd-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.dd-header.dd-header-hidden {
  transform: translateY(-100%);
}


.dd-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.dd-logo-img {
  width: 36px;
  height: 36px;
}

.dd-logo-img-sm { width: 28px; height: 28px; }

.dd-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dd-text);
  letter-spacing: -0.01em;
}

.dd-logo-text-sm { font-size: 0.9rem; }


.dd-nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .dd-nav-links { display: flex; }
}

.dd-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dd-text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--dd-radius-sm);
  transition: all var(--dd-transition);
  position: relative;
}

.dd-nav-link:hover {
  color: var(--dd-clay);
  background: rgba(196,98,45,0.07);
}

.dd-nav-link.dd-active {
  color: var(--dd-clay);
  font-weight: 600;
}

.dd-header-cta {
  display: none;
  margin-left: 1rem;
}

@media (min-width: 900px) {
  .dd-header-cta { display: inline-flex; }
}


.dd-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--dd-radius-sm);
  transition: background var(--dd-transition);
  margin-left: auto;
}

@media (min-width: 900px) {
  .dd-hamburger { display: none; }
}

.dd-hamburger span {
  display: block;
  height: 2px;
  background: var(--dd-text);
  border-radius: 2px;
  transition: all var(--dd-transition);
}

.dd-hamburger:hover { background: rgba(44,26,14,0.07); }


.dd-mini-nav {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 890;
  opacity: 0;
  pointer-events: none;
  transition: all var(--dd-transition);
}

.dd-mini-nav.dd-mini-visible {
  opacity: 1;
  pointer-events: all;
}

.dd-mini-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--dd-clay);
  color: #fff;
  border-radius: 100px;
  font-size: 1rem;
  box-shadow: var(--dd-shadow-md), 0 0 0 3px rgba(196,98,45,0.15);
  transition: all var(--dd-transition);
}

.dd-mini-btn:hover {
  background: var(--dd-clay-dark);
  transform: scale(1.05);
  box-shadow: var(--dd-shadow-lg);
}


.dd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,18,10,0.55);
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dd-transition-slow);
  backdrop-filter: blur(3px);
}

.dd-overlay.dd-open {
  opacity: 1;
  pointer-events: all;
}

.dd-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--dd-white);
  z-index: 960;
  transform: translateX(100%);
  transition: transform var(--dd-transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(44,26,14,0.2);
  border-left: 1px solid var(--dd-stone-dark);
}

.dd-drawer.dd-open {
  transform: translateX(0);
}

.dd-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--dd-stone-dark);
}

.dd-drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--dd-radius-sm);
  color: var(--dd-text-mid);
  font-size: 1.1rem;
  transition: all var(--dd-transition);
}

.dd-drawer-close:hover {
  background: var(--dd-stone);
  color: var(--dd-clay);
}

.dd-drawer-nav {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.dd-drawer-link {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dd-text-mid);
  border-radius: var(--dd-radius-sm);
  border-left: 3px solid transparent;
  transition: all var(--dd-transition);
}

.dd-drawer-link:hover {
  background: var(--dd-stone);
  color: var(--dd-clay);
  border-left-color: var(--dd-clay);
  padding-left: 1.25rem;
}

.dd-drawer-link.dd-active {
  color: var(--dd-clay);
  background: rgba(196,98,45,0.07);
  border-left-color: var(--dd-clay);
  font-weight: 600;
}

.dd-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--dd-stone-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dd-drawer-contact {
  font-size: 0.875rem;
  color: var(--dd-text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.dd-drawer-contact i { color: var(--dd-clay); }


.dd-iso-cube {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--dd-clay);
  opacity: 0.12;
  transform: rotate(45deg) skewX(15deg) skewY(15deg);
  border-radius: 4px;
}

.dd-iso-line {
  position: absolute;
  background: var(--dd-clay);
  opacity: 0.08;
  transform: rotate(-30deg);
  border-radius: 2px;
}

.dd-iso-line-1 { width: 200px; height: 2px; top: 20%; right: 5%; }
.dd-iso-line-2 { width: 120px; height: 2px; bottom: 30%; right: 12%; }


.dd-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--dd-white);
}

@media (min-width: 900px) {
  .dd-hero {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
}

.dd-hero-iso-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dd-iso-1 {
  width: 80px; height: 80px;
  top: 15%; left: 3%;
  opacity: 0.08;
  animation: dd-iso-float 6s ease-in-out infinite;
}

.dd-iso-2 {
  width: 50px; height: 50px;
  top: 60%; left: 8%;
  opacity: 0.06;
  animation: dd-iso-float 8s ease-in-out infinite 1s;
}

.dd-iso-3 {
  width: 100px; height: 100px;
  top: 10%; right: 3%;
  opacity: 0.05;
  animation: dd-iso-float 7s ease-in-out infinite 2s;
}

@keyframes dd-iso-float {
  0%, 100% { transform: rotate(45deg) skewX(15deg) skewY(15deg) translateY(0); }
  50% { transform: rotate(45deg) skewX(15deg) skewY(15deg) translateY(-12px); }
}

.dd-hero-content {
  padding: 4rem 1.5rem 3rem;
  max-width: 680px;
  margin: 0 auto;
  animation: dd-hero-enter 0.8s ease-out forwards;
}

@media (min-width: 900px) {
  .dd-hero-content {
    padding: 6rem 3rem 6rem 4rem;
    margin: 0;
  }
}

@keyframes dd-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.dd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dd-clay);
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.9rem;
  background: rgba(196,98,45,0.1);
  border-radius: 100px;
  border: 1px solid rgba(196,98,45,0.25);
}


.dd-hero-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--dd-clay) 0%, var(--dd-ember) 50%, var(--dd-clay-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dd-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--dd-text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 48ch;
}

.dd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


.dd-hero-image-wrap {
  position: relative;
  height: 55vw;
  max-height: 600px;
  overflow: hidden;
  animation: dd-hero-img-enter 1s ease-out 0.2s both;
}

@media (min-width: 900px) {
  .dd-hero-image-wrap {
    height: 100%;
    max-height: none;
    min-height: calc(100vh - 72px);
  }
}

@keyframes dd-hero-img-enter {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

.dd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dd-hero-img-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(253,248,244,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--dd-radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--dd-shadow-md);
  border: 1px solid var(--dd-stone-dark);
}

.dd-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--dd-clay);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.dd-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dd-text);
}


.dd-overlap-zone {
  position: relative;
  z-index: 10;
  margin-top: -3rem;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -2.5rem;
}

.dd-overlap-card {
  background: var(--dd-white);
  border-radius: var(--dd-radius-xl);
  padding: 2rem;
  box-shadow: var(--dd-shadow-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border: 1px solid var(--dd-stone-dark);
}

@media (min-width: 600px) {
  .dd-overlap-card { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .dd-overlap-card { grid-template-columns: repeat(4, 1fr); }
}

.dd-overlap-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem;
}

.dd-overlap-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-clay);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(196,98,45,0.15);
}

.dd-overlap-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dd-overlap-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dd-text);
}

.dd-overlap-item span {
  font-size: 0.8rem;
  color: var(--dd-text-mid);
}


.dd-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dd-about-grid { grid-template-columns: 55% 1fr; }
}

.dd-iso-frame {
  position: relative;
  border-radius: var(--dd-radius-lg);
  overflow: visible;
}

.dd-about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--dd-radius-lg);
  box-shadow: var(--dd-shadow-lg);
}

.dd-iso-accent-shape {
  position: absolute;
  border-radius: 4px;
  transform: rotate(45deg) skewX(10deg) skewY(10deg);
}

.dd-iso-accent-1 {
  width: 70px;
  height: 70px;
  background: var(--dd-clay);
  opacity: 0.15;
  bottom: -20px;
  right: -20px;
}

.dd-iso-accent-2 {
  width: 40px;
  height: 40px;
  background: var(--dd-ember);
  opacity: 0.2;
  top: -15px;
  left: -15px;
}


.dd-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .dd-modules-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .dd-modules-grid { grid-template-columns: repeat(3, 1fr); }
}

.dd-module-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--dd-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--dd-transition);
}

.dd-module-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(196,98,45,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.dd-module-number {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.dd-module-iso-shape {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--dd-clay);
  opacity: 0.3;
  border-radius: 3px;
  transform: rotate(45deg) skewX(10deg) skewY(10deg);
  transition: all var(--dd-transition);
}

.dd-module-card:hover .dd-module-iso-shape {
  opacity: 0.5;
  transform: rotate(45deg) skewX(10deg) skewY(10deg) scale(1.1);
}

.dd-module-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.dd-module-text {
  font-size: 0.875rem;
  color: rgba(245,237,228,0.7);
  line-height: 1.65;
}


.dd-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
}

@media (min-width: 700px) {
  .dd-gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .dd-gallery-large {
    grid-row: 1 / 3;
    grid-column: 1;
  }
}

.dd-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--dd-radius-md);
  background: var(--dd-stone-dark);
  aspect-ratio: 4/3;
}

@media (min-width: 700px) {
  .dd-gallery-item { aspect-ratio: unset; }
}

.dd-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dd-transition-slow);
}

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

.dd-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,26,14,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--dd-transition);
}

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

.dd-gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
}


.dd-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dd-why-grid { grid-template-columns: 45% 1fr; }
}

.dd-why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--dd-radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 1rem;
  transition: all var(--dd-transition);
}

.dd-why-item:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.dd-why-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.dd-why-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.dd-why-content p {
  font-size: 0.85rem;
  color: rgba(245,237,228,0.75);
  line-height: 1.6;
}


.dd-process-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .dd-process-track {
    flex-direction: row;
    align-items: flex-start;
  }
}

.dd-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.dd-process-dot {
  width: 52px;
  height: 52px;
  background: var(--dd-clay);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(196,98,45,0.15);
  flex-shrink: 0;
}

.dd-process-dot span {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.dd-process-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dd-text);
}

.dd-process-content p {
  font-size: 0.82rem;
  color: var(--dd-text-mid);
  line-height: 1.55;
}

.dd-process-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--dd-clay), var(--dd-ember));
  margin-top: 25px;
  display: none;
}

@media (min-width: 700px) {
  .dd-process-line { display: block; }
}


.dd-cta-section {
  background: var(--dd-soil);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.dd-iso-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dd-iso-bg-cube {
  position: absolute;
  background: var(--dd-clay);
  border-radius: 6px;
  transform: rotate(45deg) skewX(15deg) skewY(15deg);
}

.dd-bg-cube-1 { width: 120px; height: 120px; opacity: 0.08; top: -20px; left: 5%; }
.dd-bg-cube-2 { width: 80px; height: 80px; opacity: 0.06; bottom: 10%; right: 8%; }
.dd-bg-cube-3 { width: 50px; height: 50px; opacity: 0.1; top: 40%; right: 20%; }

.dd-cta-heading {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.dd-cta-sub {
  font-size: 1.05rem;
  color: rgba(245,237,228,0.75);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.dd-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


.dd-footer {
  background: var(--dd-text);
  padding: 1.25rem 0;
  margin-top: auto;
}

.dd-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 700px) {
  .dd-footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.dd-footer .dd-logo-text { color: rgba(245,237,228,0.9); }

.dd-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.dd-footer-links a {
  font-size: 0.8rem;
  color: rgba(245,237,228,0.55);
  transition: color var(--dd-transition);
}

.dd-footer-links a:hover { color: var(--dd-clay-light); }

.dd-footer-copy {
  font-size: 0.78rem;
  color: rgba(245,237,228,0.4);
}


.dd-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--dd-clay);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--dd-shadow-md);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--dd-transition);
}

.dd-back-top.dd-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dd-back-top:hover {
  background: var(--dd-clay-dark);
  transform: translateY(-2px);
  box-shadow: var(--dd-shadow-lg);
}


.dd-page-hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: var(--dd-soil);
}

.dd-page-hero-compromiso { background: linear-gradient(135deg, var(--dd-soil) 0%, var(--dd-soil-mid) 100%); }
.dd-page-hero-agenda { background: linear-gradient(135deg, var(--dd-clay-dark) 0%, var(--dd-soil) 100%); }
.dd-page-hero-tecnicas { background: linear-gradient(135deg, var(--dd-soil) 60%, var(--dd-clay-dark) 100%); }
.dd-page-hero-contact { background: linear-gradient(135deg, var(--dd-soil-mid) 0%, var(--dd-soil) 100%); }

.dd-iso-shapes-sm {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dd-iso-sm-1 {
  width: 90px; height: 90px;
  top: 10%; right: 5%;
  opacity: 0.1;
}

.dd-iso-sm-2 {
  width: 50px; height: 50px;
  bottom: 15%; right: 15%;
  opacity: 0.07;
}

.dd-page-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.dd-page-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,237,228,0.7);
  max-width: 50ch;
  line-height: 1.65;
}


.dd-commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1000px) {
  .dd-commitment-grid { grid-template-columns: 1fr 340px; }
}

.dd-commitment-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--dd-clay);
  background: var(--dd-stone);
  border-radius: 0 var(--dd-radius-md) var(--dd-radius-md) 0;
}

.dd-blockquote {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dd-text);
  line-height: 1.6;
  font-weight: 500;
}

.dd-sidebar-card {
  background: var(--dd-stone);
  border-radius: var(--dd-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--dd-stone-dark);
}

.dd-sidebar-card-dark {
  background: var(--dd-soil);
  border-color: rgba(255,255,255,0.08);
}

.dd-sidebar-card-accent {
  background: rgba(196,98,45,0.08);
  border-color: rgba(196,98,45,0.2);
}

.dd-sidebar-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dd-text);
  margin-bottom: 1rem;
}

.dd-title-light { color: #fff; }

.dd-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.dd-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--dd-text-mid);
}

.dd-sidebar-list li i {
  color: var(--dd-clay);
  margin-top: 3px;
  flex-shrink: 0;
}

.dd-list-light li { color: rgba(245,237,228,0.75); }
.dd-list-light li i { color: var(--dd-ember); }

.dd-sidebar-text {
  font-size: 0.875rem;
  color: var(--dd-text-mid);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.dd-sidebar-img-wrap {
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.dd-sidebar-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--dd-transition-slow);
}

.dd-sidebar-img:hover { transform: scale(1.03); }


.dd-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .dd-values-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .dd-values-grid { grid-template-columns: repeat(4, 1fr); }
}

.dd-value-card {
  background: var(--dd-white);
  border-radius: var(--dd-radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dd-stone-dark);
  transition: all var(--dd-transition);
  box-shadow: var(--dd-shadow-sm);
}

.dd-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--dd-shadow-lg);
  border-color: var(--dd-clay);
}

.dd-value-iso {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--dd-clay);
  opacity: 0.08;
  border-radius: 4px;
  transform: rotate(45deg) skewX(10deg) skewY(10deg);
  transition: all var(--dd-transition);
}

.dd-value-card:hover .dd-value-iso { opacity: 0.15; }

.dd-value-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-clay);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(196,98,45,0.15);
  transition: all var(--dd-transition);
}

.dd-value-card:hover .dd-value-icon {
  background: var(--dd-clay);
  color: #fff;
}

.dd-value-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dd-text);
}

.dd-value-card p {
  font-size: 0.85rem;
  color: var(--dd-text-mid);
  line-height: 1.65;
}


.dd-agenda-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1000px) {
  .dd-agenda-layout { grid-template-columns: 1fr 320px; }
}

.dd-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.dd-schedule-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: var(--dd-stone);
  border-radius: var(--dd-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--dd-stone-dark);
  transition: all var(--dd-transition);
  box-shadow: var(--dd-shadow-sm);
}

@media (min-width: 700px) {
  .dd-schedule-item {
    grid-template-columns: 80px 1fr auto;
    align-items: start;
  }
}

.dd-schedule-item:hover {
  border-color: var(--dd-clay);
  box-shadow: var(--dd-shadow-md);
  transform: translateY(-2px);
}

.dd-schedule-featured {
  border-left: 4px solid var(--dd-clay);
  background: var(--dd-white);
}

.dd-schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--dd-clay);
  border-radius: var(--dd-radius-md);
  padding: 0.75rem;
  color: #fff;
  min-width: 72px;
  text-align: center;
}

.dd-date-month {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.dd-date-day {
  font-family: 'Sora', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.dd-date-year {
  font-size: 0.65rem;
  opacity: 0.7;
}

.dd-schedule-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dd-clay);
  background: rgba(196,98,45,0.1);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(196,98,45,0.2);
}

.dd-schedule-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dd-text);
  margin-bottom: 0.5rem;
}

.dd-schedule-desc {
  font-size: 0.875rem;
  color: var(--dd-text-mid);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.dd-schedule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dd-schedule-meta span {
  font-size: 0.78rem;
  color: var(--dd-text-mid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dd-schedule-meta i { color: var(--dd-clay); }

.dd-schedule-action {
  display: flex;
  align-items: flex-start;
}

.dd-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dd-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dd-info-list li i {
  color: var(--dd-clay);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.dd-info-list li div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dd-info-list li strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dd-text);
}

.dd-info-list li span {
  font-size: 0.8rem;
  color: var(--dd-text-mid);
}


.dd-formats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .dd-formats-grid { grid-template-columns: repeat(3, 1fr); }
}

.dd-format-card {
  background: var(--dd-white);
  border-radius: var(--dd-radius-lg);
  padding: 2rem;
  border: 1px solid var(--dd-stone-dark);
  position: relative;
  overflow: hidden;
  transition: all var(--dd-transition);
  box-shadow: var(--dd-shadow-sm);
}

.dd-format-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dd-shadow-md);
  border-color: var(--dd-clay);
}

.dd-format-featured {
  border-color: var(--dd-clay);
  background: rgba(196,98,45,0.04);
}

.dd-format-iso {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 44px;
  height: 44px;
  background: var(--dd-clay);
  opacity: 0.1;
  border-radius: 4px;
  transform: rotate(45deg) skewX(10deg) skewY(10deg);
}

.dd-format-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-clay);
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(196,98,45,0.15);
  transition: all var(--dd-transition);
}

.dd-format-card:hover .dd-format-icon {
  background: var(--dd-clay);
  color: #fff;
}

.dd-format-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dd-text);
}

.dd-format-card p {
  font-size: 0.85rem;
  color: var(--dd-text-mid);
  line-height: 1.65;
}

.dd-format-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--dd-clay);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
}


.dd-tech-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dd-tech-intro { grid-template-columns: 1fr 1fr; }
}

.dd-thermal-diagram {
  background: var(--dd-stone);
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--dd-stone-dark);
  box-shadow: var(--dd-shadow-md);
}

.dd-thermal-layer {
  padding: 1rem 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(44,26,14,0.08);
  transition: all var(--dd-transition);
}

.dd-thermal-layer:last-child { border-bottom: none; }

.dd-thermal-layer:hover { transform: translateX(4px); }

.dd-layer-1 { background: rgba(196,98,45,0.08); border-left: 4px solid rgba(196,98,45,0.3); }
.dd-layer-2 { background: rgba(196,98,45,0.14); border-left: 4px solid rgba(196,98,45,0.45); }
.dd-layer-3 { background: rgba(196,98,45,0.22); border-left: 4px solid rgba(196,98,45,0.65); }
.dd-layer-4 { background: rgba(196,98,45,0.32); border-left: 4px solid var(--dd-clay); }

.dd-layer-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dd-text-mid);
}


.dd-materials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .dd-materials-grid { grid-template-columns: repeat(3, 1fr); }
}

.dd-material-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  transition: all var(--dd-transition);
}

.dd-material-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,98,45,0.5);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}

.dd-material-img-wrap {
  height: 200px;
  overflow: hidden;
}

.dd-material-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dd-transition-slow);
}

.dd-material-card:hover .dd-material-img { transform: scale(1.05); }

.dd-material-content {
  padding: 1.5rem;
}

.dd-material-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.dd-material-content p {
  font-size: 0.85rem;
  color: rgba(245,237,228,0.7);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.dd-material-props {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.dd-prop-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dd-ember);
  background: rgba(232,162,74,0.15);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(232,162,74,0.25);
}


.dd-techniques-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.dd-technique-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--dd-stone-dark);
  transition: all var(--dd-transition);
}

@media (min-width: 700px) {
  .dd-technique-item {
    grid-template-columns: 60px 1fr auto;
    align-items: center;
  }
}

.dd-technique-item:hover { background: rgba(196,98,45,0.03); padding-left: 0.5rem; }

.dd-technique-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--dd-clay);
  opacity: 0.35;
  line-height: 1;
}

.dd-technique-body h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dd-text);
  margin-bottom: 0.5rem;
}

.dd-technique-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dd-clay);
  background: rgba(196,98,45,0.08);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(196,98,45,0.2);
  white-space: nowrap;
}


.dd-baking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dd-baking-grid { grid-template-columns: 1fr 1fr; }
}

.dd-baking-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--dd-radius-lg);
  box-shadow: var(--dd-shadow-lg);
}

.dd-baking-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.dd-baking-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--dd-stone);
  border-radius: var(--dd-radius-md);
  border: 1px solid var(--dd-stone-dark);
  transition: all var(--dd-transition);
}

.dd-baking-item:hover {
  border-color: var(--dd-clay);
  transform: translateX(4px);
}

.dd-baking-item i {
  color: var(--dd-clay);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.dd-baking-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dd-baking-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dd-text);
}

.dd-baking-item span {
  font-size: 0.82rem;
  color: var(--dd-text-mid);
}


.dd-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1000px) {
  .dd-contact-grid { grid-template-columns: 1fr 360px; }
}

.dd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.dd-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dd-text);
  letter-spacing: 0.01em;
}

.dd-form-input,
.dd-form-textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--dd-stone-dark);
  border-radius: var(--dd-radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dd-text);
  background: var(--dd-white);
  transition: all var(--dd-transition);
  outline: none;
  min-height: 44px;
}

.dd-form-input:focus,
.dd-form-textarea:focus {
  border-color: var(--dd-clay);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.12);
}

.dd-form-input::placeholder,
.dd-form-textarea::placeholder {
  color: rgba(74,46,24,0.35);
}

.dd-form-textarea {
  resize: vertical;
  min-height: 130px;
}

.dd-form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.dd-form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--dd-clay);
  cursor: pointer;
  flex-shrink: 0;
}

.dd-form-check-label {
  font-size: 0.85rem;
  color: var(--dd-text-mid);
  line-height: 1.5;
  cursor: pointer;
}

.dd-form-link {
  color: var(--dd-clay);
  text-decoration: underline;
  transition: color var(--dd-transition);
}

.dd-form-link:hover { color: var(--dd-clay-dark); }

.dd-form-note {
  font-size: 0.78rem;
  color: var(--dd-text-mid);
  opacity: 0.7;
  text-align: center;
  margin-top: 0.25rem;
}


.dd-response-info {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--dd-stone);
  border-radius: var(--dd-radius-lg);
  border: 1px solid var(--dd-stone-dark);
}

.dd-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dd-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.dd-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(196,98,45,0.1);
  border-radius: var(--dd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-clay);
  flex-shrink: 0;
  font-size: 0.9rem;
  border: 1px solid rgba(196,98,45,0.15);
}

.dd-contact-detail-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dd-contact-detail-item strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dd-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dd-contact-detail-item span {
  font-size: 0.9rem;
  color: var(--dd-text-mid);
  line-height: 1.5;
}

.dd-contact-link {
  font-size: 0.9rem;
  color: var(--dd-clay);
  transition: color var(--dd-transition);
}

.dd-contact-link:hover { color: var(--dd-clay-dark); text-decoration: underline; }


.dd-map-section { padding-top: 0; }

.dd-map-wrap {
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  box-shadow: var(--dd-shadow-md);
  border: 1px solid var(--dd-stone-dark);
}

.dd-map-iframe { display: block; }


.dd-thanks-body { background: var(--dd-stone); }

.dd-thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
}

.dd-thanks-container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.dd-thanks-heading-wrap {
  margin-bottom: 4rem;
}

.dd-thanks-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dd-text);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.dd-thanks-subtitle {
  font-size: 1.05rem;
  color: var(--dd-text-mid);
  line-height: 1.65;
}


.dd-timeline {
  text-align: left;
  padding: 2rem;
  background: var(--dd-white);
  border-radius: var(--dd-radius-xl);
  box-shadow: var(--dd-shadow-lg);
  border: 1px solid var(--dd-stone-dark);
}

.dd-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
}

.dd-timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  border: 2px solid transparent;
}

.dd-dot-done {
  background: rgba(196,98,45,0.15);
  color: var(--dd-clay);
  border-color: rgba(196,98,45,0.3);
}

.dd-dot-active {
  background: var(--dd-clay);
  color: #fff;
  box-shadow: 0 0 0 6px rgba(196,98,45,0.15);
}

.dd-dot-pending {
  background: var(--dd-stone);
  color: var(--dd-text-mid);
  border-color: var(--dd-stone-dark);
  opacity: 0.6;
}

.dd-timeline-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dd-text);
  margin-bottom: 0.25rem;
}

.dd-timeline-content p {
  font-size: 0.85rem;
  color: var(--dd-text-mid);
  line-height: 1.55;
}

.dd-timeline-connector {
  width: 2px;
  height: 28px;
  margin-left: 21px;
  border-radius: 2px;
}

.dd-connector-done { background: var(--dd-clay); }
.dd-connector-pending { background: var(--dd-stone-dark); }


.dd-legal-hero {
  background: var(--dd-soil);
  padding: 8rem 0 3.5rem;
}

.dd-legal-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.dd-legal-date {
  font-size: 0.875rem;
  color: rgba(245,237,228,0.55);
  margin-top: 0.5rem;
}

.dd-legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  gap: 3rem;
}

@media (min-width: 900px) {
  .dd-legal-layout {
    grid-template-columns: 220px 1fr;
    padding: 4rem 1.5rem;
  }
}

.dd-legal-sidebar {
  display: none;
}

@media (min-width: 900px) {
  .dd-legal-sidebar {
    display: block;
    position: sticky;
    top: 5rem;
    align-self: start;
    background: var(--dd-stone);
    border-radius: var(--dd-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--dd-stone-dark);
  }
}

.dd-sidebar-nav-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dd-clay);
  margin-bottom: 1rem;
}

.dd-legal-nav-link {
  display: block;
  font-size: 0.8rem;
  color: var(--dd-text-mid);
  padding: 0.4rem 0.5rem;
  border-radius: var(--dd-radius-sm);
  margin-bottom: 0.2rem;
  transition: all var(--dd-transition);
  border-left: 2px solid transparent;
}

.dd-legal-nav-link:hover {
  color: var(--dd-clay);
  background: rgba(196,98,45,0.07);
  border-left-color: var(--dd-clay);
  padding-left: 0.75rem;
}

.dd-legal-content {
  max-width: 780px;
}

.dd-legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dd-stone-dark);
}

.dd-legal-section:last-child {
  border-bottom: none;
}

.dd-legal-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dd-text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(196,98,45,0.2);
}

.dd-legal-section p {
  font-size: 0.9rem;
  color: var(--dd-text-mid);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.dd-legal-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.dd-legal-section ul li {
  font-size: 0.9rem;
  color: var(--dd-text-mid);
  line-height: 1.7;
  margin-bottom: 0.35rem;
  list-style: disc;
}

.dd-legal-section a {
  color: var(--dd-clay);
  text-decoration: underline;
  transition: color var(--dd-transition);
}

.dd-legal-section a:hover { color: var(--dd-clay-dark); }


.dd-cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--dd-radius-md);
  border: 1px solid var(--dd-stone-dark);
}

.dd-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
}

.dd-cookie-table th {
  background: var(--dd-stone);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--dd-text);
  border-bottom: 1px solid var(--dd-stone-dark);
}

.dd-cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--dd-text-mid);
  border-bottom: 1px solid var(--dd-stone-dark);
  vertical-align: top;
}

.dd-cookie-table tr:last-child td { border-bottom: none; }
.dd-cookie-table tr:hover td { background: rgba(196,98,45,0.03); }


.dd-aviso-layout {
  grid-template-columns: 1fr;
}

.dd-aviso-content {
  max-width: 860px;
  margin: 0 auto;
}


.dd-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.dd-reveal.dd-revealed {
  opacity: 1;
  transform: translateY(0);
}

.dd-reveal-delay {
  transition-delay: 0.15s;
}


@media (max-width: 600px) {
  .dd-section { padding: 4rem 0; }
  .dd-hero-content { padding: 3rem 1.25rem 2rem; }
  .dd-overlap-zone { margin-top: -1.5rem; }
  .dd-hero-actions { flex-direction: column; }
  .dd-cta-actions { flex-direction: column; align-items: center; }
  .dd-footer-inner { gap: 0.75rem; }
  .dd-back-top { bottom: 1.25rem; right: 1.25rem; }
  .dd-schedule-item { grid-template-columns: 1fr; }
  .dd-schedule-action { justify-content: flex-start; }
  .dd-contact-grid { gap: 2.5rem; }
}

@media (min-width: 900px) {
  .dd-hamburger { display: none; }
  .dd-header-cta { display: inline-flex; }
  .dd-nav-links { display: flex; }
}