/* =========================
   DESIGN SECTOR - Footer CTA
   Unique Prefix: dsf-
   ========================= */

.dsf-section {
  /* theme variables (default = dark) */
  --dsf-bg: #000;
  --dsf-text: #fff;
  --dsf-muted: rgba(255, 255, 255, 0.72);

  --dsf-watermark: rgba(255, 255, 255, 0.10);

  --dsf-cta-bg: #f2f2f2;
  --dsf-cta-text: #111;
  --dsf-cta-ring: rgba(0, 0, 0, 0.22);

  --dsf-social-bg: #fff;
  --dsf-social-fg: #111;

  --dsf-min-h: 100vh;

  background: var(--dsf-bg);
  color: var(--dsf-text);
  min-height: var(--dsf-min-h);
  position: relative;
  overflow: hidden;
}

.dsf-section.dsf--light {
  --dsf-bg: #fff;
  --dsf-text: #000;
  --dsf-muted: rgba(0, 0, 0, 0.72);

  --dsf-watermark: rgba(0, 0, 0, 0.06);

  --dsf-cta-bg: #b9b9b9;
  --dsf-cta-text: #fff;
  --dsf-cta-ring: rgba(255, 255, 255, 0.38);

  --dsf-social-bg: #000;
  --dsf-social-fg: #fff;
}

/* layout */
.dsf-inner {
  min-height: var(--dsf-min-h);
  padding-top: clamp(56px, 7vh, 90px);
  padding-bottom: 42px;
  display: flex;
  flex-direction: column;
}

.dsf-hero {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 18px;
    gap: 150px;
    margin-top: 0;
}

/* watermark */
.dsf-section::before {
    content: attr(data-watermark);
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--dsf-watermark);
    font-size: clamp(110px, 16vw, 320px);
    line-height: 0.9;
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}
/* .dsf-hero::before {
  content: attr(data-watermark);
  position: absolute;
  inset: 0; 
  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dsf-watermark);

  font-size: clamp(90px, 14vw, 320px);
  line-height: 0.9;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
} */


/* title */
.dsf-title {
  z-index: 2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(36px, 4.8vw, 54px);
  line-height: 0.95;
  margin: 0 0 22px 0;
}

/* button */
.dsf-cta {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 27px;
  height: 32px;
  border-radius: 5px;
  background: var(--dsf-cta-bg);
  color: var(--dsf-cta-text);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
  opacity: 0.5;
}

.dsf-cta:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--dsf-cta-ring);
}

.dsf-ctaIcon {
width: 14px;
    height: 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    color: #000000 !important;
}


.dsf-ctaIcon svg {
    width: 9px;
    height: 9px;
    fill: #000;
    stroke: #000;
    display: block;
}

/* paragraph */
.dsf-desc {
  z-index: 2;
  max-width: 800px;
  /* margin: 22px auto 0 auto; */
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: var(--dsf-muted);
}

/* bottom */
.dsf-bottom {
  z-index: 2;
  padding-top: 12px;
}

.dsf-socialRow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dsf-socialBtn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--dsf-social-bg);
  color: var(--dsf-social-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.dsf-socialBtn svg {
  width: 18px;
  height: 18px;
}

.dsf-contactLink {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
  font-size: 13px;
  color: var(--dsf-text);
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 0.5px;
}

.dsf-copy,
.dsf-made {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 10px;
  color: var(--dsf-muted);
}

.dark-logo-icon {
    filter: brightness(10) invert(1);
    height: 32px;
    width: 32px;
    margin-bottom: 2rem;
}

.light-logo-icon{
    filter: brightness(10) invert(1);
    height: 32px;
    width: 32px;
    margin-bottom: 2rem;
}




/* mobile tuning */
@media (max-width: 360px) {
  .dsf-section::before {
    top: 44% !important;
    left: 50%;
    letter-spacing: 0;
    font-size: 55px !important;
  }
}

@media (max-width: 430px) {
  .dsf-section::before {
    top: 50%;
    width: 140%;
    font-size: 64px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 575.98px) {
  .dsf-section::before {
    top: 49%;
    width: 140%;
    font-size: 70px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 450px) {
    .dsf-section::before {
        top: 45%;
        letter-spacing: 0;
        font-size: 65px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

  .dsf-title {
    font-size: 38px;
    line-height: 0.92;
    margin-bottom: 16px;
  }

    .dsf-hero {
        gap: 35px;
        padding-top: 144px;
    }

  .dsf-desc {
    /* max-width: 320px; */
    max-width: unset;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    line-height: 1.2;
  }

  .dsf-socialBtn {
    width: 24px;
    height: 24px;
  }

  .dsf-made,
  .dsf-copy {
    font-size: 8px;
  }

  .dsf-contactLink {
    font-size: 11px;
        margin-top: 40px;
  }




  .dsf-cta {
    gap: 5px;
    padding: 10px;
    height: 30px;
    font-weight: 600;
    font-size: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06) inset;
    opacity: 0.5;
    /* margin-top: -6%; */
  }
}