:root {
  --sand: #e8dfd0;
  --sage: #7a8c72;
  --sage-light: #a4b49a;
  --sage-dark: #4a5e43;
  --cream: #f5f0e8;
  --ivory: #faf7f2;
  --charcoal: #2a2a24;
  --warm-grey: #8a8478;
  --gold: #c4a96b;
  --gold-light: #dfc898;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.4s;
}

nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.85);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}

nav.scrolled .nav-links a { color: var(--warm-grey); }
.nav-links a:hover { color: var(--gold) !important; }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(250,247,242,0.5);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

nav.scrolled .nav-cta {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: white !important;
}

/* ─── HAMBURGER (mobile) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--charcoal); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--sage-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(42,42,36,0.7) 0%, rgba(74,94,67,0.55) 60%, rgba(42,42,36,0.8) 100%),
    url('https://static.wixstatic.com/media/1dde1e_3f396052c53343fc99c1d03965fd62dd~mv2.jpg/v1/fill/w_1200,h_900,al_c,q_80/img.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--ivory);
  padding: 2rem;
  animation: fadeUp 1.2s ease 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 0.3em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,247,242,0.75);
  letter-spacing: 0.08em;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(250,247,242,0.5);
  color: var(--ivory);
  padding: 1rem 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  transition: border-color 0.3s, background 0.3s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,247,242,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ─── CONCEPT SECTION ─── */
.concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.concept-visual {
  background: var(--sage);
  position: relative;
  overflow: hidden;
}

.concept-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.concept-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage-dark) 0%, transparent 60%);
  opacity: 0.4;
}

.concept-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--sage);
}

.concept-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.concept-text h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.concept-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-grey);
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 46ch;
}

.concept-text a {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
}

.concept-text a:hover { gap: 1.25rem; color: var(--gold); }

/* ─── SERVICES STRIP ─── */
.services {
  background: var(--charcoal);
  padding: 5rem 4rem;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(250,247,242,0.08);
}

.service-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(250,247,242,0.08);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card:last-child { border-right: none; }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover { background: rgba(250,247,242,0.04); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(250,247,242,0.45);
  font-weight: 300;
}

/* ─── FORFAITS ─── */
.forfaits {
  padding: 8rem 4rem;
  background: var(--ivory);
}

.forfaits-header {
  text-align: center;
  margin-bottom: 5rem;
}

.forfaits-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 1rem;
}

.forfaits-header p {
  margin-top: 1rem;
  color: var(--warm-grey);
  font-weight: 300;
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.7;
  font-size: 0.95rem;
}

.forfaits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.forfait-card {
  background: var(--cream);
  padding: 3rem 2.5rem;
  position: relative;
  border-top: 3px solid var(--sand);
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.forfait-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.forfait-card.featured {
  background: var(--sage-dark);
  border-color: var(--gold);
  color: var(--ivory);
}

.forfait-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}

.forfait-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.forfait-card .price {
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: var(--gold);
  margin: 1.2rem 0;
}

.forfait-card .price span {
  font-size: 1rem;
  color: var(--warm-grey);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.forfait-card.featured .price span { color: var(--sage-light); }

.forfait-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.forfait-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--warm-grey);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.4;
}

.forfait-card.featured .forfait-list li { color: rgba(250,247,242,0.75); }

.forfait-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.btn-sage {
  display: inline-block;
  background: var(--sage-dark);
  color: white;
  padding: 0.85rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  transition: background 0.3s;
  width: 100%;
  text-align: center;
}

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

.forfait-card.featured .btn-sage {
  background: var(--gold);
}

.forfait-card.featured .btn-sage:hover { background: var(--gold-light); }

.bar {
  padding: 8rem 4rem;
  background: var(--cream);
}

.bar-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.bar-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-top: 1rem;
}

.bar-header p {
  margin-top: 1rem;
  color: var(--warm-grey);
  font-weight: 300;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.8;
  font-size: 0.95rem;
}

.bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bar-card {
  background: var(--ivory);
  border: 1px solid rgba(42,42,36,0.08);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  color: var(--warm-grey);
  font-weight: 300;
  line-height: 1.8;
}

.menu-list li::before {
  content: '•';
  color: var(--gold);
  margin-right: 0.75rem;
  font-weight: 700;
}

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

/* ─── AMBIANCE / PHOTOS ─── */
.ambiance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.ambiance-text {
  background: var(--sage-dark);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ambiance-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.ambiance-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.ambiance-text p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
}

.ambiance-img {
  overflow: hidden;
  height: 450px;
}

.ambiance-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.ambiance-img:hover img { transform: scale(1.04); }

.ambiance-quote {
  grid-column: 1 / -1;
  background: var(--cream);
  padding: 4rem;
  text-align: center;
  border-top: 1px solid var(--sand);
}

.ambiance-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ─── HORAIRES ─── */
.horaires {
  padding: 8rem 4rem;
  background: var(--ivory);
}

.horaires-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.horaires h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  grid-column: 1 / -1;
  text-align: center;
}

.horaires-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.horaires-block h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}

.horaire-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.88rem;
}

.horaire-row:last-child { border-bottom: none; }

.horaire-day { font-weight: 400; color: var(--charcoal); }
.horaire-time { color: var(--warm-grey); font-weight: 300; }
.horaire-closed { color: var(--sage-light); font-style: italic; }

/* ─── CONTACT ─── */
.contact {
  background: var(--charcoal);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 2.5rem;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.1rem;
  width: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
}

.contact-item-text a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-item-text a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(250,247,242,0.2);
  color: rgba(250,247,242,0.6);
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── CONTACT FORM ─── */
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.12);
  color: var(--ivory);
  padding: 0.9rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250,247,242,0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { height: 120px; resize: none; }

.form-group select option { background: var(--charcoal); }

.form-submit {
  background: var(--gold);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
}

.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.form-success {
  display: none;
  background: rgba(122,140,114,0.2);
  border: 1px solid var(--sage-light);
  color: var(--sage-light);
  padding: 1rem;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: #1a1a16;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(250,247,242,0.4);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(250,247,242,0.25);
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-copy a:hover { color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .concept { grid-template-columns: 1fr; }
  .concept-visual { height: 350px; }
  .concept-text { padding: 4rem 2rem; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(250,247,242,0.08); }

  .forfaits { padding: 5rem 2rem; }
  .forfaits-grid { grid-template-columns: 1fr; max-width: 480px; }

  .ambiance { grid-template-columns: 1fr; }
  .ambiance-text { padding: 4rem 2rem; }
  .ambiance-img { height: 300px; }

  .horaires { padding: 5rem 2rem; }
  .horaires-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .horaires h2 { grid-column: 1; }

  .contact { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }

  footer { flex-direction: column; align-items: flex-start; padding: 2.5rem 2rem; }
}

@media (max-width: 640px) {
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .ambiance-quote { padding: 3rem 2rem; }
  .social-links { flex-direction: column; }
}
