/* policy.css
 * Brand-styled cancellation-policy page. Matches the vocabulary of
 * the transactional emails and the manage-booking page: warm-clay
 * background, white card with subtle shadow, Alphabet Soup display
 * type, Nitti body type, Aktiv Grotesk for secondary text.
 */

body.page--policy {
  background: #f2ede6;
  color: #1a1a1a;
}

.policy {
  padding: 120px 24px 96px;
  display: flex;
  justify-content: center;
}

.policy__card {
  width: 100%;
  max-width: 720px;
  background: #ffffff;
  padding: 56px 64px;
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 6px 16px rgba(0, 0, 0, 0.06);
}


/* ── Header ── */

.policy__header {
  margin-bottom: 48px;
  border-bottom: 1px solid #f0e9e1;
  padding-bottom: 32px;
}

.policy__eyebrow {
  font-family: var(--font-family-nav, "aktiv-grotesk"), sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a5e43;
  margin: 0 0 12px;
  font-weight: 500;
}

.policy__title {
  font-family: var(--font-family-display, "alphabet-soup-pro"), "nitti", sans-serif;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  font-weight: 400;
  margin: 0 0 20px;
  color: #8a5e43;
}

.policy__lede {
  font-family: var(--font-family-body, "nitti"), sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0;
}


/* ── Sections ── */

.policy__section {
  margin: 0 0 48px;
}

.policy__section:last-of-type {
  margin-bottom: 32px;
}

.policy__h2 {
  font-family: var(--font-family-display, "alphabet-soup-pro"), "nitti", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #8a5e43;
  margin: 0 0 16px;
}

.policy__body {
  font-family: var(--font-family-body, "nitti"), sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0 0 16px;
}

.policy__body:last-child {
  margin-bottom: 0;
}

.policy__body strong {
  color: #1a1a1a;
}


/* ── Tier list ── */

.policy__tier-list {
  margin: 16px 0 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0e9e1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.policy__tier {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.policy__tier:last-child {
  border-bottom: 0;
}

.policy__tier-window {
  font-family: var(--font-family-nav, "aktiv-grotesk"), sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  font-weight: 500;
}

.policy__tier-window strong {
  color: #1a1a1a;
  font-weight: 600;
}

.policy__tier-outcome {
  font-family: var(--font-family-body, "nitti"), sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
}

.policy__tier-outcome strong {
  color: #8a5e43;
  font-weight: 600;
}

.policy__note {
  font-family: var(--font-family-nav, "aktiv-grotesk"), sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #555555;
  margin: 16px 0 0;
  font-style: italic;
}


/* ── Footer ── */

.policy__footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0e9e1;
}

.policy__updated {
  font-family: var(--font-family-nav, "aktiv-grotesk"), sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: #555555;
  margin: 0 0 8px;
}

.policy__contact {
  font-family: var(--font-family-body, "nitti"), sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  margin: 0;
}

.policy__contact a {
  color: #8a5e43;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ── Small screens ── */

@media (max-width: 720px) {
  .policy {
    padding: 96px 16px 64px;
  }
  .policy__card {
    padding: 36px 28px;
  }
  .policy__title {
    font-size: 32px;
  }
  .policy__h2 {
    font-size: 20px;
  }
  .policy__tier {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .policy__tier-window {
    font-size: 13px;
  }
}
