/* ============================================================
   THE THROUGHLINE — Reach Out Page Styles
   ============================================================ */

/* ============================================================
   PAGE HEADER — journey sketch right side
   ============================================================ */

.ro-page-header {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.ro-page-header__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(245, 240, 232, 0.85);
  margin-top: var(--space-lg);
  font-weight: 400;
  line-height: 1.5;
}

.ro-header-sketch {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(360px, 50vw, 720px);
  pointer-events: none;
  opacity: 0.38;
}

.ro-header-sketch__img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .ro-header-sketch {
    width: 220px;
    opacity: 0.15;
    right: -8%;
  }
}

/* ============================================================
   WATERMARK
   ============================================================ */

.ro-watermark {
  position: fixed;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 55vw, 700px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

.ro-watermark.watermark-visible { opacity: 0.35; }
.ro-watermark.watermark-hidden  { opacity: 0; }

@media (max-width: 900px) {
  .ro-watermark { display: none; }
}

.ro-watermark__img {
  width: 100%;
  height: auto;
}

/* ============================================================
   MAIN LAYOUT — form left, details right
   ============================================================ */

.ro-main {
  background-color: var(--cream);
}

.ro-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

@media (min-width: 768px) {
  .ro-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-4xl);
  }
}

/* ============================================================
   FORM COLUMN
   ============================================================ */

.ro-form-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.ro-form-intro {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.5;
}

/* Form */
.ro-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Field */
.ro-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.ro-field__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.ro-field__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--warm-gray-light);
  font-size: 0.75rem;
}

.ro-field__input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background-color: var(--white);
  border: 1.5px solid var(--cream-darker);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  transition: border-color var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.ro-field__input::placeholder {
  color: var(--warm-gray-pale);
}

.ro-field__input:focus {
  outline: none;
  border-color: var(--sepia);
  box-shadow: 0 0 0 3px rgba(139, 111, 78, 0.12);
}

.ro-field__textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* Submit button — centered */
.ro-form__submit {
  align-self: center;
  min-width: 160px;
}

/* ============================================================
   DETAILS COLUMN
   ============================================================ */

.ro-details-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  padding-top: var(--space-sm);
}

@media (min-width: 768px) {
  .ro-details-col {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-2xl));
  }
}

.ro-detail-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--cream-darker);
}

.ro-detail-block:last-of-type {
  border-bottom: none;
}

.ro-detail-block__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sepia);
}

.ro-detail-block__text {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.65;
}

/* Tagline at bottom of details */
.ro-details-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--sepia);
  margin-top: var(--space-lg);
  line-height: 1.4;
}

/* ============================================================
   LEGAL STRIP
   ============================================================ */

.ro-legal-strip {
  background-color: var(--cream-dark);
  border-top: 1px solid var(--cream-darker);
  padding-block: var(--space-xl);
}

.ro-legal-strip__text {
  font-size: 0.775rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.ro-legal-strip__crisis {
  font-size: 0.775rem;
  color: var(--warm-gray-light);
  line-height: 1.6;
}
