/* ── Policy Pages ─────────────────────────────────────────── */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: #F5F4F3;
  font-family: 'Work Sans', sans-serif;
  color: #1C1B1B;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── Transparent Hero Header (same as home page) ─────────── */
.policy-hero-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 130px;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.policy-hero-header .logo-container {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: all;
}

.policy-hero-header .logo {
  width: 200px;
  height: 130px;
  object-fit: cover;
}

.policy-hero-header .menu-icon {
  position: absolute;
  top: 50px;
  left: 50px;
  pointer-events: all;
}

/* White hamburger lines on transparent header */
.policy-hero-header .hamburger-line {
  background-color: #ffffff;
}

.policy-hero-header .menu-icon:hover .hamburger-line {
  background-color: #ffffff;
}

p strong{
    font-weight: 600;
}

li strong{
    font-weight: 600;
}

/* ── Submenu fix for policy pages ────────────────────────── */
.submenu {
  position: fixed;
  top: 0;
  height: 100vh;
}

/* ── Hero Banner ─────────────────────────────────────────── */
.policy-hero {
  background-color: #4F1713;
  padding: 200px 80px 60px;
  margin-top: 0;
}

.policy-hero-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.policy-hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  max-width: 700px;
}

.policy-hero-title em {
  font-style: italic;
}

.policy-hero-date {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ── Content Area ────────────────────────────────────────── */
.policy-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.policy-section {
  margin-bottom: 56px;
}

.policy-section-number {
  font-family: 'Work Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #80130B;
  margin-bottom: 10px;
}

.policy-section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  color: #602622;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.3;
}

.policy-section-text {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #1C1B1B;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.policy-section-text:last-child {
  margin-bottom: 0;
}

.policy-divider {
  width: 100%;
  height: 0.5px;
  background-color: rgba(28,27,27,0.15);
  margin-bottom: 56px;
}

/* ── Lists ───────────────────────────────────────────────── */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.policy-list li {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #1C1B1B;
  letter-spacing: -0.02em;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #80130B;
  font-size: 12px;
  top: 4px;
}

/* ── Highlighted Box ─────────────────────────────────────── */
.policy-highlight {
  background-color: #f0ecea;
  border-left: 3px solid #80130B;
  padding: 20px 24px;
  margin: 20px 0;
}

.policy-highlight p {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #1C1B1B;
}

/* ── FAQ specific ────────────────────────────────────────── */
.faq-policy-item {
  border-bottom: 0.5px solid rgba(28,27,27,0.15);
  padding: 28px 0;
  cursor: pointer;
}

.faq-policy-item:first-child {
  border-top: 0.5px solid rgba(28,27,27,0.15);
}

.faq-policy-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.faq-policy-question h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1C1B1B;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.faq-policy-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 2px;
}

.faq-policy-icon::before,
.faq-policy-icon::after {
  content: '';
  position: absolute;
  background: #602622;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-policy-icon::before {
  width: 12px; height: 1px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-policy-icon::after {
  width: 1px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-policy-item.open .faq-policy-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-policy-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-policy-item.open .faq-policy-answer {
  max-height: 600px;
  padding-top: 16px;
}

.faq-policy-answer p {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #4a4a4a;
  letter-spacing: -0.02em;
}

/* ── Footer Curtain — policy pages ──────────────────────────── */
.main {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #F5F4F3;
}

.site-footer {
  background-color: #4F1713;
  width: 100%;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.footer-col {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer.footer-revealed .footer-col:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.site-footer.footer-revealed .footer-col:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.site-footer.footer-revealed .footer-col:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.site-footer.footer-revealed .footer-col:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }

.footer-map {
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity   0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.85s;
}

.site-footer.footer-revealed .footer-map {
  opacity: 1;
  transform: scale(1);
}

/* ── Footer Responsive ───────────────────────────────────────── */
@media (max-width: 1240px) {
  .footer-inner {
    width: 100%;
    height: auto;
    padding: 52px 32px;
  }
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 24px;
  }
  .footer-col-logo {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .footer-col-map {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }
  .footer-col-logo {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Policy hero mobile ──────────────────────────────────────── */
@media (max-width: 768px) {
  .policy-hero {
    padding: 160px 24px 48px;
  }

  .policy-hero-title {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.15;
  }

  .policy-body {
    padding: 48px 24px 80px;
  }

  .policy-hero-header .logo {
    width: 140px;
    height: auto;
  }

  .policy-hero-header .menu-icon {
    left: 20px;
    top: 28px;
  }

  .policy-hero-header .logo-container {
    top: 20px;
  }
}