/* ==========================================================================
   Devoted Care Finders — Premium Stylesheet
   Metallic gold + charcoal palette · Cormorant Garamond + Sora
   ========================================================================== */

:root {
  --gold: #C9A227;
  --gold-mid: #D4AF37;
  --gold-light: #E8C547;
  --charcoal: #353535;
  --charcoal-2: #2A2A2A;
  --charcoal-3: #454545;
  --charcoal-4: #5C5C5C;
  --off-white: #F7F5F2;
  --white: #FFFFFF;
  --muted: #6B6E73;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --gold-gradient: linear-gradient(120deg, #C9A227 0%, #E8C547 50%, #C9A227 100%);
  --shadow-soft: 0 20px 50px -20px rgba(53, 53, 53, 0.35);
  --shadow-card: 0 12px 32px -16px rgba(53, 53, 53, 0.18);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal-2);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.06; font-weight: 600; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1.14; }
h3 { font-size: 1.4rem; line-height: 1.3; }
p { margin: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--charcoal); color: var(--white);
  padding: 10px 16px; z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 24px; }

.dcf-section { padding-block: clamp(64px, 9vw, 108px); }
.dcf-section--tight { padding-block: clamp(44px, 6vw, 68px); }
.dcf-section--alt { background: #EFEBE3; }
.dcf-section--dark { background: var(--charcoal); color: rgba(255,255,255,.86); }
.dcf-section--dark h2, .dcf-section--dark h3 { color: var(--white); }

.dcf-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.dcf-eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold-gradient); border-radius: 2px; flex-shrink:0;
}
.dcf-section--dark .dcf-eyebrow { color: var(--gold-light); }

.dcf-head { max-width: 720px; }
.dcf-head--center { margin-inline: auto; text-align: center; }
.dcf-lede {
  font-size: 1.08rem; color: var(--muted); margin-top: 14px; max-width: 640px;
}
.dcf-head--center .dcf-lede { margin-inline: auto; }
.dcf-section--dark .dcf-lede { color: rgba(255,255,255,.7); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg, .btn i { width: 18px; height: 18px; }
.btn--gold {
  background: var(--gold-gradient); color: var(--charcoal); box-shadow: 0 14px 30px -12px rgba(201,162,39,.55);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(201,162,39,.65); }
.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--charcoal-3); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--charcoal); border-color: rgba(53,53,53,.25); }
.btn--outline-dark:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.dcf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 18px;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.dcf-header::before {
  content: ""; position: absolute; inset: 0; background: var(--charcoal); opacity: 0;
  transition: opacity .35s var(--ease); z-index: -1;
}
.dcf-header.is-scrolled { padding-block: 12px; box-shadow: 0 10px 30px -18px rgba(0,0,0,.5); border-color: rgba(201,162,39,.18); }
.dcf-header.is-scrolled::before { opacity: 1; }

.dcf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.dcf-logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; z-index: 2; }
.dcf-logo__mark {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-gradient); color: var(--charcoal); flex-shrink: 0;
}
.dcf-logo__mark svg, .dcf-logo__mark i { width: 22px; height: 22px; }
.dcf-logo__img { height: 56px; width: auto; max-width: min(180px, 42vw); object-fit: contain; }
.dcf-footer .dcf-logo__img { height: 80px; max-width: 220px; }
.dcf-logo__text { display: flex; flex-direction: column; line-height: 1.1; font-family: var(--font-display); }
.dcf-logo__name { font-size: 1.28rem; font-weight: 600; color: var(--white); }
.dcf-logo__name span { color: var(--gold-light); }
.dcf-logo__tag { font-family: var(--font-body); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.dcf-nav-spacer {
  flex: 1 1 auto;
  min-width: 0;
  pointer-events: none;
}

.dcf-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  z-index: 2;
}
.dcf-header__cta { display: inline-flex; }
.dcf-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  position: relative;
  z-index: 520;
}
.dcf-burger svg { width: 20px; height: 20px; pointer-events: none; }
.dcf-burger.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Nav is a body-level sibling so mobile drawer stacks above the backdrop */
.dcf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.dcf-nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  transition: color .25s var(--ease);
  z-index: 1;
}
.dcf-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.dcf-nav__link:hover,
.dcf-nav__link.is-active { color: var(--white); }
.dcf-nav__link:hover::after,
.dcf-nav__link.is-active::after { transform: scaleX(1); }

.dcf-nav__close {
  display: none !important;
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  z-index: 30;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  -webkit-tap-highlight-color: transparent;
}
.dcf-nav__close:hover,
.dcf-nav__close:focus-visible {
  background: rgba(201,162,39,.25);
  border-color: rgba(201,162,39,.55);
  color: var(--gold-light);
  outline: none;
}
.dcf-nav__close svg,
.dcf-nav__close i { width: 18px; height: 18px; pointer-events: none; flex-shrink: 0; }
.dcf-nav__close-text { pointer-events: none; }

.dcf-nav__mobile-cta { display: none !important; }

/* Desktop: center links over the header bar (above header, below nothing interactive except links) */
@media (min-width: 981px) {
  .dcf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 92px;
    z-index: 510;
    pointer-events: none;
    background: transparent;
    transition: height .35s var(--ease);
  }
  .dcf-header.is-scrolled ~ .dcf-nav { height: 80px; }
  .dcf-nav__link { pointer-events: auto; }
  .dcf-nav__close,
  .dcf-nav__mobile-cta { display: none !important; }
  .dcf-burger { display: none !important; }
  .dcf-header__cta { display: inline-flex; }
  .dcf-nav-spacer { display: block; }
}

/* Mobile: slide-out drawer ABOVE backdrop */
@media (max-width: 980px) {
  .dcf-nav-spacer { display: none; }
  .dcf-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: min(340px, 86vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 88px 30px 40px;
    gap: 4px;
    background: var(--charcoal-2);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,.35);
    z-index: 700;
    pointer-events: auto;
  }
  .dcf-nav.is-open { transform: translateX(0); }
  .dcf-nav__close { display: inline-flex !important; }
  .dcf-nav__link {
    width: 100%;
    padding: 14px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    white-space: normal;
    pointer-events: auto;
  }
  .dcf-nav__link::after { display: none; }
  .dcf-header__cta { display: none; }
  .dcf-nav__mobile-cta {
    display: inline-flex !important;
    margin-top: 22px;
    pointer-events: auto;
  }
  .dcf-burger { display: inline-flex; }
}

.dcf-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,11,13,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  z-index: 650;
  pointer-events: none;
}
.dcf-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open { overflow: hidden; }

/* ==========================================================================
   Home Hero
   ========================================================================== */
.dcf-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--charcoal); overflow: hidden; padding-top: 90px;
}
.dcf-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-color: var(--charcoal);
}
.dcf-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(53, 53, 53,.96) 8%, rgba(53, 53, 53,.82) 42%, rgba(53, 53, 53,.4) 70%, rgba(53, 53, 53,.15) 100%),
    linear-gradient(0deg, rgba(53, 53, 53,.75), transparent 45%);
}
.dcf-hero__inner { position: relative; z-index: 2; width: 100%; padding-block: 60px 80px; }
.dcf-hero__content { max-width: 660px; }
.dcf-hero__brand {
  font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px;
}
.dcf-hero__rule {
  display: block; width: 64px; height: 2px; background: var(--gold-gradient); border-radius: 2px;
  margin-bottom: 26px; transform-origin: left; transform: scaleX(0);
  animation: dcfRule 1.1s .35s var(--ease) forwards;
}
@keyframes dcfRule { to { transform: scaleX(1); } }

.dcf-hero__title { color: var(--white); }
.dcf-hero__title em { font-style: italic; color: var(--gold-light); }
.dcf-hero__lead { color: rgba(255,255,255,.78); font-size: 1.14rem; margin-top: 22px; max-width: 560px; }
.dcf-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.dcf-hero__meta { display: flex; gap: 34px; margin-top: 56px; flex-wrap: wrap; }
.dcf-hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.dcf-hero__meta-num { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); font-weight: 600; }
.dcf-hero__meta-label { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ==========================================================================
   Page hero (sub pages)
   ========================================================================== */
.dcf-page-hero {
  position: relative; padding-top: calc(90px + 90px); padding-bottom: 90px; background: var(--charcoal);
  overflow: hidden;
}
.dcf-page-hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.dcf-page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(53, 53, 53,.95) 15%, rgba(53, 53, 53,.78) 55%, rgba(53, 53, 53,.42) 100%);
}
.dcf-page-hero__content { position: relative; z-index: 2; max-width: 620px; }
.dcf-breadcrumb { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 18px; letter-spacing: .02em; }
.dcf-breadcrumb a { color: rgba(255,255,255,.85); }
.dcf-breadcrumb a:hover { color: var(--gold-light); }
.dcf-page-hero__crumb {
  display: inline-flex; padding: 6px 16px; border: 1px solid rgba(201,162,39,.45); border-radius: 999px;
  color: var(--gold-light); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.dcf-page-hero__title { color: var(--white); margin-top: 4px; }
.dcf-page-hero__lead { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-top: 18px; max-width: 560px; }

/* ==========================================================================
   Value props
   ========================================================================== */
.dcf-values__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px;
}
.dcf-value-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(53, 53, 53,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.dcf-value-card:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -20px rgba(53, 53, 53,.24); }
.dcf-value-card__icon {
  width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(150deg, rgba(201,162,39,.14), rgba(201,162,39,.05));
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.dcf-value-card__icon svg, .dcf-value-card__icon i { width: 24px; height: 24px; }
.dcf-value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.dcf-value-card p { color: var(--muted); font-size: .95rem; }

/* ==========================================================================
   Housing / Resources preview + grid — shared card component
   ========================================================================== */
.dcf-split {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: center;
}
.dcf-split__visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.dcf-split__visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.dcf-split__visual::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(201,162,39,.35); border-radius: var(--radius);
  pointer-events: none;
}

.dcf-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.dcf-cards-grid--tight { margin-top: 0; }

.dcf-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px; position: relative;
  border: 1px solid rgba(53, 53, 53,.06); box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.dcf-card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,.4); box-shadow: 0 28px 46px -22px rgba(53, 53, 53,.26); }
.dcf-card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--charcoal); color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.dcf-card__icon svg, .dcf-card__icon i { width: 24px; height: 24px; }
.dcf-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.dcf-card p { color: var(--muted); font-size: .94rem; }
.dcf-card__num {
  position: absolute; top: 22px; right: 24px; font-family: var(--font-display); font-size: 1.6rem; color: rgba(53, 53, 53,.09);
  font-weight: 600;
}

.dcf-section-foot { display: flex; justify-content: center; margin-top: 46px; }

/* Resource cards: compact style, gold left rule */
.dcf-resource-card {
  border-left: 3px solid var(--gold);
}
.dcf-resource-card .dcf-card__icon {
  background: rgba(201,162,39,.12); color: var(--gold);
}

/* ==========================================================================
   How it works — connected process timeline
   ========================================================================== */
.dcf-steps__list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0 18px;
  position: relative;
  counter-reset: none;
  align-items: stretch;
}
.dcf-steps__list[data-steps="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dcf-steps__list[data-steps="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dcf-steps__list[data-steps="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }

/* gold connector line behind markers */
.dcf-steps__list::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,.55), rgba(201,162,39,.55), transparent);
  z-index: 0;
}

.dcf-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6px;
  height: 100%;
}

.dcf-step__marker {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.dcf-step__ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid rgba(201,162,39,.45);
  box-shadow: 0 12px 28px -14px rgba(53,53,53,.35);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.dcf-step:hover .dcf-step__ring {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 18px 34px -14px rgba(201,162,39,.45);
}

.dcf-step__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dcf-step__icon svg { width: 26px; height: 26px; }

.dcf-step__num {
  position: absolute;
  right: -6px;
  bottom: -4px;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  box-shadow: 0 8px 18px -8px rgba(201,162,39,.75);
  border: 2px solid #EFEBE3;
}

.dcf-step__body {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 18px 24px;
  border: 1px solid rgba(53,53,53,.06);
  box-shadow: 0 16px 40px -28px rgba(53,53,53,.4);
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.dcf-step:hover .dcf-step__body {
  transform: translateY(-4px);
  border-color: rgba(201,162,39,.28);
  box-shadow: 0 24px 44px -26px rgba(53,53,53,.45);
}

.dcf-step h3,
.dcf-step__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.2rem + .4vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--charcoal);
  white-space: nowrap;
}
.dcf-step p,
.dcf-step__body p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .dcf-steps__list,
  .dcf-steps__list[data-steps="4"],
  .dcf-steps__list[data-steps="3"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }
  .dcf-steps__list::before { display: none; }
}
@media (max-width: 640px) {
  .dcf-steps__list,
  .dcf-steps__list[data-steps="4"],
  .dcf-steps__list[data-steps="3"],
  .dcf-steps__list[data-steps="2"] {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 420px;
    margin-inline: auto;
  }
  .dcf-steps__list::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 35px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(201,162,39,.15), rgba(201,162,39,.55), rgba(201,162,39,.15));
  }
  .dcf-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    padding: 0;
    height: auto;
  }
  .dcf-step__marker {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .dcf-step__body {
    flex: 1;
    align-items: flex-start;
    text-align: left;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.dcf-testimonials { position: relative; }
.dcf-testimonial-wrap { position: relative; margin-top: 46px; }
.dcf-testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.dcf-testimonial-track::-webkit-scrollbar { display: none; }
.dcf-testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  max-width: 100%;
  background: var(--charcoal-2);
  border-radius: var(--radius);
  padding: 34px 28px;
  color: rgba(255,255,255,.88);
  position: relative;
  border: 1px solid rgba(201,162,39,.16);
  box-sizing: border-box;
}
.dcf-testimonial-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: rgba(201,162,39,.35);
  position: absolute;
  top: 6px;
  left: 22px;
  line-height: 1;
  pointer-events: none;
}
.dcf-testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.dcf-testimonial-foot { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.dcf-testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold-gradient); color: var(--charcoal);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display);
  flex-shrink: 0;
}
.dcf-testimonial-author { font-weight: 600; color: var(--white); font-size: .95rem; }
.dcf-testimonial-role { font-size: .82rem; color: rgba(255,255,255,.55); }

.dcf-testimonial-nav { display: flex; gap: 10px; margin-top: 28px; justify-content: center; }
.dcf-testimonial-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: transparent;
  color: var(--white); display: inline-flex; align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.dcf-testimonial-nav button:hover { background: rgba(201,162,39,.15); border-color: var(--gold); }
.dcf-testimonial-nav svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .dcf-testimonial-card { flex-basis: calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .dcf-testimonial-card { flex-basis: min(100%, 88vw); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.dcf-faq {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 0% 20%, rgba(201,162,39,.1), transparent 55%),
    radial-gradient(ellipse 55% 45% at 100% 80%, rgba(53,53,53,.05), transparent 50%),
    linear-gradient(180deg, #F3EFE6 0%, #EFEBE3 45%, #F7F5F2 100%);
  overflow: hidden;
}
.dcf-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(201,162,39,.035) 11px,
      rgba(201,162,39,.035) 12px
    );
  pointer-events: none;
  opacity: .7;
}
.dcf-faq > .container { position: relative; z-index: 1; }

.dcf-faq__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
  margin-top: 46px;
}

.dcf-faq__aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.dcf-faq__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}
.dcf-faq__highlights li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(53,53,53,.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px -22px rgba(53,53,53,.45);
  flex: 1 1 0;
}
.dcf-faq__hl-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,.12);
  color: var(--gold);
}
.dcf-faq__hl-icon svg { width: 18px; height: 18px; }
.dcf-faq__highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}
.dcf-faq__highlights span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}

.dcf-faq__call {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 18px 36px -20px rgba(53,53,53,.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dcf-faq__call:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -18px rgba(53,53,53,.6);
}
.dcf-faq__call-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--charcoal);
}
.dcf-faq__call-icon svg { width: 20px; height: 20px; }
.dcf-faq__call strong {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .02em;
}
.dcf-faq__call em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.dcf-faq__list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  justify-content: flex-start;
}
.dcf-faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(53,53,53,.07);
  box-shadow: 0 14px 36px -26px rgba(53,53,53,.4);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  flex: 0 0 auto;
}
.dcf-faq-item:hover {
  border-color: rgba(201,162,39,.28);
  box-shadow: 0 18px 40px -24px rgba(53,53,53,.45);
}
.dcf-faq-item[open] {
  border-color: rgba(201,162,39,.4);
  box-shadow: 0 20px 44px -22px rgba(201,162,39,.35);
}
.dcf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px 18px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.dcf-faq-item summary::-webkit-details-marker { display: none; }
.dcf-faq-item__num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 2ch;
  letter-spacing: .02em;
  line-height: 1;
}
.dcf-faq-item__q {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--charcoal);
}
.dcf-faq-item .plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,162,39,.12);
  color: var(--gold);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.dcf-faq-item .plus svg { width: 15px; height: 15px; }
.dcf-faq-item[open] .plus {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--charcoal);
}
.dcf-faq-body {
  padding: 0 18px 20px 52px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
  border-top: 1px solid rgba(53,53,53,.06);
  padding-top: 14px;
}

@media (max-width: 900px) {
  .dcf-faq__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dcf-faq__aside,
  .dcf-faq__list,
  .dcf-faq__highlights {
    min-height: 0;
    flex: none;
  }
  .dcf-faq__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 560px) {
  .dcf-faq__highlights { grid-template-columns: 1fr; }
  .dcf-faq-body { padding-left: 18px; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.dcf-cta-band {
  background: var(--charcoal); border-radius: 22px; padding: clamp(36px, 5vw, 56px); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.dcf-cta-band::before {
  content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(201,162,39,.22), transparent 60%);
}
.dcf-cta-band__text { position: relative; z-index: 1; max-width: 560px; }
.dcf-cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.dcf-cta-band p { color: rgba(255,255,255,.72); margin-top: 12px; }
.dcf-cta-band__actions { position: relative; z-index: 1; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Contact section / form
   ========================================================================== */
.dcf-contact__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: flex-start; }
.dcf-contact__list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.dcf-contact-item {
  display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: var(--white);
  border-radius: var(--radius-sm); border: 1px solid rgba(53, 53, 53,.06); transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.dcf-contact-item:hover { border-color: rgba(201,162,39,.4); transform: translateX(4px); }
.dcf-contact-item__icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--charcoal); color: var(--gold-light);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dcf-contact-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  color: var(--gold-light);
}
.dcf-contact-item__body { min-width: 0; }
.dcf-contact-item__body strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 600;
}
.dcf-contact-item__body span,
.dcf-contact-item__body a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  word-break: break-word;
}
.dcf-contact-item__body a:hover { color: var(--gold); }

.dcf-form-panel {
  background: var(--white); border-radius: var(--radius); padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-soft); border: 1px solid rgba(53, 53, 53,.05);
}
.dcf-form-panel h2, .dcf-form-panel h3 { margin-bottom: 8px; }
.dcf-form-note { color: var(--muted); font-size: .92rem; margin-bottom: 22px; }
.dcf-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.dcf-field label { font-size: .84rem; font-weight: 600; color: var(--charcoal-3); }
.dcf-field input, .dcf-field textarea {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid rgba(53, 53, 53,.12);
  background: #FBFAF8; transition: border-color .25s var(--ease), background .25s var(--ease);
  font-size: .95rem;
}
.dcf-field input:focus, .dcf-field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.dcf-field textarea { resize: vertical; min-height: 120px; }
.dcf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dcf-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.dcf-map { border-radius: var(--radius); overflow: hidden; margin-top: 40px; box-shadow: var(--shadow-card); }
.dcf-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.dcf-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.dcf-gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1/1; cursor: pointer;
  background: var(--charcoal-3);
}
.dcf-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dcf-gallery-item:hover img { transform: scale(1.08); }
.dcf-gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(53, 53, 53,.75));
  opacity: 0; transition: opacity .3s var(--ease);
}
.dcf-gallery-item:hover::after { opacity: 1; }
.dcf-gallery-cap {
  position: absolute; left: 14px; bottom: 12px; color: var(--white); font-size: .88rem; font-weight: 600;
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 1;
}
.dcf-gallery-item:hover .dcf-gallery-cap { opacity: 1; transform: translateY(0); }
.dcf-gallery-item--wide { grid-column: span 2; }
.dcf-gallery-empty { text-align: center; padding: 60px 20px; color: var(--muted); background: var(--white); border-radius: var(--radius); margin-top: 44px; }

.dcf-videos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.dcf-video-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 16/9; }
.dcf-video-frame iframe { width: 100%; height: 100%; border: 0; }
.dcf-video-title { margin-top: 12px; font-weight: 600; color: var(--charcoal); }

.dcf-lightbox {
  position: fixed; inset: 0; z-index: 900; background: rgba(10,11,13,.92); display: flex; align-items: center; justify-content: center;
  padding: 30px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.dcf-lightbox.is-open { opacity: 1; visibility: visible; }
.dcf-lightbox__img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 6px; box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.dcf-lightbox__close, .dcf-lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: var(--white);
  border-radius: 50%; width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease);
}
.dcf-lightbox__close:hover, .dcf-lightbox__nav:hover { background: rgba(201,162,39,.25); border-color: var(--gold); }
.dcf-lightbox__close { top: 24px; right: 24px; }
.dcf-lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.dcf-lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }
.dcf-lightbox__close svg, .dcf-lightbox__nav svg { width: 20px; height: 20px; }

/* ==========================================================================
   About page specific
   ========================================================================== */
.dcf-story__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.dcf-story__grid--reverse .dcf-story__visual { order: 2; }
.dcf-story__grid--reverse .dcf-story__copy { order: 1; }
.dcf-story__visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.dcf-story__visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.dcf-story__copy p + p { margin-top: 16px; color: var(--muted); }

.dcf-check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.dcf-check-item { display: flex; gap: 14px; align-items: flex-start; }
.dcf-check-item__ic {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(201,162,39,.14); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.dcf-check-item__ic svg, .dcf-check-item__ic i { width: 15px; height: 15px; }
.dcf-check-item strong { display: block; font-size: .98rem; color: var(--charcoal); margin-bottom: 2px; }
.dcf-check-item span { font-size: .88rem; color: var(--muted); }

.dcf-approach {
  background: var(--charcoal); border-radius: 22px; padding: clamp(32px, 4vw, 54px); color: rgba(255,255,255,.85);
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.dcf-approach h2 { color: var(--white); }
.dcf-approach p { color: rgba(255,255,255,.7); margin-top: 14px; }
.dcf-approach__list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.dcf-approach__item { display: flex; gap: 14px; align-items: flex-start; }
.dcf-approach__check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold-gradient); color: var(--charcoal); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; margin-top: 2px;
}
.dcf-approach__check svg { width: 14px; height: 14px; }
.dcf-approach__item strong { color: var(--white); display: block; font-size: .96rem; margin-bottom: 2px; }
.dcf-approach__item span { color: rgba(255,255,255,.65); font-size: .88rem; }

.dcf-trust-visual { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.dcf-trust-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.dcf-trust-badge {
  position: absolute; bottom: 22px; left: 22px; background: var(--white); border-radius: var(--radius-sm);
  padding: 16px 20px; box-shadow: var(--shadow-card);
}
.dcf-trust-badge .label { display: block; font-size: 1.4rem; font-family: var(--font-display); font-weight: 700; color: var(--gold); }
.dcf-trust-badge .text { display: block; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

/* ==========================================================================
   Footer
   ========================================================================== */
.dcf-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding-top: 70px; }
.dcf-footer__top { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 50px; }
.dcf-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.dcf-footer__brand p { margin-top: 18px; font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.58); max-width: 320px; }
.dcf-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.dcf-footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: inline-flex;
  align-items: center; justify-content: center; transition: background .25s var(--ease), border-color .25s var(--ease);
}
.dcf-footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.dcf-footer__social svg, .dcf-footer__social i { width: 17px; height: 17px; }
.dcf-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .84rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 18px; }
.dcf-footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.dcf-footer__col a { font-size: .92rem; color: rgba(255,255,255,.62); transition: color .2s var(--ease); }
.dcf-footer__col a:hover { color: var(--gold-light); }
.dcf-footer__contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; margin-bottom: 12px; color: rgba(255,255,255,.62); }
.dcf-footer__contact-item svg, .dcf-footer__contact-item i { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.dcf-footer__contact-item a:hover { color: var(--gold-light); }
.dcf-footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-block: 24px; font-size: .82rem; color: rgba(255,255,255,.45); }
.dcf-footer__credit a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color .25s var(--ease);
}
.dcf-footer__credit a:hover { color: var(--gold); }

/* ==========================================================================
   Toast
   ========================================================================== */
.dcf-toast {
  position: fixed; bottom: 28px; right: 28px; background: var(--charcoal); color: var(--white); padding: 16px 22px;
  border-radius: var(--radius-sm); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-soft);
  transform: translateY(30px); opacity: 0; visibility: hidden; transition: all .35s var(--ease); z-index: 999;
  border: 1px solid rgba(201,162,39,.35); max-width: 340px;
}
.dcf-toast.show { transform: translateY(0); opacity: 1; visibility: visible; }
.dcf-toast svg, .dcf-toast i { color: var(--gold-light); flex-shrink: 0; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1.is-visible { transition-delay: .1s; }
.reveal-d2.is-visible { transition-delay: .2s; }
.reveal-d3.is-visible { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dcf-hero__rule { animation: none; transform: scaleX(1); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .dcf-values__grid { grid-template-columns: repeat(2, 1fr); }
  .dcf-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .dcf-split, .dcf-story__grid, .dcf-approach { grid-template-columns: 1fr; }
  .dcf-split__visual, .dcf-story__visual { order: -1; max-width: 460px; }
  .dcf-contact__grid { grid-template-columns: 1fr; }
  .dcf-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .dcf-nav__link { font-size: 1.05rem; }
  h1 { font-size: clamp(2.3rem, 7vw, 3.2rem); }
  .dcf-hero { min-height: auto; padding-bottom: 60px; }
  .dcf-hero__meta { gap: 24px; }
  .dcf-page-hero { padding-top: 130px; padding-bottom: 60px; }
}

@media (max-width: 720px) {
  .dcf-values__grid, .dcf-cards-grid { grid-template-columns: 1fr; }
  .dcf-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .dcf-gallery-item--wide { grid-column: span 1; }
  .dcf-videos__grid { grid-template-columns: 1fr; }
  .dcf-form-row { grid-template-columns: 1fr; }
  .dcf-cta-band { flex-direction: column; align-items: flex-start; }
  .dcf-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dcf-footer__brand { grid-column: 1 / -1; }
  .dcf-lightbox__prev, .dcf-lightbox__next { width: 40px; height: 40px; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .dcf-footer__grid { grid-template-columns: 1fr; }
  .dcf-hero__actions .btn, .dcf-cta-band__actions .btn { width: 100%; }
  .dcf-hero__actions, .dcf-cta-band__actions { flex-direction: column; }
}
