/* =========================================================
   GET IN TOUCH SECTION
========================================================= */
.getInTouch {
  position: relative;
  box-sizing: border-box;
  background-color: #070f22;
  color: #fff;
     background-image: radial-gradient(circle at 1px 1px, #ffffff0d 1px, #0000 0);
    background-size: 24px 24px;
  padding: 112px 0px;
  border-top: 1px solid #ffffff0f;
  border-bottom: 1px solid #ffffff0f;
}

/* faint dot field */
.getInTouch::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 0
  );
  background-size: 24px 24px;
}

.getInTouch__inner {
  position: relative;
  z-index: 1;

  box-sizing: border-box;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(32px, 4.8vw, 80px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}

/* =========================================================
   LEFT COLUMN
========================================================= */
.getInTouch__left {
  min-width: 0;
}

/* Section Intro is built for light backgrounds — recolour here */
.getInTouch__headerSlot .section-title {
  color: #ffffff;
}

.getInTouch__headerSlot .section-title-highlight {
  color: #f07b2f;
}

.getInTouch__headerSlot .section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
}
.getInTouch__headerSlot .section-eyebrow {
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
  color: #f18943 !important;
}

.getInTouch__headerSlot .section-title {
  text-align: left;
  margin: 14px 0 28px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-family: var(--font-sans);
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.15;
}

/* --- Intro --- */
.getInTouch__intro {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  max-width: 54ch;
}

.getInTouch__intro p {
  margin: 0 0 12px;
}

.getInTouch__intro p:last-child {
  margin-bottom: 0;
}

/* --- Actions — reuses the Link component.
       Link is still a code component, so its island wrappers
       need flattening for the flex row to reach the buttons. --- */
.getInTouch__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;

  margin-top: clamp(32px, 4vw, 46px);
}
.getInTouch__actions .secondary-btn {
  margin-bottom: 2rem;
}
.getInTouch__actions > astro-slot,
.getInTouch__actions canvas-island {
  display: contents;
}

/* =========================================================
   PATHS COLUMN — reuses Commitment Card
========================================================= */
.getInTouch__paths {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
}

/* Path labels here are sentence-case white, not the mono
   uppercase Commitment Card renders elsewhere */
.getInTouch__paths .cmtCard__label {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #ffffff;
}
.getInTouch__paths .cmtCard__body{
  color: rgba(255, 255, 255, 0.6);
}
.getInTouch__paths .cmtCard{
  border-left: 2px solid #f18943;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .getInTouch__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 820px) {
  .getInTouch__headerSlot .section-title {
    margin: 0px 0 10px;
  }
  .getInTouch__intro {
    margin: 0 0 57px;
  }
  .getInTouch {
    padding: 60px 0px;
  }
  .getInTouch__inner {
    padding: 0 30px;
  }

  .getInTouch__actions {
    gap: 18px;
  }

  .getInTouch__paths {
    gap: 24px;
  }
}
