/* AMBELLA — Policy Pages Shared Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #1C1814;
  --paper:   #F2EEE8;
  --gold:    #9B7A48;
  --muted:   #7A7068;
  --rule:    #D8D0C4;
  --dark:    #0E0C09;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.pol-header {
  background: var(--dark);
  padding: 22px 40px;
  display: flex;
  align-items: center;
}

.pol-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* ── Main Content ── */
.pol-main {
  flex: 1;
  padding: 64px 24px 80px;
}

.pol-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.pol-eyebrow {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.pol-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: .02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.pol-updated {
  font-size: .67rem;
  color: var(--muted);
  letter-spacing: .08em;
  margin-bottom: 40px;
}

.pol-intro {
  font-size: .9rem;
  line-height: 1.85;
  color: #3A342E;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.pol-intro a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(155,122,72,.35);
  transition: border-color .2s;
}

.pol-intro a:hover {
  border-color: var(--gold);
}

/* ── Policy Sections ── */
.pol-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

.pol-section:last-of-type {
  border-bottom: none;
}

.pol-section h2 {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 18px;
}

.pol-section p {
  font-size: .88rem;
  line-height: 1.88;
  color: #3A342E;
  margin-bottom: 14px;
}

.pol-section p:last-child {
  margin-bottom: 0;
}

.pol-section ul {
  list-style: none;
  margin: 14px 0;
  padding-left: 0;
}

.pol-section ul li {
  font-size: .88rem;
  line-height: 1.88;
  color: #3A342E;
  padding: 6px 0 6px 20px;
  position: relative;
}

.pol-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 400;
}

.pol-section strong {
  font-weight: 500;
  color: var(--dark);
}

.pol-note {
  background: rgba(155,122,72,.08);
  border-left: 2px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 2px 2px 0;
  font-size: .82rem !important;
  color: #5C5048 !important;
}

/* ── Contact Box ── */
.pol-contact {
  margin-top: 52px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--rule);
}

.pol-contact p {
  font-size: .82rem;
  line-height: 1.8;
  color: var(--muted);
}

.pol-contact a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(155,122,72,.35);
  transition: border-color .2s;
}

.pol-contact a:hover {
  border-color: var(--gold);
}

.pol-address {
  margin-top: 12px !important;
  font-size: .78rem !important;
  letter-spacing: .04em;
  color: var(--muted);
  line-height: 1.9 !important;
}

/* ── Footer ── */
.pol-foot {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  padding: 28px 40px;
}

.pol-foot-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.pol-foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
}

.pol-foot-links a {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}

.pol-foot-links a:hover {
  color: #C9A96E;
}

.pol-foot p {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .pol-header { padding: 18px 20px; }
  .pol-main   { padding: 48px 20px 64px; }
  .pol-contact { padding: 24px 20px; }
  .pol-foot   { padding: 24px 20px; }
}
