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

:root {
  --gold: #dcb255;
  --gold-light: #e8c97a;
  --gold-dark: #b8922e;
  --wine: #7a1a3a;
  --wine-light: #9b2249;
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #141414;
  --white: #f5f0e8;
  --grey: #888880;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(ellipse at center top, #1a1408 0%, var(--black) 70%);
  padding: 4rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(220,178,85,0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(220,178,85,0.03) 80px);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-main {
  width: clamp(220px, 40vw, 420px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(220,178,85,0.25));
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.6rem, 1.3vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-hours {
  margin-top: -0.5rem;
}

.hours-badge {
  display: inline-block;
  border: 1px solid rgba(220,178,85,0.3);
  padding: 0.45rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.btn-gold {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ─── SECTIONS COMMUNES ─────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.75rem;
}

/* ─── SERVICES ──────────────────────────────────────── */

.services {
  padding: 6rem 0 5rem;
  background: var(--black-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--black-card);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}

.service-card:hover::before {
  height: 40px;
}

.service-card:hover {
  background: #181818;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 200px;
}

/* Cave à vin card */
.service-card--wine {
  border-top: 2px solid var(--wine);
}

.service-card--wine::before {
  background: var(--wine);
}

.service-icon--wine {
  width: 80px;
  height: 80px;
}

.wine-logo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wine-title {
  color: #c0485e !important;
}

/* ─── BANNIÈRE HORAIRES ─────────────────────────────── */

.hours-banner {
  background: #0f0f0f;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 2rem;
}

.hours-banner-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.hours-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
}

.hours-icon svg {
  width: 100%;
  height: 100%;
}

.hours-sep {
  width: 1px;
  height: 28px;
  background: rgba(220,178,85,0.25);
}

/* ─── ORNEMENT ──────────────────────────────────────── */

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 2rem;
  background: var(--black);
}

.ornament-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}

.ornament-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── CONTACT ───────────────────────────────────────── */

.contact {
  padding: 2rem 0 6rem;
  background: var(--black);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.info-block {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.info-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.info-value:hover {
  color: var(--gold);
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.insta-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.map-wrap {
  border: 1px solid #222;
  overflow: hidden;
  position: relative;
}

.map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(220,178,85,0.15);
  pointer-events: none;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.85);
}

/* ─── FOOTER ─────────────────────────────────────────── */

.footer {
  background: var(--black-soft);
  border-top: 1px solid #1e1e1e;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-logo {
  width: 140px;
  height: auto;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hours-banner-inner {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    text-align: center;
  }

  .section-title::after {
    margin: 0.75rem auto 0;
  }

  .hours-sep {
    display: none;
  }

  .hours-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }
}
