/* =========================================
   Contact CTA Section (contact-cta.*)
   Design tokens for this section only
   ========================================= */

/* ---- Fonts (use only provided assets) ---- */
@font-face {
  font-family: "Arizona Flare";
  src: url("../fonts/arizona_flare_300_normal_headings_h1-h6.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arizona Flare";
  src: url("../fonts/arizona_flare_300_italic_headings_h1-h6.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helveesti";
  src: url("../fonts/helveesti_400_normal_body_ui.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helveesti";
  src: url("../fonts/helveesti_400_italic_body_ui.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helveesti";
  src: url("../fonts/helveesti_700_normal_body_labels.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helveesti";
  src: url("../fonts/helveesti_700_italic_body_labels.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---- Section layout ---- */
.contact-cta {
  /* Outer band color from palette */
  background: #F8F2E9;
  

  --section-pad-block: 0;
}

.contact-cta__wrap {
  /* Single primary page container assumption */
  
  
  position: relative;

  /* Inner panel */
  background: #D7D1BD; /* same palette bg; framed via inset shadow for separation */
  border-radius: 0; /* matches flat edges in reference */
  padding: 60px 60px;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Decorative wave (provided SVG) */
.contact-cta__wave {
  position: absolute;
  left: -12%;
  top: -6%;
  height: 120%;
  width: auto;
  pointer-events: none;
  user-select: none;
}

/* ---- Content block ---- */
.contact-cta__content {
  margin-left: clamp(420px, 36vw, 560px); /* room for the wave on left */
  max-width: 820px;
}

/* Title */
.contact-cta__title {
  font-family: "Arizona Flare", serif;
  font-weight: 300;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #170B01;
  margin: 0 0 15px 0;
}

/* Description */
.contact-cta__desc {
  font-family: "Helveesti", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #170B01;
  margin: 0 0 15px 0;
}

/* Emphasis link inside copy */
.contact-cta__link {
  font-family: "Helveesti", sans-serif;
  font-weight: 400; /* labels weight as emphasis */
  color: #170B01;
  text-decoration: underline;
}
.contact-cta__link:hover,
.contact-cta__link:focus {
  box-shadow: inset 0 -0.14em 0 0 rgba(23, 11, 1, 0.28);
  outline: none;
}

/* CTA Button (pill) */
.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: #170B01;
  color: #F8F2E9; /* light-on-dark per palette */
  font-family: "Helveesti", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 2px 0 0 rgba(23, 11, 1, 0.9);
  gap: 3px;
}

.contact-cta__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 0 0 rgba(23, 11, 1, 0.9);
}

/* ---- Responsive tweaks ---- */
@media (max-width: 1024px) {
  .contact-cta__wrap { padding: 72px 48px; }
  .contact-cta__content { margin-left: clamp(280px, 40vw, 420px); }
}

@media (max-width: 768px) {
  .contact-cta__wrap { padding: 56px 24px; }
  .contact-cta__wave {
    left: -24%;
    top: -4%;
    height: 120%;
  }
  .contact-cta__content { margin-left: 0; }
  .contact-cta__title { font-size: 36px; }
  .contact-cta__btn { height: 56px; padding: 14px 24px; font-size: 16px; }
}

/* ---- Optional accent utilities for this section only (not global) ---- */
.contact-cta__accent--pink { color: #ECBDFB; }
.contact-cta__accent--yellow { color: #FDF18B; }
.contact-cta__accent--magenta { color: #AE1B74; }

@media (max-width: 430px) {
    .contact-cta__wave {
        display: none;
    }

    .contact-cta__btn {
        height: 40px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
}


