/* ===== SHARED STYLES — used by all pages ===== */

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

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f0;
  color: #000;
  overflow-x: hidden;
}

/* ===== PAGE WRAPPER WITH DASHED GUIDE LINES ===== */
.page-wrapper {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.page-wrapper::before,
.page-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1.5px dashed rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

.page-wrapper::before { left: 40px; }
.page-wrapper::after { right: 40px; }

.guide-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  border-left: 1.5px dashed rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

/* ===== FLOATING DOT MENU ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0f;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 10;
}

.menu-close:hover { background: rgba(255,255,255,0.15); }

.menu-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

.menu-overlay-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-style: italic;
  color: #888;
  font-family: 'Playfair Display', serif;
}

.menu-overlay-label::before,
.menu-overlay-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #333;
}

.menu-overlay-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.15;
}

.menu-overlay-heading .italic-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: #aaa;
}

.menu-overlay-sub {
  font-size: 14px;
  color: #666;
}

.menu-overlay-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.menu-overlay-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}

.menu-overlay-nav a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.menu-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}

.menu-overlay-cta:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
}

.menu-overlay-cta svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.menu-overlay-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}

.menu-overlay-social a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.menu-overlay-social a:hover { color: #fff; }

.menu-overlay-social .divider {
  width: 1px;
  height: 16px;
  background: #333;
}

.menu-overlay-email {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.menu-overlay-email:hover { color: #fff; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  font-family: 'Inter', sans-serif;
}

.nav-menu:hover { background: #333; }

/* ===== SECTION HELPERS ===== */
.section-pad {
  padding: 48px 60px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.1);
}

.badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.badge .red { color: #e53935; }

.heading-xl {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.heading-lg {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.italic-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

.cta-dark {
  background: #1a1a1a;
  color: #fff;
}

.cta-white {
  background: #fff;
  color: #1a1a1a;
  border: 1.5px solid rgba(0,0,0,0.1);
}

.cta-icon {
  width: 28px;
  height: 28px;
  background: #e53935;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-newsletter-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter-col h4 {
  font-size: 16px;
  font-weight: 700;
}

.footer-newsletter-col p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 260px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  margin-top: 8px;
}

.footer-newsletter-form input {
  padding: 12px 18px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  min-width: 0;
  flex: 1;
  background: transparent;
}

.footer-newsletter-submit {
  width: 40px;
  height: 40px;
  background: #e53935;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 4px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.footer-newsletter-submit:hover { transform: scale(1.05); }

.footer-newsletter-submit:hover { background: #c62828; }

.footer-newsletter-submit svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.footer-links-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links-col a {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-links-col a:hover { color: #e53935; }

.footer-wordmark {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 900;
  letter-spacing: -12px;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.85;
  margin-bottom: 32px;
  color: #1a1a1a;
  overflow: hidden;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ===== SWIPE CONTAINER PATTERN ===== */
.swipe-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.swipe-container::-webkit-scrollbar { display: none; }

.swipe-container > * {
  scroll-snap-align: center;
  flex-shrink: 0;
}

/* ===== Nav brand as link ===== */
a.nav-brand { text-decoration: none; color: inherit; }

/* ===== Legal content pages ===== */
.legal-updated { font-size: 14px; color: #777; margin-top: 16px; }
.legal-content { max-width: 800px; }
.legal-content h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin: 48px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; color: #555; line-height: 1.8; }
.legal-content li { margin-bottom: 8px; }

/* ===== RESPONSIVE — TABLET (1024px) — shared rules only ===== */
@media (max-width: 1024px) {
  .section-pad { padding: 60px 40px; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Guide lines — tighten on tablet */
  .page-wrapper::before { left: 24px; }
  .page-wrapper::after { right: 24px; }
}

/* ===== RESPONSIVE — MOBILE (768px) — shared rules only ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .section-pad { padding: 32px 16px; }
  .heading-xl { font-size: clamp(32px, 8vw, 48px); letter-spacing: -1.5px; }
  .heading-lg { font-size: clamp(26px, 7vw, 40px); letter-spacing: -1px; }
  .page-wrapper::before { left: 16px; }
  .page-wrapper::after { right: 16px; }
  .guide-center { display: none; }

  /* Footer — stack columns */
  .footer { padding: 32px 16px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-newsletter-col {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
  }
  .footer-newsletter-col p { max-width: 100%; font-size: 13px; }
  .footer-newsletter-form input { min-width: 0; flex: 1; }
  .footer-wordmark {
    font-size: clamp(48px, 16vw, 120px);
    letter-spacing: -4px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Menu Overlay — mobile optimized */
  .menu-close { right: 20px; top: 16px; }
  .menu-overlay-content { padding: 0 16px; gap: 20px; }
  .menu-overlay-heading { font-size: clamp(24px, 6vw, 36px); }
  .menu-overlay-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .menu-overlay-nav a {
    text-align: center;
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-overlay-cta {
    padding: 14px 28px;
    min-height: 48px;
  }

  /* Touch-friendly tap targets */
  .nav-menu { min-height: 44px; min-width: 44px; }
}

/* ===== RESPONSIVE — SMALL PHONE (480px) — shared rules only ===== */
@media (max-width: 480px) {
  .section-pad { padding: 24px 12px; }
  .badge { font-size: 10px; padding: 6px 14px; }

  /* Footer */
  .footer { padding: 24px 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-wordmark { font-size: clamp(40px, 16vw, 72px); letter-spacing: -2px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Menu overlay */
  .menu-overlay-heading { font-size: clamp(20px, 5.5vw, 28px); }
  .menu-overlay-nav { gap: 6px; }
  .menu-overlay-nav a { font-size: 13px; padding: 10px 12px; }
}
