/* ═══════════════════════════════════════════════
   La Nouvelle Parisienne — Shared Styles
═══════════════════════════════════════════════ */

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

:root {
  --gold: #C9A96E;
  --gold-light: #E2C48A;
  --teal-deep: #0F3E3C;
  --cream: #FAF7F1;
  --border: #E8E2D9;
  --muted: #7A7165;
  --foreground: #1C1917;
  --card: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Typography ── */
.font-serif { font-family: 'Cormorant Garamond', serif; }
.font-script { font-family: 'Caveat', cursive; }

/* ── Gradient ── */
.gradient-gold {
  background: linear-gradient(135deg, #B8924A 0%, #D4A95C 35%, #E8C87A 65%, #C9A96E 100%);
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(232,226,217,0.6);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(232,226,217,0.4);
}
.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar .open-tag { color: var(--gold); font-weight: 500; }

@media (max-width: 767px) { .top-bar { display: none; } }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-deep) 60%, #1a5c5a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text-block { line-height: 1.1; }
.logo-text-block .l1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-deep);
  letter-spacing: 0.02em;
}
.logo-text-block .l2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(28,25,23,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--gold); }

.btn-rdv {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-rdv:hover { opacity: 0.88; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

@media (max-width: 1023px) {
  nav { display: none; }
  .hamburger { display: block; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  color: var(--foreground);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--gold); background: var(--cream); }
.mobile-menu .mobile-rdv {
  margin: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  color: #fff;
  border: none;
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: var(--cream);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: var(--teal-deep);
  line-height: 1.1;
  max-width: 48rem;
  margin: 0 auto 1rem;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(28,25,23,0.68);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════ */
.section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-inner-sm {
  max-width: 62rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--teal-deep);
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cream-bg { background: var(--cream); }

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,169,110,0.15);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201,169,110,0.35);
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--teal-deep);
  text-decoration: none;
  border: 1px solid rgba(15,62,60,0.25);
  background: rgba(255,255,255,0.6);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  background: #fff;
  color: var(--teal-deep);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--cream); }

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-section {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.cta-box {
  border-radius: 0.875rem;
  padding: 1.25rem 1.75rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(201,169,110,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.cta-box-text { flex: 1; }
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.cta-box p {
  color: rgba(255,255,255,0.88);
  margin: 0;
  line-height: 1.5;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.88);
  margin-top: auto;
}
.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(4, 1fr); }
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-col ul a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col ul li.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.footer-col ul li.contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* ══════════════════════════════════════════════
   GRID HELPERS
══════════════════════════════════════════════ */
.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px) { .grid-4 { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════
   FORM STYLES
══════════════════════════════════════════════ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--foreground);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════════════════
   BADGE / TAG
══════════════════════════════════════════════ */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
}

/* ══════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
