/* ===== Short first-contact form (/start) =====
   Tokens, fonts, and .btn variants come from styles.css — this file only styles
   the page layout and form controls. No :root and no .btn redefinitions. */

.nav--solid {
  background: var(--alpine);
  border-bottom: 1px solid var(--mist);
}

/* ---------- Intro header ---------- */
.start-head {
  background: var(--alpine);
  padding: 56px clamp(24px, 5vw, 64px) 44px;
  border-bottom: 1px solid var(--mist);
}
.start-head__inner { max-width: 720px; margin: 0 auto; }

.eyebrow {
  display: block;
  color: var(--summit);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.start-head h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.03;
  color: var(--midnight);
  margin: 0;
}
.hero__divider {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--summit);
  margin: 24px 0 22px;
}
.start-head__copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ridge);
  max-width: 620px;
  margin: 0;
}

/* ---------- Form layout ---------- */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px clamp(20px, 5vw, 48px) 80px;
}
.contact {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 10px;
  padding: 32px clamp(20px, 4vw, 40px) 36px;
  box-shadow: 0 1px 2px rgba(18, 38, 58, 0.04);
}

.field { margin: 0; }
.field > label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--midnight);
  margin-bottom: 10px;
  line-height: 1.45;
}
.req { color: var(--summit); font-weight: 700; }
.help {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ridge);
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--midnight);
  background: var(--alpine);
  border: 1px solid #d7dee6;
  border-radius: 6px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
textarea { resize: vertical; line-height: 1.6; }
select { appearance: none; cursor: pointer; }

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--river);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 147, 168, 0.18);
}
input.invalid,
textarea.invalid,
.field--consent.invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}

/* ---------- Consent ---------- */
.field--consent {
  padding: 16px 18px;
  border: 1px solid var(--mist);
  border-radius: 8px;
  background: var(--alpine);
}
.opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--midnight);
  font-weight: 500;
  cursor: pointer;
}
.opt input { margin: 1px 0 0; width: 17px; height: 17px; accent-color: var(--midnight); flex: none; cursor: pointer; }

/* ---------- Actions / messages ---------- */
.form-actions { margin-top: 4px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  padding: 14px 18px;
  border-radius: 6px;
  background: #fbecea;
  border: 1px solid #e7b7b1;
  color: #8e2c20;
  font-size: 14.5px;
}

/* ---------- Success state ---------- */
.confirmation {
  text-align: center;
  max-width: 560px;
  margin: 8px auto 0;
  padding: 48px 28px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 10px;
}
.confirmation__mark svg { width: 72px; height: 72px; margin: 0 auto 8px; }
.confirmation h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--midnight);
  margin: 12px 0 12px;
}
.confirmation p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ridge);
  margin: 0 auto 28px;
  max-width: 420px;
}

/* ---------- Footer ---------- */
.site-footer__brand {
  background: var(--alpine);
  border-top: 1px solid var(--mist);
  text-align: center;
  padding: 36px 24px 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.footer-logo img { height: auto; width: auto; max-height: 200px; max-width: 90%; }
.footer-bar {
  background: var(--midnight);
  color: var(--summit);
  text-align: center;
  padding: 22px;
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 600;
}

