/* ===== DESIGN TOKENS ===== */
:root {
  --navy:       #0a2b3e;
  --navy-mid:   #0e3852;
  --navy-light: #14496e;
  --gold:       #f4c542;
  --gold-dark:  #d4a820;
  --gold-light: #fad87a;
  --white:      #ffffff;
  --off-white:  #f8f5ef;
  --text-light: #c5cdd6;
  --text-muted: #8899a8;
  --card-bg:    rgba(255,255,255,0.04);
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 8px 40px rgba(0,0,0,0.28);
  --shadow-gold:0 4px 28px rgba(244,197,66,0.22);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== 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.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10,43,62,0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(244,197,66,0.1);
  transition: var(--transition);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-book {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  text-transform: uppercase !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover {
  background: var(--gold-light) !important;
  box-shadow: var(--shadow-gold) !important;
  transform: translateY(-1px);
  color: var(--navy) !important;
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: rgba(8,33,47,0.98);
  backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--white); transition: var(--transition); }
.nav-mobile a:hover { color: var(--gold); }

/* ===== SECTIONS ===== */
section { padding: 100px 5vw; max-width: 1280px; margin: 0 auto; }
.section-full { max-width: 100%; padding-left: 5vw; padding-right: 5vw; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-title { font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.8; }

/* ===== DIVIDERS ===== */
.gold-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-bottom: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== HERO ===== */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(20,73,110,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(244,197,66,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  right: -5%; top: 10%;
  width: 55vw; height: 80vh;
  border: 1px solid rgba(244,197,66,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244,197,66,0.05);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

.hero-name { font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.hero-name span { color: var(--gold); }

.hero-title { font-family: 'DM Sans', sans-serif; font-size: clamp(0.88rem, 2vw, 1.05rem); color: var(--text-muted); font-weight: 400; margin-bottom: 2rem; letter-spacing: 0.02em; }

.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-style: italic; color: rgba(255,255,255,0.85); margin-bottom: 3rem; max-width: 600px; line-height: 1.4; }
.hero-tagline em { color: var(--gold); font-style: normal; }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem; }

/* Pillars */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(244,197,66,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(244,197,66,0.06);
}

.pillar { padding: 2rem 1.5rem; background: rgba(10,43,62,0.75); display: flex; flex-direction: column; gap: 0.75rem; transition: var(--transition); cursor: default; }
.pillar:hover { background: rgba(14,56,82,0.95); }
.pillar-icon { font-size: 2rem; }
.pillar-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--white); }
.pillar-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ABOUT ===== */
#about { padding-top: 120px; }

.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(244,197,66,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem; color: var(--text-muted); font-size: 0.9rem;
}

.about-photo-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.about-photo-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 2rem; line-height: 1; display: block; }
.about-photo-badge .small { font-size: 0.75rem; font-weight: 500; opacity: 0.8; }

.about-text p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.85; }

.about-mission {
  background: rgba(244,197,66,0.06);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
}
.about-mission p { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: rgba(255,255,255,0.9); margin: 0; }
.about-location { display: flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.9rem; color: var(--text-muted); }
.about-location::before { content: '📍'; }

/* ===== WHY ANGUS ===== */
.why-section {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-radius: var(--radius-lg);
  padding: 5rem;
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border: 1px solid rgba(244,197,66,0.1);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '"';
  position: absolute;
  top: -20px; right: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: rgba(244,197,66,0.04);
  line-height: 1;
  pointer-events: none;
}

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.stat-box {
  text-align: center;
  padding: 2rem;
  background: rgba(244,197,66,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(244,197,66,0.12);
  transition: var(--transition);
}
.stat-box:hover { background: rgba(244,197,66,0.09); transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.4; }

/* ===== SERVICES ===== */
#services { background: rgba(0,0,0,0.12); }

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

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(244,197,66,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(244,197,66,0.28); background: rgba(255,255,255,0.06); transform: translateY(-5px); box-shadow: var(--shadow); }

.service-icon { width: 56px; height: 56px; background: rgba(244,197,66,0.1); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.service-card h3 { font-size: 1.5rem; color: var(--white); }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { background: rgba(244,197,66,0.08); border: 1px solid rgba(244,197,66,0.2); color: var(--gold); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 50px; }

/* ===== PORTFOLIO ===== */
#portfolio { padding-top: 120px; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

.project-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); cursor: pointer; position: relative; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(244,197,66,0.2); }

.project-image { aspect-ratio: 4/3; background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; color: var(--text-muted); font-size: 0.9rem; position: relative; overflow: hidden; }
.project-image-icon { font-size: 2.5rem; opacity: 0.5; }

.project-overlay { position: absolute; inset: 0; background: rgba(10,43,62,0.88); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); font-size: 0.85rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }
.project-card:hover .project-overlay { opacity: 1; }

.project-info { padding: 1.75rem; }
.project-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.project-info h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--white); }
.project-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.portfolio-cta { text-align: center; margin-top: 3.5rem; }

/* ===== BOOKING (section dans index) ===== */
#booking { background: rgba(0,0,0,0.1); padding-top: 120px; }

.booking-intro { max-width: 640px; margin-bottom: 3rem; }
.booking-wrapper { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding: 1rem 1.5rem; background: var(--card-bg); border: 1px solid rgba(244,197,66,0.1); border-radius: var(--radius); }
.cal-nav-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }

.cal-arrow { background: none; border: 1px solid rgba(244,197,66,0.2); color: var(--gold); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.cal-arrow:hover { background: var(--gold); color: var(--navy); }

.days-header { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.day-label { text-align: center; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 0.5rem; }

.day-column-head { background: rgba(244,197,66,0.06); border: 1px solid rgba(244,197,66,0.1); border-radius: var(--radius); padding: 1rem 0.5rem 0.5rem; text-align: center; }
.day-date-num { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.day-date-num.today { color: var(--gold); }
.day-name-small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 0.25rem; }

.slots-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }

.slot-btn { padding: 0.5rem 0.3rem; font-size: 0.72rem; font-weight: 600; border-radius: 8px; border: 1px solid rgba(244,197,66,0.2); background: rgba(244,197,66,0.06); color: var(--gold); cursor: pointer; transition: var(--transition); text-align: center; }
.slot-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slot-btn.booked  { background: rgba(255,255,255,0.03); color: var(--text-muted); border-color: rgba(255,255,255,0.06); cursor: not-allowed; text-decoration: line-through; }
.slot-btn.blocked { background: rgba(220,50,50,0.07); color: rgba(220,80,80,0.5); border-color: rgba(220,50,50,0.14); cursor: not-allowed; }
.slot-btn.pending { background: rgba(249,115,22,0.1); color: #f97316; border-color: rgba(249,115,22,0.3); cursor: not-allowed; font-size: 0.85rem; }

.booking-sidebar { position: sticky; top: 90px; }
.booking-info-card { background: var(--card-bg); border: 1px solid rgba(244,197,66,0.12); border-radius: var(--radius-lg); padding: 2rem; }
.booking-info-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--white); }

.info-row { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-text strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 0.2rem; }
.info-text span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* ===== MODAL ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(5,20,30,0.88); backdrop-filter: blur(10px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal { background: #0d3048; border: 1px solid rgba(244,197,66,0.18); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 520px; width: 100%; position: relative; transform: translateY(20px); transition: transform 0.3s ease; max-height: 90vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.07); border: none; color: var(--white); width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: rgba(255,255,255,0.14); }

.modal-slot-info { background: rgba(244,197,66,0.08); border: 1px solid rgba(244,197,66,0.2); border-radius: var(--radius); padding: 1rem 1.5rem; margin-bottom: 1.75rem; display: flex; align-items: center; gap: 0.75rem; }
.modal-slot-info .slot-emoji { font-size: 1.3rem; }
.modal-slot-date { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); }
.modal-slot-time { font-size: 0.85rem; color: var(--text-muted); }

/* Form */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; transition: var(--transition); resize: vertical; }
.form-control:focus { outline: none; border-color: var(--gold); background: rgba(244,197,66,0.04); }
.form-control::placeholder { color: var(--text-muted); }

/* ===== CONTACT ===== */
#contact { padding-top: 120px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: rgba(244,197,66,0.08); border: 1px solid rgba(244,197,66,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.contact-value { font-size: 0.95rem; color: var(--text-light); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== ADMIN ===== */
#admin { background: rgba(0,0,0,0.18); padding-top: 100px; display: none; }
#admin.visible { display: block; }
.admin-login { max-width: 420px; margin: 0 auto; background: var(--card-bg); border: 1px solid rgba(244,197,66,0.15); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; }
.admin-login h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.admin-login p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.admin-panel { display: none; }
.admin-panel.visible { display: block; }
.admin-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.admin-tab { padding: 0.75rem 1.5rem; background: none; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); margin-bottom: -1px; }
.admin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }
.appt-card { background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.appt-name { font-weight: 600; font-size: 1rem; }
.appt-meta { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.2rem; }
.appt-time { font-size: 0.85rem; color: var(--gold); text-align: right; }
.btn-danger { background: rgba(220,50,50,0.12); border: 1px solid rgba(220,50,50,0.25); color: #f87171; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.8rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: var(--transition); }
.btn-danger:hover { background: rgba(220,50,50,0.28); }
.block-date-form { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 2rem; }
.blocked-dates-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.blocked-date-tag { display: flex; align-items: center; gap: 0.5rem; background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.2); color: #f87171; padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.8rem; }
.blocked-date-tag button { background: none; border: none; color: #f87171; cursor: pointer; font-size: 0.9rem; line-height: 1; }

/* ===== FOOTER ===== */
footer { background: rgba(0,0,0,0.28); border-top: 1px solid rgba(244,197,66,0.08); padding: 3rem 5vw; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.82rem; font-weight: 500; color: var(--text-muted); transition: var(--transition); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { max-width: 1280px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.78rem; color: var(--text-muted); display: flex; justify-content: space-between; align-items: center; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: #0d3048; border: 1px solid rgba(244,197,66,0.3); border-radius: var(--radius); padding: 1.25rem 1.75rem; max-width: 360px; z-index: 3000; transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: var(--shadow); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-title { font-weight: 600; color: var(--gold); margin-bottom: 0.3rem; font-size: 0.95rem; }
.toast-msg { font-size: 0.85rem; color: var(--text-light); }

/* ===== SUCCESS ===== */
.success-state { text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 3.5rem; margin-bottom: 1.25rem; }
.success-state h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.success-state p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== REMINDER BANNER ===== */
.reminder-banner { position: fixed; top: 72px; left: 0; right: 0; background: var(--gold); color: var(--navy); padding: 0.75rem 5vw; font-size: 0.88rem; font-weight: 600; z-index: 900; display: none; align-items: center; justify-content: space-between; gap: 1rem; }
.reminder-banner.show { display: flex; }
.reminder-banner button { background: none; border: none; cursor: pointer; font-size: 1.1rem; color: var(--navy); }

/* ===== SPINNER ===== */
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(10,43,62,0.3); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.7s linear infinite; vertical-align: middle; margin-right: 0.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — MOBILE FIRST
   ============================================================ */

/* ── Tablette 1024px ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo { aspect-ratio: 4/3; max-width: 380px; }
  .about-photo-badge { bottom: -10px; right: 10px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-wrapper { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* ── WHY SECTION 1024px ── */
  .why-section {
    grid-template-columns: 1fr !important;
    padding: 3.5rem !important;
    gap: 3rem !important;
  }
  .why-section::before { display: none !important; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { inset: 64px 0 0; }
  .reminder-banner { top: 64px; }

  section { padding: 72px 1.25rem; }
  .hero-pillars { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .modal { padding: 1.75rem; }

  /* ── WHY SECTION 768px ── */
  .why-section {
    grid-template-columns: 1fr !important;
    padding: 2.25rem !important;
    gap: 2.5rem !important;
    margin-top: 3rem !important;
  }
  .why-section > div:first-child { order: 1; }
  .why-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    order: 2;
  }
  .stat-box { padding: 1.25rem 1rem; }
  .stat-number { font-size: 2.4rem; }

  /* Slots calendar mobile */
  .slots-grid { grid-template-columns: repeat(5, 1fr); gap: 0.3rem; }
  .slot-btn { font-size: 0.62rem; padding: 0.38rem 0.1rem; }
  .day-column-head { padding: 0.65rem 0.25rem 0.4rem; }
  .day-date-num { font-size: 1.2rem; }
}

/* ── Petit mobile 480px ── */
@media (max-width: 480px) {
  .hero-name { font-size: 2.8rem; }
  .section-title { font-size: 2rem; }

  /* ── WHY SECTION 480px ── */
  .why-section {
    padding: 1.75rem !important;
    border-radius: var(--radius);
  }
  .why-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .stat-box { padding: 1rem 0.75rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }

  /* Services 1 col */
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 0.6rem; }
}
