/* ═══════════════════════════════════════════
   LUEUR — shared styles across all pages
═══════════════════════════════════════════ */

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

:root {
  --primary:    #2D2A32;
  --secondary:  #8B6F5E;
  --accent:     #C17848;
  --accent-dk:  #A8663C;
  --bg:         #F9F6F2;
  --warm:       #F4EDE5;
  --text:       #2D2A32;
  --text-muted: #8B6F5E;
  --white:      #FFFFFF;
  --border:     rgba(45,42,50,0.10);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─────────── NAV ─────────── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(249,246,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s, box-shadow 0.3s;
  gap: 24px;
}
nav.main-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(45,42,50,0.07);
}
.nav-left { display: flex; align-items: center; gap: 36px; }
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--primary);
  text-decoration: none;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  opacity: 1;
  color: var(--accent);
}
.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  background: var(--accent);
  padding: 9px 22px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dk); transform: scale(1.02); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

/* ─────────── SHARED UI PRIMITIVES ─────────── */
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--accent);
}

.display-xl {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--primary);
}
.display-md {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
}
.display-sm {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
}
em.accent, .accent-text { color: var(--accent); }
.italic { font-style: italic; }

/* ─────────── INLINE FORM ─────────── */
.inline-form {
  display: flex;
  gap: 0;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.inline-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193,120,72,0.12);
}
.inline-form input[type="email"] {
  flex: 1;
  padding: 14px 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--primary);
  background: transparent;
  border: none;
  outline: none;
}
.inline-form input[type="email"]::placeholder { color: #C4B5A8; }
.inline-form .btn-pill {
  flex-shrink: 0;
  padding: 12px 22px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-radius: 0 100px 100px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.inline-form .btn-pill:hover { background: var(--accent-dk); }
.inline-form .btn-pill:disabled { opacity: 0.6; cursor: not-allowed; }
.inline-form.dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.inline-form.dark:focus-within { border-color: var(--accent); }
.inline-form.dark input[type="email"] { color: var(--bg); }
.inline-form.dark input[type="email"]::placeholder { color: rgba(249,246,242,0.3); }
.hp-field { display: none; }
.form-note { font-size: 12px; color: var(--text-muted); padding-left: 6px; }
.form-note.light { color: rgba(249,246,242,0.35); }

.btn-solid {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-solid:hover { background: var(--accent-dk); transform: scale(1.02); }

/* ─────────── TRUST BAR (light warm band) ─────────── */
.trust-bar {
  background: var(--warm);
  padding: 26px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(193,120,72,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-box svg { color: var(--accent); }
.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0.85;
}

/* ─────────── SECTIONS — generic page container ─────────── */
.page-wrap { padding-top: 72px; /* nav offset */ }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}
section.bg-bg   { background: var(--bg); }
section.bg-warm { background: var(--warm); }
section.bg-dark { background: var(--primary); color: var(--bg); }

.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 64px 0; }

/* ─────────── SIMPLE PAGE HERO ─────────── */
.page-hero {
  padding: 120px 40px 72px;
  max-width: 960px;
  margin: 0 auto;
}
.page-hero .eyebrow { }
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  max-width: 780px;
}
.page-hero .lede {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

/* ─────────── FOOTER ─────────── */
footer.site-footer {
  background: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 40px 36px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col-brand .footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--bg);
  margin-bottom: 12px;
}
.footer-mission {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(249,246,242,0.45);
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 20px;
}
.footer-contact {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-contact:hover { opacity: 0.75; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,246,242,0.5);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(249,246,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }

.footer-sep {
  max-width: 1100px;
  margin: 0 auto 24px;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-copy {
  font-size: 12px;
  color: rgba(249,246,242,0.35);
  letter-spacing: 0.03em;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(249,246,242,0.3);
  line-height: 1.7;
  max-width: 720px;
}

/* ─────────── MODAL ─────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(45,42,50,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.visible {
  display: flex;
  animation: fadeOverlay 0.3s ease forwards;
}
@keyframes fadeOverlay { from { opacity:0; } to { opacity:1; } }
.modal-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 52px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(28px) scale(0.97); }
  to   { opacity:1; transform:translateY(0)    scale(1);    }
}
.modal-check {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.modal-check svg { color: white; }
.modal-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}
.modal-card p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.modal-timeline {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(193,120,72,0.1);
  padding: 8px 18px;
  border-radius: 100px;
}
.modal-close {
  margin-top: 28px;
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────── FADE-UP (scroll) ─────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-up-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up-stagger.in-view > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0s; }
.fade-up-stagger.in-view > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.1s; }
.fade-up-stagger.in-view > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.2s; }
.fade-up-stagger.in-view > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.3s; }
.fade-up-stagger.in-view > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.4s; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 960px) {
  nav.main-nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(45,42,50,0.08);
  }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .container, .container-narrow { padding: 0 24px; }
  .trust-bar { padding: 22px 24px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .page-hero { padding: 100px 24px 56px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }
  footer.site-footer { padding: 44px 24px 28px; }
}
@media (max-width: 600px) {
  .trust-bar-inner { grid-template-columns: 1fr; gap: 14px; }
  .inline-form { flex-direction: column; border-radius: 14px; overflow: visible; }
  .inline-form input[type="email"] {
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
  }
  .inline-form.dark input[type="email"] {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
  }
  .inline-form .btn-pill { border-radius: 100px; padding: 14px 22px; }
  .modal-card { padding: 40px 24px; }
}
