/* ==========================================================================
   Interpretive Somatics — CONTACT PAGE
   Isolated, Contact-only styles. Loaded only on contact.html, after style.css.

   Compositional identity: OPEN DOOR. The simplest, most intimate page on
   the site — a call-and-response hero (headline left, answer displaced
   right and lower), a form that sits directly on the page ground as a
   typeset correspondence document rather than a card, one authored
   editorial column of secondary information, and a single off-center
   closing line before the footer. No cards, no icon rows, no dark
   inversion; gold used only for the step numerals.
   ========================================================================== */

.contact-movement{ position:relative; }

/* -------------------------------------------------------------------------
   Header CTA fix (page-specific): on this page both the "Contact" nav
   link and the "Begin an Inquiry" CTA point to contact.html, so main.js's
   active-link matching (js/main.js) adds .is-active to both. The shared
   ".nav-desktop a.is-active" color rule then outranks ".nav-desktop .btn"
   by specificity, painting the button's text the same ink as its own
   background. This restores the button's intended color without touching
   shared markup or style.css.
   ------------------------------------------------------------------------- */
.nav-desktop .btn.is-active,
.nav-desktop .btn.is-active:hover{
  color: var(--bone);
}

/* -------------------------------------------------------------------------
   HERO — call and response
   ------------------------------------------------------------------------- */
.contact-hero{
  padding-top: clamp(8rem, 15vw, 10.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
@media (min-width: 900px){
  .contact-hero{ padding-bottom: clamp(2.7rem, 5.4vw, 4.1rem); }
}
.contact-hero__headline{
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(3rem, 7.6vw, 6rem);
  line-height: 1.03;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.contact-hero__line{ display: block; }

.contact-hero__response{
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-top: clamp(2rem, 5vw, 3rem);
}
@media (min-width: 761px){
  .contact-hero__response{
    margin-top: clamp(3rem, 7vw, 5rem);
    margin-left: clamp(0px, 34vw, 430px);
  }
}

/* -------------------------------------------------------------------------
   MAIN — form as document, secondary info as one authored column
   ------------------------------------------------------------------------- */
.contact-main{
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(5rem, 10vw, 7.5rem);
}
@media (min-width: 900px){
  .contact-main{ padding-top: clamp(0.9rem, 2.7vw, 1.8rem); }
}
.contact-layout{
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 7vw, 4.5rem);
}
@media (min-width: 900px){
  .contact-layout{
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: clamp(3rem, 6vw, 5.5rem);
    align-items: start;
  }
}

/* Form — no card, no shadow: understated hairline fields */
.contact-form .field{ margin-bottom: clamp(1.85rem, 3.2vw, 2.3rem); }
.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: .7rem .1rem .8rem;
}
.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .field select:focus{
  background: transparent;
  border-bottom-color: var(--gold);
}
.contact-form .field textarea{ min-height: 130px; }
.contact-form .field select{
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355504A' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right .2rem center;
  background-size: 15px;
  padding-right: 1.6rem;
}
.contact-form .btn{ margin-top: .5rem; }

/* Desktop-only: very slight increase in visual presence — the hairlines
   and message placeholder read a touch too faint at this width. */
@media (min-width: 900px){
  .contact-form .field input,
  .contact-form .field textarea,
  .contact-form .field select{
    border-bottom-color: rgba(28,24,18,.22);
  }
  .contact-form .field label{
    color: #4C463F;
  }
  .contact-form .field textarea::placeholder{
    color: #736D65;
    opacity: 1;
  }
}

/* Secondary info — one editorial column, deliberately uneven spacing */
.contact-info__block + .contact-info__block{
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}
.contact-info__block--steps{
  margin-top: clamp(3.5rem, 7.5vw, 5.25rem);
}

.contact-info__prompt{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 .7rem;
}
.contact-info__email{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: .25rem;
  transition: all .3s var(--ease);
}
.contact-info__email svg{ width: 13px; height: 13px; transition: transform .3s var(--ease); }
.contact-info__email:hover{ color: var(--gold-deep); border-color: var(--gold); }
.contact-info__email:hover svg{ transform: translateX(3px); }

.contact-info__heading{
  font-family: var(--serif);
  font-weight: 460;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 .6rem;
}
.contact-info__heading a{
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.contact-info__heading a:hover{ color: var(--gold-deep); border-color: var(--gold); }
.contact-info__place{
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.contact-info__quiet{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.contact-steps{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  margin: 1.2rem 0 0;
  padding: 0;
}
.contact-steps li{
  display: flex;
  gap: .9rem;
  align-items: baseline;
}
.contact-steps__num{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 440;
  color: var(--gold-deep);
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.5rem;
}
.contact-steps li span:last-child{
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   CLOSE — one off-center line, quiet tonal shift
   ------------------------------------------------------------------------- */
.contact-close{
  background: var(--bone-deep);
  padding-block: clamp(5rem, 10vw, 7.5rem);
}
.contact-close__statement{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 30ch;
  margin: 0;
}
@media (min-width: 761px){
  .contact-close__statement{
    max-width: 40ch;
    margin-left: clamp(0px, 35vw, 585px);
  }
  .contact-close__break{
    display: block;
    width: max-content;
    max-width: 90vw;
  }
}
