/* ============================================
   TWO BAGS LATER — SHARED SITE STYLES
   ============================================ */

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

:root {
  --bg: #15110D;
  --bg-card: #1C1714;
  --bg-card-2: #211B16;
  --amber: #C47A2B;
  --amber-light: #F5C060;
  --cream: #E8DFCF;
  --cream-dim: #9A8868;
  --border: #3A2D1F;
  --text-faint: #6B5A42;
}

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: Georgia, 'Times New Roman', serif;
  min-height: 100vh;
  scroll-behavior: smooth;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--cream);
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  display: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream-dim);
  padding-bottom: 4px;
  border-bottom: 0.5px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber-light);
  border-color: var(--amber);
}

.lang-switch {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--cream-dim);
  text-decoration: none;
  border: 0.5px solid var(--border) !important;
  border-radius: 20px;
  padding: 6px 14px;
  margin-left: 4px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-switch:hover {
  border-color: var(--amber) !important;
  color: var(--amber-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 240px;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 36px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 100;
    border-left: 0.5px solid var(--border);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-toggle { display: flex; }
}

/* ── SHARED PAGE STRUCTURE ──────────────────────────────────── */
.page-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.page-header {
  text-align: center;
  margin-bottom: 56px;
}

.page-label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.page-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2EEE6;
  margin-bottom: 14px;
}

.page-sub {
  font-style: italic;
  font-size: 16px;
  color: var(--cream-dim);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin: 0 auto 24px;
}

.section {
  margin-bottom: 56px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2EEE6;
  margin-bottom: 16px;
}

.body-text {
  font-size: 16px;
  line-height: 1.8;
  color: #D9CFBB;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
}

.body-text.dim {
  color: var(--cream-dim);
}

.quote-block {
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  border-left: 2px solid var(--amber);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.6;
}

.diamond-divider {
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  margin: 40px 0;
  font-family: Helvetica, Arial, sans-serif;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  text-align: center;
  border-top: 0.5px solid var(--border);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-socials a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.footer-socials a:hover { color: var(--amber-light); }

.footer-text {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 1px;
  font-family: Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.footer-email {
  font-size: 12px;
  color: var(--cream-dim);
  margin-bottom: 16px;
  font-family: Helvetica, Arial, sans-serif;
}

.footer-email a {
  color: var(--amber-light);
  text-decoration: none;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--amber);
  color: #15110D;
  border-radius: 4px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--amber-light); }

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  color: var(--cream);
  border-radius: 4px;
  border: 0.5px solid var(--border);
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-light);
}
