/* ===========================================================
   FOOTER CENTER COLUMN — force column layout
   =========================================================== */
.footer-col--center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}

/* ===========================================================
   THOMAS WEBDESIGN BUTTON (footer)
   =========================================================== */
.footer-webdesign-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(251,246,238,0.20);
  background: rgba(251,246,238,0.12);
  color: #FBF6EE;
  font-size: 12px;
  letter-spacing: 0.10em;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 250ms ease, transform 250ms ease;
  white-space: nowrap;
}
.footer-webdesign-btn:hover {
  background: rgba(251,246,238,0.22);
  transform: translateY(-2px);
}

/* ===========================================================
   THOMAS MODAL — webdesign contact
   =========================================================== */
.thomas-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2100;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 40px;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 280ms ease;
}
.thomas-modal.is-open {
  opacity: 1 !important;
  pointer-events: all !important;
}
.thomas-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.30);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  cursor: pointer;
}
.thomas-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: rgba(14, 20, 34, 0.78);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(120, 160, 220, 0.22);
  border-radius: 20px;
  padding: 32px 36px 30px;
  box-shadow:
    inset 0 1px 0 rgba(160,200,255,0.15),
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,0,0,0.20);
  transform: translateY(32px);
  transition: transform 380ms cubic-bezier(0.34, 1.46, 0.64, 1);
}
.thomas-modal.is-open .thomas-modal__card {
  transform: translateY(0);
}
.thomas-modal__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #7ab4ff;
  background: rgba(100,160,255,0.12);
  border: 1px solid rgba(100,160,255,0.25);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 14px;
}
.thomas-modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: #e8f0ff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.thomas-modal__text {
  font-size: 13.5px;
  color: rgba(200,215,240,0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}
.thomas-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a7bd5, #2558a8);
  color: #e8f4ff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(58,123,213,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.thomas-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58,123,213,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
}
.thomas-modal__cta svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}
.thomas-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(200,215,240,0.70);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.thomas-modal__close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.1) rotate(90deg);
}
.thomas-modal__close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
