/* ============================================================
   page.css — shared layout for content pages
   (how-it-works, faq, rental-terms, contact)
============================================================ */

.page {
  padding: var(--s-7) 0 var(--s-9);
}

.page__head {
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}

.page__kicker {
  text-transform: uppercase;
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: var(--s-3);
}

.page__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: var(--s-4);
  color: var(--ink);
}

.page__sub {
  font-size: var(--t-body-lg);
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.5;
}

.page__section {
  padding: var(--s-7) 0;
  border-bottom: 1px solid var(--border);
}
.page__section:last-child { border-bottom: none; }

.page__section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.0;
  letter-spacing: 0.005em;
  margin-bottom: var(--s-4);
  color: var(--ink);
}

.page__section h3 {
  font-size: var(--t-h3);
  font-weight: 700;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-2);
}

.page__section p {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: var(--s-4);
  max-width: 70ch;
}

.page__section p + p { margin-top: -8px; }

.page__section strong { color: var(--ink); font-weight: 600; }

.page__section a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page__section a:hover { color: var(--ink); }

/* ============================================================
   Numbered steps (how-it-works)
============================================================ */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  list-style: none;
  padding: 0;
}

@media (min-width: 700px) {
  .steps { grid-template-columns: 1fr 1fr; }
}

.step {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: var(--s-2);
}

.step h3 {
  font-size: var(--t-h3);
  font-weight: 700;
  margin: 0 0 var(--s-2) 0;
  color: var(--ink);
}

.step p {
  font-size: var(--t-body);
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   FAQ — native <details>/<summary>
============================================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: var(--s-3);
}

.faq__item {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  position: relative;
  transition: background-color 0.15s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--paper-3); }

.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand);
  line-height: 1;
  margin-left: var(--s-3);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item-body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--ink-muted);
  font-size: var(--t-body);
  line-height: 1.6;
}
.faq__item-body p { margin: 0 0 var(--s-3); }
.faq__item-body p:last-child { margin-bottom: 0; }

/* ============================================================
   Venue notice — repeating callout
============================================================ */

.venue-note {
  background: var(--paper-3);
  border-left: 3px solid var(--brand);
  border-radius: var(--r);
  padding: var(--s-4) var(--s-5);
  font-size: var(--t-sm);
  color: var(--ink-muted);
  margin-top: var(--s-5);
}
.venue-note strong { color: var(--ink); display: block; margin-bottom: var(--s-1); }

/* ============================================================
   Contact form
============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  font-weight: 400;
  padding: 12px 14px;
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgb(249 115 22 / 0.12);
}

.contact-form button {
  background: var(--brand);
  color: #ffffff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: var(--t-body);
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.15s ease;
}
.contact-form button:hover { background: var(--brand-deep); }

.contact-info {
  background: var(--paper-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.contact-info h3 {
  font-size: var(--t-body-lg);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.contact-info p { color: var(--ink-muted); font-size: var(--t-sm); margin-bottom: var(--s-3); }
.contact-info a {
  display: block;
  color: var(--brand-deep);
  font-weight: 600;
  font-size: var(--t-body);
  margin-bottom: var(--s-2);
}

.contact-status {
  font-size: var(--t-sm);
  font-weight: 600;
  min-height: 1.4em;
}
.contact-status--ok { color: var(--success); }
.contact-status--err { color: var(--danger); }
