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

:root {
  --fig: #6B3A52;
  --fig-dk: #4E2A3C;
  --fig-lt: #8A4F6E;
  --blush: #E8C5B4;
  --cream: #F7F2EC;
  --cream2: #F0E8DF;
  --text: #2E1A26;
  --muted: #7A5C6A;
  --line: rgba(107, 58, 82, 0.14);
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover { color: var(--fig); }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 58, 82, 0.08);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--fig);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-logo span {
  font-style: italic;
  opacity: 0.65;
  font-size: 0.8em;
}

.page-hero {
  padding: 82px 0 56px;
  background: var(--cream);
  border-bottom: 1px solid rgba(107, 58, 82, 0.08);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--fig);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: var(--text);
}

.page-intro {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.75;
}

.document-section {
  background: var(--white);
  padding: 64px 0 88px;
}

.document {
  max-width: 820px;
}

.document > * + * { margin-top: 18px; }

.document h2 {
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  color: var(--fig-dk);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

.document h2:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.document h3 {
  margin-top: 30px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0;
}

.document p,
.document li,
.document td,
.document th {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
}

.document strong {
  color: var(--text);
  font-weight: 500;
}

.document ul {
  padding-left: 1.2rem;
}

.document li + li { margin-top: 8px; }
.document .meta li + li { margin-top: 0; }

.document .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
  list-style: none;
  padding: 0;
}

.meta li {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 13px;
  background: rgba(247, 242, 236, 0.7);
  color: var(--muted);
  font-size: 0.82rem;
}

.address {
  margin-top: 12px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

th {
  background: var(--cream2);
  color: var(--fig-dk);
  font-weight: 500;
  text-align: left;
}

th, td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

tr:last-child td { border-bottom: 0; }

.document.support-grid {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 104px;
  border-left: 3px solid var(--blush);
  padding-left: 24px;
}

.contact-panel h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.contact-panel p {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
}

.contact-email {
  display: inline-flex;
  margin-top: 18px;
  background: var(--fig);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}

.contact-email:hover {
  color: var(--white);
  background: var(--fig-dk);
  transform: translateY(-1px);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  float: right;
  color: var(--fig);
  font-weight: 500;
}

details[open] summary::after { content: '-'; }

details[open] summary {
  padding-bottom: 6px;
}

details p {
  padding: 0 20px 20px;
}

.site-footer {
  background: var(--text);
  padding: 48px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  color: var(--blush);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.footer-tagline {
  color: rgba(232, 197, 180, 0.4);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(232, 197, 180, 0.42);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blush); }

.footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232, 197, 180, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 197, 180, 0.5);
  transition: background 0.2s, color 0.2s;
}

.footer-icon:hover {
  background: rgba(232, 197, 180, 0.15);
  color: var(--blush);
}

.footer-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(232, 197, 180, 0.25);
}

@media (max-width: 780px) {
  .site-nav {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 56px 0 42px;
  }

  .document-section {
    padding: 44px 0 64px;
  }

  .document.support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-panel {
    position: static;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .contact-panel:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
