/* Standalone help page. Shared brand styles and the main site remain unchanged. */
.service-help-page {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
}
.service-help-page :focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 5px;
}
.help-skip {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  transform: translateY(-200%);
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
}
.help-skip:focus { transform: translateY(0); }
.help-header,
.help-main,
.help-footer {
  width: min(1180px, calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}
.help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  border-bottom: 1px solid var(--line);
}
.help-logo { flex-shrink: 0; }
.help-logo img { width: 154px; height: auto; }
.help-header nav { display: flex; gap: 24px; flex-wrap: wrap; }
.help-header nav a,
.help-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-size: 16px;
}
.help-header nav a:hover,
.help-footer a:hover { color: var(--violet); text-decoration: underline; }
.help-main { padding-block: clamp(48px, 7vw, 92px) 72px; }
.help-intro { max-width: 820px; margin-bottom: 50px; }
.help-eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-family: var(--section-label);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .025em;
}
.help-intro h1 { margin: 0 0 24px; font-size: clamp(48px, 7vw, 88px); }
.help-intro .p { margin: 0; max-width: 58ch; }
.help-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
}
.help-request { min-width: 0; }
.help-request h2,
.help-contact h2 {
  margin: 0 0 16px;
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.15;
}
.help-request > p,
.help-contact > p { margin: 0 0 24px; color: var(--body); }
.help-notice {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--violet);
  background: var(--lav);
}
.help-notice h3 { margin: 0 0 6px; font-size: 18px; font-weight: 600; }
.help-notice p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--body); }
.help-form-actions { display: flex; align-items: flex-start; flex-direction: column; gap: 14px; }
.help-form-actions .btn { min-height: 56px; height: auto; padding-block: 15px; }
.help-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 16px;
}
.help-form-panel { margin-top: 24px; scroll-margin-top: 24px; }
.help-form-panel h3 { margin: 0 0 12px; font-size: 24px; font-weight: 500; }
.help-form-fallback { color: var(--body); font-size: 15px; margin: 0 0 16px; }
.help-form-frame {
  display: block;
  width: 100%;
  height: 1120px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.help-contact { padding: clamp(24px, 3vw, 36px); border-radius: 20px; background: var(--lav); }
.help-contact .help-eyebrow { margin-bottom: 16px; color: var(--violet); }
.help-contact h2 { font-size: 29px; }
.help-contact dl { margin: 0; }
.help-contact dl > div { padding-block: 20px; border-top: 1px solid var(--line); }
.help-contact dt { color: var(--body); font-size: 14px; margin-bottom: 5px; }
.help-contact dd { margin: 0; font-size: 17px; line-height: 1.5; }
.help-contact dd a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.help-contact dd a:hover { color: var(--violet); }
.help-contact .help-contact-note { margin: 8px 0 0; font-size: 14px; line-height: 1.6; }
.help-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  padding-inline: 0;
  background: var(--paper);
  color: var(--body);
  font-size: 15px;
}
.help-footer p { margin: 0; }
@media (max-width: 760px) {
  .help-header { min-height: 88px; gap: 18px; }
  .help-logo img { width: 124px; }
  .help-header nav { gap: 4px 18px; justify-content: flex-end; }
  .help-header nav a { font-size: 14px; }
  .help-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .help-intro { margin-bottom: 38px; }
  .help-form-frame { height: 1220px; }
  .help-footer { align-items: flex-start; flex-direction: column; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-help-page *,
  .service-help-page *::before,
  .service-help-page *::after { transition: none !important; scroll-behavior: auto !important; }
}
