/* ThatsKrispy — contact page (custom shell around the original working form).
   Same design language as the Web Design page: paper #f3f2ee, cream #fffdf8,
   taupe #6b5d4f, ink #232323, LTC Caslon. */

.tkc-hero, .tkc-main {
  font-family: "LTC Caslon", Georgia, serif;
  color: #232323;
}
.tkc-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }

.tkc-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: #d92323 !important;
  margin: 0 0 0.8rem;
}
.tkc-hero { background: #f3f2ee; padding: clamp(1.8rem, 3.5vw, 2.8rem) 0 clamp(1rem, 2vw, 1.5rem); }
.tkc-hero-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: end;
}
@media (max-width: 860px) { .tkc-hero-row { grid-template-columns: 1fr; gap: 0.8rem; } }
.tkc-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
.tkc-h1 em { font-style: italic; color: #d92323; }
.tkc-lede { font-size: 1.08rem; line-height: 1.6; color: #454545; margin: 0 0 0.35rem; }

.tkc-main { background: #f3f2ee; padding: clamp(1.2rem, 3vw, 2.2rem) 0 clamp(3rem, 6vw, 5rem); }
.tkc-cols {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: start;
}
@media (max-width: 991px) { .tkc-cols { grid-template-columns: 1fr; } }

/* studio panel */
.tkc-panel {
  background: #fffdf8;
  border: 1px solid #ded8cb;
  position: sticky;
  top: 1.4rem;
  overflow: hidden;
}
@media (max-width: 991px) { .tkc-panel { position: static; } }
.tkc-photo { aspect-ratio: 4 / 3; overflow: hidden; background: #e8e4da; }
.tkc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tkc-panel-body { padding: 1.4rem 1.5rem 1.6rem; }
.tkc-phone {
  display: block;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: #232323 !important;
  text-decoration: none;
  margin: 0.2rem 0 0.15rem;
}
.tkc-phone:hover { color: #d92323 !important; }
.tkc-mail {
  display: block;
  font-size: 1.05rem;
  color: #6f6a60 !important;
  text-decoration: none;
  border-bottom: 1px solid #d9d4c8;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}
.tkc-mail:hover { color: #232323 !important; }
.tkc-promise { font-size: 0.95rem; line-height: 1.65; color: #55503f; margin: 0 0 1.1rem; }
.tkc-links { display: flex; flex-wrap: wrap; gap: 0.45rem 1.1rem; }
.tkc-links a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  color: #6f6a60 !important;
  text-decoration: none;
  border-bottom: 1px solid #d9d4c8;
  padding-bottom: 2px;
}
.tkc-links a:hover { color: #232323 !important; border-color: #232323; }

/* form card */
.tkc-form {
  background: #fffdf8;
  border: 1px solid #ded8cb;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.tkc-form-heading { font-size: 1.35rem; margin: 0 0 1.4rem; }

/* restyle the original Pixieset fields inside the card */
.tkc-form .contact-form-field__input-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem !important;
  color: #6f6a60 !important;
}
.tkc-form .contact-form-field__input {
  background-color: #f6f4ee !important;
  height: auto !important;
  min-height: 2.9rem;
  box-sizing: border-box !important;
  border: 1px solid #ded8cb !important;
  border-radius: 0 !important;
  color: #232323 !important;
  font-family: "LTC Caslon", Georgia, serif !important;
  font-size: 1rem !important;
  padding: 0.7rem 0.85rem !important;
  transition: border-color 0.25s, background 0.25s;
}
.tkc-form .contact-form-field__input:focus {
  border-color: #232323 !important;
  background-color: #fffdf8 !important;
  outline: none !important;
  box-shadow: none !important;
}
.tkc-form .form-group { margin-bottom: 1.15rem; }
.tkc-form .contact-form-field__radio-container { display: inline-flex; align-items: center; margin-right: 1.4rem; }
.tkc-form .contact-form-field__radio { accent-color: #d92323; width: 1rem; height: 1rem; }
.tkc-form .contact-form-field__radio-container label { margin: 0 0 0 0.45rem; font-size: 1rem; }
.tkc-form .contact-form-field__error-message { color: #a13c2f !important; font-size: 0.72rem; }

.tkc-form .contact-form-wrapper__submit-btn {
  background: #232323 !important;
  color: #fffdf8 !important;
  border: 1px solid #232323 !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem !important;
  padding: 1rem 2.1rem !important;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.tkc-form .contact-form-wrapper__submit-btn:hover {
  background: #d92323 !important;
  border-color: #d92323 !important;
}
.tkc-form .contact-form-wrapper__submit-btn:focus-visible {
  outline: 2px solid #d92323;
  outline-offset: 3px;
}
/* theme paints .button__text ink (#232323) via .color_scheme-2 ... .button_style-3,
   which vanishes on our ink button; it also draws an ink underline ::before */
.tkc-form .contact-form-wrapper__submit-btn .button__text {
  color: #fffdf8 !important;
  padding-bottom: 0 !important;
}
.tkc-form .contact-form-wrapper__submit-btn .button__text::before,
.tkc-form .contact-form-wrapper__submit-btn .button__text::after {
  display: none !important;
}

/* entrance */
.tkc-rise { opacity: 0; transform: translateY(16px); animation: tkcRise 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards; animation-delay: calc(var(--tkc-d, 0) * 90ms); }
@keyframes tkcRise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .tkc-rise { opacity: 1; transform: none; animation: none; } }
html[data-a11y-motion="reduced"] .tkc-rise { opacity: 1; transform: none; animation: none; }

.tkc-form textarea.contact-form-field__input { min-height: 8rem; }

/* theme sets background-color:transparent!important at (0,2,1); outrank it */
.tkc-form div.element-contact-form-field .contact-form-field__input {
  background-color: #f6f4ee !important;
}
.tkc-form div.element-contact-form-field .contact-form-field__input:focus {
  background-color: #fffdf8 !important;
}
