@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --da-stone-900: #6b635b;
  --da-stone-800: #7d756c;
  --da-stone-700: #8e857b;
  --da-stone-600: #9e958b;
  --da-stone-500: #a89f96;
  --da-stone-400: #bfb8b0;
  --da-stone-300: #d6d1cc;
  --da-stone-200: #e7e4e0;
  --da-stone-100: #f2f0ed;
  --da-stone-50: #f9f8f6;
  --da-sage: #8a8279;
  --da-sage-light: #a69d94;
  --da-sage-pale: #ece9e5;
  --da-clay: #8e7e70;
  --da-clay-light: #b5a898;
  --da-clay-pale: #f3efe9;
  --da-mist: #9a938b;
  --da-mist-light: #b8b1a9;
  --da-white: #ffffff;
  --da-shadow-sm: 0 1px 3px rgba(100,90,80,0.06);
  --da-shadow: 0 4px 20px rgba(100,90,80,0.08);
  --da-shadow-lg: 0 12px 40px rgba(100,90,80,0.1);
  --da-shadow-xl: 0 20px 60px rgba(100,90,80,0.1);
}

/* ===== RESET & WORDPRESS OVERRIDE ===== */
.da-page, .da-page * { margin: 0; padding: 0; box-sizing: border-box; }
.da-page a { text-decoration: none; color: inherit; }

.entry-content:has(.da-page),
.page-content:has(.da-page),
.site-content:has(.da-page),
.elementor-widget-container:has(.da-page) {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

.da-page {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--da-stone-700);
  background: var(--da-stone-50);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
}

/* ===== FULLWIDTH UTILITY ===== */
.da-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ===== HERO — CINEMATIC SPLIT ===== */
.da-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.da-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: var(--da-stone-900);
  position: relative;
  z-index: 2;
}
.da-hero__left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, var(--da-stone-900), transparent);
  z-index: 3;
}
.da-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--da-stone-600);
  border-radius: 40px;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--da-sage-light);
  margin-bottom: 36px;
  width: fit-content;
  animation: daSlideIn 1s ease-out 0.4s both;
}
.da-hero__tag-dot {
  width: 7px; height: 7px;
  background: var(--da-sage-light);
  border-radius: 50%;
  animation: daPulse 2.5s infinite;
}
.da-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  color: var(--da-white);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 24px;
  animation: daSlideIn 1s ease-out 0.6s both;
}
.da-hero__title em {
  font-family: 'Lora', serif;
  color: var(--da-sage-light);
  font-style: italic;
}
.da-hero__desc {
  font-size: 1.05rem;
  color: var(--da-stone-400);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
  animation: daSlideIn 1s ease-out 0.8s both;
}
.da-hero__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--da-stone-700);
  padding-top: 32px;
  animation: daSlideIn 1s ease-out 1s both;
}
.da-hero__num {
  text-align: center;
  position: relative;
}
.da-hero__num:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: var(--da-stone-700);
}
.da-hero__num-value {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--da-clay-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.da-hero__num-label {
  font-size: 0.7rem;
  color: var(--da-stone-500);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.da-hero__right {
  position: relative;
  overflow: hidden;
}
.da-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.da-hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 60%, var(--da-stone-900));
}
.da-hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--da-stone-500);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 4;
  animation: daSlideIn 1s ease-out 1.2s both;
}
.da-hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--da-stone-600);
  position: relative;
  overflow: hidden;
}
.da-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--da-sage-light);
  animation: daScrollLine 2s infinite;
}

/* ===== SECTION CONTAINER ===== */
.da-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== INTRO / ABOUT ===== */
.da-intro {
  padding: 120px 0;
  position: relative;
}
.da-intro__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.da-intro__content {
  position: relative;
}
.da-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--da-sage);
  margin-bottom: 18px;
}
.da-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--da-sage);
}
.da-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--da-stone-800);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.da-text {
  font-size: 1rem;
  color: var(--da-stone-500);
  line-height: 1.85;
  max-width: 540px;
}
.da-intro__image-wrap {
  position: relative;
}
.da-intro__image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--da-shadow-xl);
}
.da-intro__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.da-intro__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(28, 25, 23, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 24px;
  border-radius: 14px;
  color: white;
}
.da-intro__image-label-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--da-sage-light);
  margin-bottom: 4px;
}
.da-intro__image-label-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
}
.da-intro__accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--da-sage-pale);
  border-radius: 20px;
  z-index: -1;
}

/* ===== PHILOSOPHY STRIP ===== */
.da-philosophy {
  background: var(--da-stone-900);
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.da-philosophy::before,
.da-philosophy::after {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 14rem;
  color: rgba(255,255,255,0.03);
  position: absolute;
  line-height: 1;
}
.da-philosophy::before { top: -20px; left: 40px; }
.da-philosophy::after { bottom: -80px; right: 40px; transform: rotate(180deg); }
.da-philosophy__text {
  font-family: 'Lora', serif;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  color: var(--da-stone-300);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== TIMELINE LEGACY ===== */
.da-timeline {
  padding: 120px 0;
  background: var(--da-stone-100);
}
.da-timeline__header {
  text-align: center;
  margin-bottom: 70px;
}
.da-timeline__header .da-heading { margin-bottom: 12px; }
.da-timeline__header .da-text { margin: 0 auto; text-align: center; }
.da-timeline__track {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.da-timeline__track::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--da-stone-300);
}
.da-timeline__item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.da-timeline__item:nth-child(odd) .da-timeline__card { grid-column: 1; text-align: right; }
.da-timeline__item:nth-child(odd) .da-timeline__dot { grid-column: 2; }
.da-timeline__item:nth-child(odd) .da-timeline__empty { grid-column: 3; }
.da-timeline__item:nth-child(even) .da-timeline__empty { grid-column: 1; }
.da-timeline__item:nth-child(even) .da-timeline__dot { grid-column: 2; }
.da-timeline__item:nth-child(even) .da-timeline__card { grid-column: 3; text-align: left; }
.da-timeline__dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--da-sage);
  border: 3px solid var(--da-stone-100);
  box-shadow: 0 0 0 4px var(--da-sage-pale);
  justify-self: center;
  z-index: 2;
}
.da-timeline__card {
  background: var(--da-white);
  padding: 28px 32px;
  border-radius: 16px;
  box-shadow: var(--da-shadow);
  transition: all 0.4s ease;
}
.da-timeline__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--da-shadow-lg);
}
.da-timeline__year {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--da-clay);
  margin-bottom: 6px;
}
.da-timeline__title {
  font-weight: 600;
  color: var(--da-stone-800);
  font-size: 1rem;
  margin-bottom: 6px;
}
.da-timeline__desc {
  font-size: 0.88rem;
  color: var(--da-stone-500);
  line-height: 1.6;
}

/* ===== SERVICES BENTO GRID ===== */
.da-services {
  padding: 120px 0;
}
.da-services__header {
  text-align: center;
  margin-bottom: 60px;
}
.da-services__header .da-text { margin: 0 auto; text-align: center; }
.da-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.da-bento__item {
  background: var(--da-white);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid var(--da-stone-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.da-bento__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--da-sage-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.da-bento__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--da-shadow-lg);
  border-color: var(--da-sage-pale);
}
.da-bento__item:hover::before { opacity: 1; }
.da-bento__item--wide { grid-column: span 2; }
.da-bento__item--highlight {
  background: var(--da-stone-800);
  border-color: var(--da-stone-700);
}
.da-bento__item--highlight .da-bento__title { color: var(--da-white); }
.da-bento__item--highlight .da-bento__desc { color: var(--da-stone-400); }
.da-bento__item--highlight::before {
  background: linear-gradient(135deg, rgba(107,127,94,0.15) 0%, transparent 60%);
}
.da-bento__icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  position: relative;
  z-index: 1;
}
.da-bento__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--da-stone-800);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.da-bento__desc {
  font-size: 0.88rem;
  color: var(--da-stone-500);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== APPROACH — HORIZONTAL SCROLL-LIKE ===== */
.da-approach {
  padding: 120px 0;
  background: var(--da-stone-100);
}
.da-approach__wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.da-approach__image-stack {
  position: relative;
  height: 520px;
}
.da-approach__img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--da-shadow-xl);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.da-approach__img:first-child {
  width: 65%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 2;
}
.da-approach__img:last-child {
  width: 55%;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.da-approach__img:hover {
  z-index: 3;
  transform: scale(1.03);
}
.da-approach__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.da-approach__steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.da-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--da-stone-200);
  transition: all 0.3s ease;
}
.da-step:first-child { border-top: 1px solid var(--da-stone-200); }
.da-step:hover {
  padding-left: 12px;
}
.da-step__num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--da-sage);
  min-width: 36px;
  line-height: 1.3;
}
.da-step__title {
  font-weight: 600;
  color: var(--da-stone-800);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.da-step__desc {
  font-size: 0.85rem;
  color: var(--da-stone-500);
  line-height: 1.55;
}

/* ===== WHY CHOOSE — ICON STRIP ===== */
.da-why {
  padding: 100px 0;
  overflow: hidden;
}
.da-why__header {
  text-align: center;
  margin-bottom: 60px;
}
.da-why__header .da-text { margin: 0 auto; text-align: center; }
.da-why__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--da-stone-200);
  border-bottom: 1px solid var(--da-stone-200);
}
.da-why__item {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid var(--da-stone-200);
  transition: all 0.4s ease;
  position: relative;
  cursor: default;
}
.da-why__item:last-child { border-right: none; }
.da-why__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--da-sage);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.da-why__item:hover {
  background: var(--da-stone-100);
}
.da-why__item:hover::before {
  transform: scaleX(1);
}
.da-why__item-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.da-why__item-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--da-stone-700);
  line-height: 1.4;
}

/* ===== PHOTO MOSAIC ===== */
.da-mosaic {
  padding: 120px 0;
  background: var(--da-stone-900);
}
.da-mosaic__header {
  text-align: center;
  margin-bottom: 60px;
}
.da-mosaic__header .da-label { color: var(--da-sage-light); }
.da-mosaic__header .da-label::before { background: var(--da-sage-light); }
.da-mosaic__header .da-heading { color: var(--da-white); }
.da-mosaic__header .da-text { color: var(--da-stone-400); margin: 0 auto; text-align: center; }
.da-mosaic__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.da-mosaic__cell {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.da-mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.da-mosaic__cell:hover img {
  transform: scale(1.08);
}
.da-mosaic__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.da-mosaic__cell:hover::after { opacity: 1; }
.da-mosaic__cell-label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.da-mosaic__cell:hover .da-mosaic__cell-label {
  opacity: 1;
  transform: translateY(0);
}
.da-mosaic__cell--tall { grid-row: span 2; }

/* ===== FUTURE VISION ===== */
.da-vision {
  padding: 120px 0;
  background: var(--da-clay-pale);
  position: relative;
  overflow: hidden;
}
.da-vision::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,127,94,0.1), transparent 70%);
}
.da-vision__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.da-vision__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--da-white);
  border: 1px solid var(--da-stone-200);
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--da-sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.da-vision__graphic {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.da-vision__circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--da-sage-pale), var(--da-white));
  border: 1px solid var(--da-stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  animation: daFloat 6s ease-in-out infinite;
  box-shadow: var(--da-shadow-lg);
}
.da-vision__circle-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}
.da-vision__circle-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--da-stone-800);
  margin-bottom: 4px;
}
.da-vision__circle-sub {
  font-size: 0.82rem;
  color: var(--da-stone-500);
  max-width: 200px;
}
.da-vision__orbit {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed var(--da-stone-300);
  border-radius: 50%;
  animation: daSpin 30s linear infinite;
}
.da-vision__orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--da-sage);
  border-radius: 50%;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(107,127,94,0.4);
}

/* ===== STORIES / HOPE ===== */
.da-stories {
  padding: 100px 0;
  background: var(--da-stone-800);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.da-stories::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(107,127,94,0.08), transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(139,111,78,0.06), transparent 50%);
}
.da-stories__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.da-stories .da-label { color: var(--da-clay-light); }
.da-stories .da-label::before { background: var(--da-clay-light); }
.da-stories .da-heading { color: var(--da-white); }
.da-stories .da-text { color: var(--da-stone-400); margin: 0 auto 36px; text-align: center; font-size: 1.05rem; }
.da-stories__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 28px;
  border-radius: 40px;
  color: var(--da-sage-light);
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
  color: white;
}

/* ===== CONTACT ===== */
.da-contact {
  padding: 120px 0;
  background: var(--da-stone-100);
}
.da-contact__header {
  text-align: center;
  margin-bottom: 60px;
}
.da-contact__header .da-text { margin: 0 auto; text-align: center; }
.da-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.da-contact__card {
  background: var(--da-white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--da-stone-200);
  transition: all 0.4s ease;
}
.da-contact__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--da-shadow-lg);
  border-color: var(--da-sage-pale);
}
.da-contact__card-icon {
  width: 52px; height: 52px;
  background: var(--da-sage-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.da-contact__card-title {
  font-weight: 600;
  color: var(--da-stone-800);
  font-size: 0.92rem;
  margin-bottom: 8px;
}
.da-contact__card-text {
  font-size: 0.85rem;
  color: var(--da-stone-500);
  line-height: 1.6;
}
.da-contact__card-text a {
  color: var(--da-sage);
  transition: color 0.3s;
}
.da-contact__card-text a:hover { color: var(--da-clay); }

/* ===== FOOTER CTA ===== */
.da-cta {
  background: var(--da-stone-900);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.da-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,127,94,0.12), transparent 60%);
}
.da-cta__content {
  position: relative;
  z-index: 1;
}
.da-cta__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--da-white);
  margin-bottom: 12px;
}
.da-cta__sub {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--da-stone-400);
  margin-bottom: 36px;
}
.da-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--da-white);
  color: var(--da-white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(107,127,94,0.3);
}
.da-cta__btn:hover {
  background: var(--da-sage-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107,127,94,0.4);
}
.da-cta__btn svg {
  width: 18px; height: 18px;
  transition: transform 0.3s;
}
.da-cta__btn:hover svg { transform: translateX(4px); }

/* ===== ANIMATIONS ===== */
@keyframes daSlideIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes daPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
@keyframes daScrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes daFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes daSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.da-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.da-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .da-hero { grid-template-columns: 1fr; min-height: auto; }
  .da-hero__left { padding: 80px 40px; }
  .da-hero__left::after { display: none; }
  .da-hero__right { height: 400px; }
  .da-hero__right::after { background: linear-gradient(to top, var(--da-stone-900) 10%, transparent 50%); }
  .da-hero__scroll-indicator { left: 40px; }
  .da-bento { grid-template-columns: repeat(2, 1fr); }
  .da-why__strip { grid-template-columns: repeat(3, 1fr); }
  .da-why__item:nth-child(3) { border-right: none; }
  .da-mosaic__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .da-mosaic__cell--tall { grid-row: span 1; }
  .da-contact__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .da-intro__wrapper,
  .da-approach__wrapper,
  .da-vision__wrapper { grid-template-columns: 1fr; gap: 50px; }
  .da-hero__numbers { grid-template-columns: repeat(3, 1fr); }
  .da-hero__left { padding: 60px 24px; }
  .da-intro__image img { height: 360px; }
  .da-approach__image-stack { height: 400px; }
  .da-approach__img:first-child { width: 70%; height: 300px; }
  .da-approach__img:last-child { width: 60%; height: 260px; }
  .da-timeline__track::before { left: 20px; }
  .da-timeline__item { grid-template-columns: 40px 1fr; }
  .da-timeline__item:nth-child(odd) .da-timeline__card,
  .da-timeline__item:nth-child(even) .da-timeline__card { grid-column: 2; text-align: left; }
  .da-timeline__item:nth-child(odd) .da-timeline__dot,
  .da-timeline__item:nth-child(even) .da-timeline__dot { grid-column: 1; }
  .da-timeline__empty { display: none; }
  .da-bento { grid-template-columns: 1fr; }
  .da-bento__item--wide { grid-column: span 1; }
  .da-why__strip { grid-template-columns: repeat(2, 1fr); }
  .da-why__item:nth-child(2n) { border-right: none; }
  .da-mosaic__grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .da-contact__grid { grid-template-columns: 1fr; max-width: 400px; }
  .da-container { padding: 0 24px; }
  .da-vision__circle { width: 260px; height: 260px; }
  .da-vision__orbit { width: 340px; height: 340px; }
}
