/* ==========================================================================
   Big Horloge — Style luxe / chic
   Palette : noir profond, or doux, ivoire
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e6c659;
  --gold-soft: #b8932f;
  --ivory: #f8f5ef;
  --cream: #faf8f3;
  --gray: #6b6b6b;
  --gray-light: #d9d6d0;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

p { color: #4a4a4a; }

a { color: inherit; text-decoration: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow.light { color: var(--gold-light); }

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.divider.gold { background: var(--gold-light); }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 20px 0;
}
.header-transparent { background: transparent; }
.header-solid { background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); }
.header.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); padding: 14px 0; }

.nav { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.hamburger {
  display: none;
  width: 32px; height: 24px;
  background: transparent;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding-top: 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 11px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 16px;
}
.link-arrow:hover { color: var(--gold-soft); }
.link-arrow:hover svg { transform: translateX(4px); }
.link-arrow svg { transition: transform 0.3s; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2.light, .section-dark .light { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 0; }
.section-lead {
  max-width: 640px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  color: var(--gray);
}
.section-lead.light { color: rgba(255,255,255,0.75); }

/* ===== INTRO GRID ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-text h2 { margin-bottom: 24px; }
.intro-text p { margin-bottom: 16px; font-size: 1.02rem; }
.intro-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform 0.4s, box-shadow 0.4s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.service-img {
  height: 280px;
  background-size: cover;
  background-position: center;
}
.service-body { padding: 32px 28px; }
.service-body h3 { margin-bottom: 14px; }

/* ===== QUOTE ===== */
.section-quote {
  background: var(--ivory);
  padding: 80px 0;
}
.section-quote blockquote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.section-quote blockquote svg { margin-bottom: 24px; }
.section-quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}
.section-quote cite {
  font-style: normal;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== CTA ===== */
.cta-box {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--white);
  border: 1px solid var(--gold);
}
.section-dark .cta-box, .cta-box.dark { background: transparent; border-color: var(--gold); }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { margin-bottom: 32px; font-size: 1.05rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 60vh;
  padding-top: 140px;
  padding-bottom: 80px;
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
}
.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(212,175,55,0.2);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--gold); }
.value-card svg { margin-bottom: 20px; }
.value-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.value-card p { font-size: 0.95rem; }

/* ===== ABOUT IMAGES ===== */
.about-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-images img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ===== COLLECTION GRID ===== */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.collection-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.collection-card.dark { background: rgba(255,255,255,0.04); border-color: rgba(212,175,55,0.2); }
.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.collection-img img {
  width: 100%; height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.collection-body { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
.collection-body .cat {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}
.collection-card.dark .collection-body h3 { color: var(--white); }
.collection-body h3 { margin-bottom: 12px; font-size: 1.4rem; }
.collection-body p { font-size: 0.95rem; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  text-align: center;
  padding: 20px;
}
.feature svg { margin-bottom: 16px; }
.feature h4 { margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-info { padding: 20px 0; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { font-size: 1.05rem; margin-bottom: 36px; }
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.icon-circle {
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-list span { font-size: 0.95rem; color: var(--gray); }

.contact-map {
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.contact-map iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
}
.logo-footer { margin-bottom: 16px; }
.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  font-style: italic;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid var(--gold);
  z-index: 200;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--cream);
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 50px;
  border: 1px solid var(--gray-light);
}
.legal-content h1 { margin-bottom: 32px; }
.legal-content h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.legal-content h3 { margin: 28px 0 12px; font-size: 1.2rem; }
.legal-content p, .legal-content li { margin-bottom: 12px; line-height: 1.8; }
.legal-content ul { padding-left: 24px; }

/* ===== ADMIN PAGE ===== */
.admin-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 24px;
}
.admin-box {
  max-width: 480px;
  width: 100%;
  background: var(--white);
  padding: 50px 40px;
  border: 1px solid var(--gold);
}
.admin-box h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.admin-box .sub {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 32px;
}
.admin-box label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 600;
}
.admin-box input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  background: var(--cream);
  font-size: 15px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.admin-box input:focus { outline: none; border-color: var(--gold); }
.admin-box .btn { width: 100%; }
.admin-error {
  color: #c33;
  font-size: 0.9rem;
  margin-bottom: 16px;
  text-align: center;
  min-height: 1.2em;
}
.admin-panel { display: none; }
.admin-panel.show { display: block; }
.admin-info-box {
  background: var(--ivory);
  padding: 24px;
  border-left: 3px solid var(--gold);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.admin-info-box strong { color: var(--black); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image img { height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-images { grid-template-columns: 1fr; }
  .about-images img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 16px; }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: 2.5rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; text-align: center; }

  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .collection-grid { grid-template-columns: 1fr; gap: 24px; }
  .collection-card { grid-template-columns: 1fr; }
  .collection-img img { min-height: 220px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-map { min-height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-box { padding: 40px 24px; }
  .legal-content { padding: 36px 24px; }

  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .values-grid, .features-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 18px; }
  .logo-mark { width: 34px; height: 34px; font-size: 19px; }
}
