/* assets/css/privacy.css
   Hustob Clothier · Business Policy Page Styles
   ========================================================================== */

/* ── Container ─────────────────────────────────────────────────────────── */
.hc-section {
  max-width: var(--hc-max-width);
  margin: 0 auto;
  padding: calc(var(--hc-gap) * 1.5) var(--hc-gap);
  text-align: left;
}

/* ── Section head ─────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: calc(var(--hc-gap) * 1.5);
}
.section-head .section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin: 0;
}
.section-head .section-subtext {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(0,0,0,0.7);
  margin-top: 0.5rem;
}

/* ── Policy Sections ─────────────────────────────────────────────────── */
.hc-section > section {
  margin-top: calc(var(--hc-gap) * 2);
}
.hc-section > section:first-of-type {
  margin-top: 0;
}
.hc-section > section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
}
.hc-section > section h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--hc-accent);
  border-radius: 2px;
  margin-top: 0.5rem;
}

/* ── Lists ───────────────────────────────────────────────────────────── */
.hc-section ul {
  list-style: disc inside;
  margin: 1rem 0;
  padding: 0;
  line-height: 1.6;
}
.hc-section ul li {
  margin-bottom: 0.5rem;
}

/* ── Contact List ───────────────────────────────────────────────────── */
ul.contact-list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
ul.contact-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
ul.contact-list a {
  color: var(--hc-accent);
  text-decoration: none;
  transition: color var(--hc-dur) ease;
}
ul.contact-list a:hover,
ul.contact-list a:focus {
  color: var(--hc-dark);
  text-decoration: underline;
}

/* ── Paragraphs ─────────────────────────────────────────────────────── */
.hc-section p {
  margin: 0.75rem 0 1.5rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.85);
}

/* ── Policy Note ────────────────────────────────────────────────────── */
.policy-note {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  text-align: center;
  margin-top: calc(var(--hc-gap) * 2);
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hc-section {
    padding: calc(var(--hc-gap) * 1) var(--hc-gap);
  }
  .section-head .section-title {
    font-size: clamp(1.75rem, 6vw, 2rem);
  }
  .hc-section > section {
    margin-top: var(--hc-gap);
  }
}
