/* CARACAL policy pages — shipping and refunds. Deliberately plain: these are
   documents people read when something has gone wrong, so legibility beats
   styling. Matches the site's typeface and palette. */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  background: #f7f7f7;
  color: #151515;
}

a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
a:hover { opacity: 0.6; }

.policy {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

.policy__back {
  display: inline-block;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.45;
  margin-bottom: 3rem;
}
.policy__back:hover { opacity: 1; }

.policy__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

.policy__updated {
  font-size: 13px;
  opacity: 0.4;
  margin: 0 0 2.5rem;
}

.policy__lede {
  font-size: 17px;
  line-height: 1.55;
  padding-bottom: 2rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid rgba(21,21,21,0.1);
}

.policy h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 2.75rem 0 0.75rem;
}

.policy p { margin: 0 0 1rem; }
.policy ul, .policy ol { margin: 0 0 1rem; padding-left: 1.25rem; }
.policy li { margin-bottom: 0.5rem; }
.policy strong { font-weight: 700; }

.policy__note {
  font-size: 14px;
  opacity: 0.55;
}

.policy__contact { list-style: none; padding-left: 0; }
.policy__contact li { margin-bottom: 0.35rem; }

/* Wide tables must scroll inside themselves, never the page. */
.policy__table-wrap {
  overflow-x: auto;
  margin: 0 0 1rem;
  -webkit-overflow-scrolling: touch;
}
.policy__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 30rem;
}
.policy__table th,
.policy__table td {
  text-align: left;
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid rgba(21,21,21,0.08);
  white-space: nowrap;
}
.policy__table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5;
}

.policy__links {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(21,21,21,0.1);
  font-size: 14px;
}

@media (max-width: 600px) {
  .policy { padding: 2rem 1.25rem 4rem; }
  .policy__back { margin-bottom: 2rem; }
}
