/* ── Interior page layout ───────────────────────────────────────── */
.page-hero {
  padding: clamp(64px, 8vw, 100px) 20px clamp(48px, 6vw, 72px);
  text-align: center;
}
.page-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(247, 242, 234, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}
.page-body {
  width: min(100% - 40px, 800px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) 0 clamp(72px, 9vw, 110px);
}

/* ── Prose (privacy policy) ─────────────────────────────────────── */
.prose h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--ink-strong);
  margin: 38px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; }
.prose p,
.prose li {
  color: rgba(247, 242, 234, 0.70);
  line-height: 1.82;
  font-size: 0.965rem;
}
.prose ul {
  padding-left: 1.4em;
  margin: 10px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose a { color: var(--mint); font-weight: 700; }
.prose a:hover { text-decoration: underline; }
.prose .last-updated {
  color: var(--muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-bottom: 36px;
}

/* ── Dark card ──────────────────────────────────────────────────── */
.interior-card {
  padding: clamp(24px, 4vw, 38px);
  background: var(--night-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ── Numbered steps ─────────────────────────────────────────────── */
.step-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0 16px;
  align-items: start;
  margin-bottom: 24px;
}
.step-item:last-child { margin-bottom: 0; }
.step-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: rgba(103, 223, 189, 0.12);
  border: 1px solid rgba(103, 223, 189, 0.28);
  border-radius: 50%;
  color: var(--mint);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.step-content p,
.step-content a {
  color: rgba(247, 242, 234, 0.65);
  font-size: 0.9rem;
  margin: 0;
}
.step-content a { color: var(--mint); font-weight: 700; }

/* ── Section eyebrow ─────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mint);
  margin: 0 0 18px;
}

/* ── FAQ accordion ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 56px; }
.faq-item {
  background: var(--night-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq-item[open] { border-color: rgba(103, 223, 189, 0.38); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-strong);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--mint);
  flex-shrink: 0;
  transition: transform 200ms ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 22px 20px;
  color: rgba(247, 242, 234, 0.65);
  font-size: 15px;
  line-height: 1.78;
}

/* ── Contact form ────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.2px;
}
input, select, textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(247, 242, 234, 0.28); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(103, 223, 189, 0.48);
  box-shadow: 0 0 0 3px rgba(103, 223, 189, 0.09);
  background: rgba(255, 255, 255, 0.07);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2367dfbd' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.05);
  padding-right: 40px;
  cursor: pointer;
}
textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.status {
  display: none;
  padding: 14px 18px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
  text-align: center;
}
.status.success {
  display: block;
  background: rgba(103, 223, 189, 0.08);
  border: 1px solid rgba(103, 223, 189, 0.28);
  color: var(--mint);
}
.status.error {
  display: block;
  background: rgba(255, 144, 111, 0.08);
  border: 1px solid rgba(255, 144, 111, 0.28);
  color: var(--coral);
}

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
}
