/* Shared styles for Privacy + Legal pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF8F4;
  --warm-white: #F4F0E8;
  --stone: #9C9486;
  --dark: #1E1C19;
  --accent: #7A6B55;
  --accent-light: #C4B49A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(156,148,134,0.2);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.back-link {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.back-link:hover { color: var(--dark); }
.back-link svg { width: 14px; height: 14px; }

/* LANGUAGE TOGGLE */
.lang-toggle {
  display: flex;
  border: 1px solid rgba(156,148,134,0.4);
  border-radius: 999px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 0.4rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.lang-btn:hover { color: var(--dark); }
.lang-btn.active {
  background: var(--dark);
  color: var(--cream);
}

/* PAGE LAYOUT */
.page {
  padding: 9rem 0 5rem;
  min-height: 100vh;
}
.page-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* DIVIDER */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.eyebrow-line { flex: 1; height: 1px; background: var(--accent-light); max-width: 60px; }
.eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 0.8rem;
  color: var(--dark);
}
.subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--stone);
  font-weight: 300;
  margin-bottom: 0.4rem;
}
.last-updated {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 3.5rem;
}

/* CONTENT */
.content section { margin-bottom: 2.8rem; }
.content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.content h2::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transform: translateY(-6px);
}
.content p {
  font-size: 0.95rem;
  color: #4A4740;
  line-height: 1.9;
  margin-bottom: 0.9rem;
}
.content p:last-child { margin-bottom: 0; }
.content ul {
  list-style: none;
  margin: 0.6rem 0 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.content ul li {
  font-size: 0.92rem;
  color: #4A4740;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.7;
}
.content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-light);
}
.content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-light);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.content a:hover { color: var(--dark); }
.content strong { font-weight: 500; color: var(--dark); }

/* CONTACT CARD INSIDE CONTENT */
.contact-card {
  background: var(--warm-white);
  border: 1px solid rgba(156,148,134,0.18);
  padding: 1.8rem 2rem;
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}
.contact-card .row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-card .row-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.contact-card .row-value {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--dark);
}
.contact-card .row-value a { text-decoration: none; }
.contact-card .full {
  grid-column: 1 / -1;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(156,148,134,0.2);
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* LANGUAGE SECTION VISIBILITY */
.lang-section { display: none; }
.lang-section.active { display: block; }

@media (max-width: 700px) {
  .nav-inner { padding: 1.1rem 1.2rem; gap: 0.8rem; }
  .nav-right { gap: 1rem; }
  .back-link span { display: none; }
  .page { padding: 7rem 0 3rem; }
  .page-inner { padding: 0 1.4rem; }
  .contact-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 0.6rem; padding: 1.5rem; text-align: center; }
  .content h2 { font-size: 1.3rem; }
  .content h2::before { display: none; }
}
