/* ============================================
   À LA SUITE — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #A68B5B;
  --cream: #FAF7F2;
  --dark: #0D0D0D;
  --dark-soft: #1A1A1A;
  --dark-card: #141414;
  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.6);
  --text-muted: rgba(245, 240, 232, 0.35);
  --border-subtle: rgba(201, 169, 110, 0.12);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }
img { display: block; max-width: 100%; }

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20000;
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo),
              border-color 0.3s, background-color 0.3s, transform 0.15s ease-out;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(201, 169, 110, 0.1);
  border-color: var(--gold-light);
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20001;
  transform: translate(-50%, -50%);
}

/* Grain Overlay */
.grain-overlay {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.preloader-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s var(--ease-out-expo);
  mix-blend-mode: difference;
}

/* When mobile menu is open, disable blend-mode so backdrop-filter works */
.navbar.menu-open {
  mix-blend-mode: normal;
}

.navbar.scrolled {
  mix-blend-mode: normal;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 4%;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* CTA Button */
.btn-cta {
  padding: 0.75rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease-out-expo);
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.btn-cta:hover { color: var(--dark); }
.btn-cta:hover::before { transform: scaleX(1); transform-origin: left; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.4s var(--ease-out-expo);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(13,13,13,0.4) 0%,
    rgba(13,13,13,0.2) 40%,
    rgba(13,13,13,0.6) 80%,
    rgba(13,13,13,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
}

.hero-title .word span {
  display: inline-block;
  transform: translateY(120%);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
}

.hero-cta { opacity: 0; }

/* Hero Search Bar — Booking Style */
.hero-search-bar {
  display:flex; align-items:stretch; max-width:780px; margin:2.5rem auto 0;
  background:rgba(13,13,13,0.7); backdrop-filter:blur(40px) saturate(200%); -webkit-backdrop-filter:blur(40px) saturate(200%);
  border:1px solid rgba(201,169,110,0.3); border-radius:16px; overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.5), 0 0 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity:0; animation:searchBarIn 0.8s 1.8s forwards var(--ease-out-expo);
}
@keyframes searchBarIn { to { opacity:1; transform:translateY(0); } }
.hero-search-bar { transform:translateY(20px); }

.hero-search-field {
  flex:1; padding:1rem 1.3rem; cursor:pointer; transition:background 0.25s; position:relative;
}
.hero-search-field:hover { background:rgba(201,169,110,0.06); }
.hero-search-field label {
  display:block; font-size:0.62rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase;
  color:var(--gold); margin-bottom:0.45rem; pointer-events:none;
  display:flex; align-items:center; gap:0.35rem;
}
.hero-search-field label i { font-size:0.7rem; }
.hero-search-field select,
.hero-search-field input {
  width:100%; background:transparent; border:none; outline:none;
  color:var(--text-primary); font-family:var(--font-body); font-size:0.9rem; font-weight:300;
  cursor:pointer;
}
.hero-search-field select option { background:#1a1a1a; color:#f5f0e8; }
.hero-search-field input::placeholder { color:var(--text-muted); }
.hero-search-field input[type="date"] { color-scheme:dark; }

.hero-search-divider { width:1px; background:rgba(201,169,110,0.2); margin:0.8rem 0; flex-shrink:0; }

.hero-search-btn {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.3rem;
  padding:1rem 2rem; background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  border:none; color:#0D0D0D; font-family:var(--font-body); font-weight:600; font-size:0.82rem;
  cursor:pointer; transition:all 0.3s var(--ease-out-expo); white-space:nowrap; min-width:160px;
  letter-spacing:0.03em;
}
.hero-search-btn:hover { filter:brightness(1.15); transform:scale(1.02); box-shadow:0 8px 24px rgba(201,169,110,0.3); }
.hero-search-btn i { font-size:1.1rem; }

.hero-search-sub {
  font-size:0.72rem; color:var(--text-muted); margin-top:1rem; letter-spacing:0.05em;
  opacity:0; animation:searchBarIn 0.6s 2.2s forwards var(--ease-out-expo);
  transform:translateY(10px);
}

/* Mobile search bar */
@media (max-width: 768px) {
  .hero-search-bar { flex-direction:column; max-width:100%; margin:2rem auto 0; border-radius:14px; }
  .hero-search-divider { width:100%; height:1px; margin:0; }
  .hero-search-btn { padding:1.2rem; border-radius:0; flex-direction:row; gap:0.5rem; }
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDown 2s var(--ease-in-out) infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============ SECTIONS ============ */
.section { padding: 8rem 4%; }

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

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.section-desc {
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Gold Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 2rem;
}

.divider-line { width: 40px; height: 1px; background: var(--border-subtle); }
.divider-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border-subtle);
  z-index: 1;
  pointer-events: none;
}

.about-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.about-image-wrapper:hover img { transform: scale(1.05); }

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-subtle);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ============ SERVICES ============ */
.services-section { background: var(--dark-soft); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border-subtle);
}

.service-card {
  background: var(--dark-card);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.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.6s var(--ease-out-expo);
}

.service-card:hover { background: rgba(201, 169, 110, 0.03); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ HORIZONTAL GALLERY ============ */
.gallery-section {
  padding: 8rem 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 4%;
  will-change: transform;
}

.gallery-item {
  flex-shrink: 0;
  width: 35vw;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,13,13,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-primary);
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: var(--dark-soft);
  text-align: center;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item { display: none; }
.testimonial-item.active { display: block; }

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: normal;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-event {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-dark);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============ CTA BANNER ============ */
.cta-section {
  position: relative;
  padding: 10rem 4%;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .section-eyebrow {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-shadow: 0 0 20px rgba(201, 169, 110, 0.4);
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.cta-content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* ============ FOOTER ============ */
.footer {
  padding: 5rem 4% 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Image reveal */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform-origin: right;
  transition: transform 1.2s var(--ease-out-expo);
}

.img-reveal.visible::after { transform: scaleX(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { width: 60vw; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  a, button { cursor: auto; }
  .cursor, .cursor-dot { display: none; }

  .nav-links { 
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.3rem;
    letter-spacing: 0.25em;
    color: var(--text-primary);
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  }
  .nav-links a:hover { color: var(--gold); }

  .menu-toggle { display: flex; }
  .section { padding: 5rem 6%; }
  .section-header { margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-item { width: 80vw; min-width: 240px; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .about-image-wrapper img { height: 300px; }
  .about-text h3 { font-size: 1.6rem; }

  .hero-scroll-indicator { display: none; }

  /* CTA */
  .cta-section { padding: 5rem 6%; }

  /* Footer */
  .footer { padding: 3rem 6% 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Services */
  .service-card { padding: 2rem 1.5rem; }
  .service-card h3 { font-size: 1.4rem; }

  /* Testimonials */
  .testimonial-quote { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .navbar { padding: 1rem 4%; }
  .nav-logo { font-size: 1.2rem; }
  .section { padding: 3rem 5%; }
  .hero-content { padding: 0 1rem; }
  .about-stats { gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .cta-section { padding: 3rem 5%; }
  .gallery-item { width: 85vw; }
  .gallery-item img { height: 40vh; min-height: 250px; }
}

/* ============ CONTACT FORM ============ */
.contact-form-wrapper {
  max-width: 600px;
  margin: 2rem auto 0;
  text-align: left;
}
.contact-form {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-group {
  margin-bottom: 1.2rem;
}
.cf-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.cf-group input,
.cf-group select,
.cf-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: vertical;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.04);
}
.cf-group input::placeholder,
.cf-group textarea::placeholder {
  color: var(--text-muted);
}
.cf-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='rgba(201,169,110,0.6)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cf-group select option {
  background: var(--dark-soft);
  color: var(--text-primary);
}
.cf-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 10px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.cf-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: cfShimmer 3s ease-in-out infinite;
}
@keyframes cfShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 169, 110, 0.3);
}
.cf-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Success state */
.cf-success {
  text-align: center;
  padding: 3rem 2rem;
  animation: cfFadeIn 0.6s var(--ease-out-expo);
}
.cf-success i {
  font-size: 3.5rem;
  color: #4ade80;
  margin-bottom: 1.5rem;
  display: block;
  animation: cfPop 0.5s var(--ease-out-expo) 0.2s both;
}
@keyframes cfPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
@keyframes cfFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cf-success h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}
.cf-success p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .cf-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  /* Footer extra bottom padding for mobile nav */
  .footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }
}

/* ============ MOBILE BOTTOM NAV (APP-STYLE) ============ */
.site-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-top: 1px solid rgba(201, 169, 110, 0.12);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: flex-end;
  gap: 0;
}

@media (max-width: 768px) {
  .site-bottom-nav { display: flex; }
}

.sbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
  flex: 1;
  min-width: 0;
}

.sbn-item i {
  font-size: 1.15rem;
  transition: transform 0.3s var(--ease-out-expo), color 0.3s;
}

.sbn-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sbn-item.active,
.sbn-item:active {
  color: var(--gold);
}

.sbn-item.active i {
  transform: scale(1.15);
}

/* CTA center button (Devis) */
.sbn-cta {
  position: relative;
  margin-top: -1.2rem;
}

.sbn-cta-ring {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35), 0 0 0 4px rgba(13, 13, 13, 0.9);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.sbn-cta-ring i {
  font-size: 1.15rem;
  color: var(--dark) !important;
  transform: none !important;
}

.sbn-cta:active .sbn-cta-ring {
  transform: scale(0.92);
}

.sbn-cta span {
  color: var(--gold);
  margin-top: 0.15rem;
}

/* Phone CTA green glow */
#sbn-phone i { color: inherit; }
#sbn-phone.has-phone i {
  color: #4ade80;
}
#sbn-phone.has-phone {
  color: rgba(245, 240, 232, 0.5);
}
#sbn-phone.has-phone:active {
  color: #4ade80;
}

/* Scroll-aware active state via IntersectionObserver (handled in JS) */
