/* ============================================
   SP CONCIERGERIE — Design System V3
   Ultra-Luxury Visual Identity
   ============================================ */

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

:root {
  --gold: #B8956A;
  --gold-light: #D4BA94;
  --gold-dark: #8C6D47;
  --gold-subtle: rgba(184, 149, 106, 0.06);
  --gold-border: rgba(184, 149, 106, 0.18);
  --white: #FDFCFA;
  --cream: #F7F5F2;
  --anthracite: #1A1A1A;
  --anthracite-light: #3D3D3D;
  --text-body: #5A5550;
  --text-muted: #9B9590;
  --border-light: rgba(0,0,0,0.05);
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--anthracite);
  background: var(--white);
  line-height: 1.7;
  overflow: hidden;
  height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}

.header-logo {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  color: var(--white);
  font-weight: 300;
  white-space: nowrap;
  transition: color 0.4s var(--ease);
  text-transform: uppercase;
}

.site-header.scrolled .header-logo { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding-bottom: 4px;
  position: relative;
  transition: color 0.3s var(--ease);
}

.site-header.scrolled .nav-links a { color: var(--anthracite-light); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}

.site-header.scrolled .hamburger span { background: var(--anthracite); }
.hamburger.open span { background: var(--anthracite) !important; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Header right mobile wrapper */
.header-right-mobile {
  display: none;
  align-items: center;
  gap: 16px;
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled .lang-switch {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  line-height: 1;
}

.site-header.scrolled .lang-btn {
  color: var(--text-muted);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 500;
}

.lang-btn:hover:not(.active) {
  color: rgba(255,255,255,0.85);
}

.site-header.scrolled .lang-btn:hover:not(.active) {
  color: var(--anthracite);
}

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.mobile-nav.open { opacity: 1; pointer-events: all; }

.mobile-nav a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--anthracite);
  font-weight: 300;
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--gold); }

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

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kenBurnsSlide 48s infinite linear;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide:nth-child(6) { animation-delay: 30s; }
.hero-slide:nth-child(7) { animation-delay: 36s; }
.hero-slide:nth-child(8) { animation-delay: 42s; }

@keyframes kenBurnsSlide {
  0% { opacity: 0; transform: scale(1); }
  3% { opacity: 1; }
  12.5% { opacity: 1; }
  15.5% { opacity: 0; }
  100% { opacity: 0; transform: scale(1.15); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.30) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo-wrapper {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: heroReveal 1.2s var(--ease-out) 0.2s forwards;
}

.hero-big-sp-img {
  width: 100%;
  max-width: 1200px;
  height: clamp(250px, 38vh, 450px);
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
  margin: 0 auto;
  display: block;
  transform: scale(1.6);
}

.hero-tagline {
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 0.6s forwards;
  margin-bottom: 0;
}

.hero-cta {
  margin-top: 28px;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 1s forwards;
}

.hero-tagline h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  font-style: italic;
}

.hero-tagline p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3em;
  font-weight: 200;
  text-transform: uppercase;
}

.hero-locations {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 28px;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 0.8s forwards;
}

/* Hero Cards */
.hero-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 960px;
}

.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 28px 22px;
  min-width: 160px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s var(--ease-out) calc(1s + var(--i) * 0.1s) forwards;
}

.hero-card:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(197,160,89,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.5;
}

.hero-card span {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.hero-card small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 2s forwards;
}

.scroll-hint span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.3);
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

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

/* ============================================
   MODAL SYSTEM
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  padding: 40px;
}

.modal.active {
  pointer-events: all;
  visibility: visible;
}

/* Backdrop */
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.modal.active .modal-backdrop {
  opacity: 1;
}

/* Panel */
.modal-panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: scale(0.98) translateY(10px);
  transition: all 0.6s var(--ease-out);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  border-radius: 8px;
}

.modal.active .modal-panel {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Close button */
.modal-close {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 10;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.modal-close svg {
  width: 18px; height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--gold-border);
  transform: rotate(90deg);
}

.modal-close:hover svg { stroke: var(--anthracite); }

/* Modal Hero */
.modal-hero {
  position: relative;
  height: 50vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.modal-hero--short {
  height: 35vh;
  min-height: 260px;
}

.modal-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.60) 100%
  );
}

.modal-hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 48px;
  max-width: 600px;
}

.modal-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out) 0.3s;
}

.modal.active .modal-label {
  opacity: 1;
  transform: translateY(0);
}

.modal-hero-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out) 0.4s;
}

.modal.active .modal-hero-content h2 {
  opacity: 1;
  transform: translateY(0);
}

.modal-hero-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out) 0.5s;
}

.modal.active .modal-hero-content p {
  opacity: 1;
  transform: translateY(0);
}

/* Modal Body */
.modal-body {
  padding: 48px;
}

/* Service Grid - V5 Magazine */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
}

.service-card {
  padding: 28px 24px 28px;
  background: transparent;
  border: none;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
  border-radius: 4px;
}

.service-card:hover {
  background: rgba(184, 149, 106, 0.04);
  transform: translateY(-2px);
}

.modal.active .service-card {
  opacity: 1;
  transform: translateY(0);
}

.modal.active .service-card:nth-child(1) { transition-delay: 0.3s; }
.modal.active .service-card:nth-child(2) { transition-delay: 0.35s; }
.modal.active .service-card:nth-child(3) { transition-delay: 0.4s; }
.modal.active .service-card:nth-child(4) { transition-delay: 0.45s; }
.modal.active .service-card:nth-child(5) { transition-delay: 0.5s; }
.modal.active .service-card:nth-child(6) { transition-delay: 0.55s; }

.service-card-num {
  display: none;
}

.service-card h3 {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--anthracite);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  padding-top: 16px;
  position: relative;
}

.service-card h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

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

/* CTA */
.modal-cta {
  text-align: center;
  padding: 20px 0 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s var(--ease-out) 1.3s;
}

.modal.active .modal-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Modal body buttons need gold border instead of white */
.modal-body .btn-gold {
  border-color: var(--gold-border);
  color: var(--anthracite);
}

.modal-body .btn-gold:hover {
  color: var(--white);
  border-color: var(--gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 56px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.btn-gold::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover { border-color: var(--gold); transform: none; box-shadow: none; }
.btn-gold span { position: relative; z-index: 1; }

/* ============================================
   CONTACT TABS & FORM
   ============================================ */
.contact-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-light);
}

.contact-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-bottom: -1px;
}

.contact-tab svg {
  opacity: 0.5;
  transition: opacity 0.3s;
}

.contact-tab:hover {
  color: var(--anthracite);
}

.contact-tab:hover svg {
  opacity: 0.8;
}

.contact-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  font-weight: 500;
}

.contact-tab.active svg {
  opacity: 1;
  stroke: var(--gold);
}

.contact-tab-content {
  display: none;
}

.contact-tab-content.active {
  display: block;
}

/* Label hint */
.label-hint {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--gold);
  margin-left: 8px;
  font-style: italic;
}

/* Form error */
.form-error {
  background: rgba(220, 53, 69, 0.06);
  border: 1px solid rgba(220, 53, 69, 0.15);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: #b91c2e;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Booking intro */
.booking-intro {
  text-align: center;
  margin-bottom: 28px;
}

.booking-intro p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-body);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
}

/* Calendly embed */
.calendly-embed {
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.calendly-embed iframe {
  width: 100%;
  min-height: 630px;
  border: none;
}

.calendly-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 400px;
  color: var(--text-muted);
}

.calendly-placeholder-icon svg {
  stroke: var(--gold-border);
}

.calendly-placeholder p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--anthracite);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  font-weight: 300;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ============================================
   DATE RANGE PICKER
   ============================================ */
.form-group--dates {
  position: relative;
}

.date-range-picker {
  position: relative;
}

.date-range-display {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--anthracite);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
}

.date-range-display:hover {
  border-color: var(--gold-border);
}

.date-range-display.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.1);
}

.date-range-placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.date-range-value {
  font-weight: 400;
  color: var(--anthracite);
  letter-spacing: 0.02em;
}

.calendar-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(0,0,0,0.06);
  padding: 24px;
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.calendar-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cal-month-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--anthracite);
  letter-spacing: 0.04em;
}

.cal-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  cursor: pointer;
  color: var(--anthracite);
  transition: all 0.2s;
}

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

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--anthracite);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  background: none;
  border: none;
  font-family: var(--font-sans);
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: var(--gold-subtle);
  color: var(--gold-dark);
}

.cal-day--today {
  font-weight: 600;
  color: var(--gold);
}

.cal-day--disabled {
  color: var(--border-light);
  cursor: default;
}

.cal-day--empty {
  cursor: default;
}

.cal-day--selected {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.cal-day--in-range {
  background: rgba(197, 160, 89, 0.12);
  border-radius: 0;
}

.cal-day--range-start {
  border-radius: 50% 0 0 50%;
}

.cal-day--range-end {
  border-radius: 0 50% 50% 0;
}

.cal-day--range-start.cal-day--range-end {
  border-radius: 50%;
}

.calendar-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.cal-clear,
.cal-confirm {
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.cal-clear {
  background: none;
  color: var(--text-muted);
}

.cal-clear:hover {
  color: var(--anthracite);
}

.cal-confirm {
  background: var(--gold);
  color: var(--white);
}

.cal-confirm:hover {
  background: var(--gold-dark);
}

.form-submit {
  text-align: center;
  margin-top: 28px;
}

/* ============================================
   À PROPOS
   ============================================ */
.apropos-body {
  padding: 48px;
}

.apropos-intro {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.apropos-lead {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--anthracite);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.01em;
  font-style: italic;
}

.apropos-story h3 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 36px;
  margin-bottom: 16px;
}

.apropos-story h3:first-child {
  margin-top: 0;
}

.apropos-story p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.75rem; letter-spacing: 0.18em; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .header-right-mobile { display: flex; }
  .mobile-nav { display: flex; }

  .header-inner { padding: 0 20px; }

  .service-grid { grid-template-columns: 1fr; }

  .modal { padding: 16px; }

  .modal-panel {
    width: 100%;
    max-width: 100%;
    max-height: 95vh;
  }

  .modal-body { padding: 32px 24px; }
  .modal-hero-content { padding: 32px 24px; }

  .hero-big-sp-img {
    height: clamp(180px, 30vh, 350px);
    transform: scale(1.3);
  }

  .hero-locations { font-size: 1rem; letter-spacing: 0.18em; }

  .btn-gold { padding: 16px 40px; font-size: 0.8rem; }

  .apropos-body { padding: 32px 24px; }
  .apropos-lead { font-size: 1.25rem; }
}

@media (max-width: 600px) {
  /* Header - bigger logo */
  .header-inner { padding: 0 16px; }
  .header-logo { font-size: 0.95rem; letter-spacing: 0.2em; }

  /* Hero - shift content UP on mobile */
  .hero { padding-bottom: 12vh; }
  .hero-content { padding: 0 20px; }
  .hero-logo-wrapper { margin-bottom: -20px; }
  .hero-big-sp-img {
    height: clamp(240px, 40vh, 420px);
    transform: scale(2);
  }
  .hero-tagline { margin-top: -30px; }
  .hero-tagline h1 { font-size: clamp(2.6rem, 10vw, 3.6rem); margin-bottom: 6px; }
  .hero-tagline p { font-size: 1rem; letter-spacing: 0.2em; }
  .hero-locations { font-size: 0.95rem; letter-spacing: 0.15em; margin-top: 8px; }
  .hero-cta { margin-top: 28px; }

  /* Modals - safe area for iPhone notch/Dynamic Island */
  /* Modals - STRONG overlay (big clickable area to close) */
  .modal { padding: 40px 14px 20px; }
  .modal-panel {
    max-height: 82vh;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  }

  .modal-close {
    position: sticky;
    top: 10px;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: -50px;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 100;
  }
  .modal-close svg { width: 14px; height: 14px; stroke: #fff; }

  .modal-hero { height: 32vh; min-height: 200px; border-radius: 20px 20px 0 0; }
  .modal-hero--short { height: 26vh; min-height: 170px; }
  .modal-hero-content h2 { font-size: 1.4rem; }
  .modal-hero-content p { font-size: 0.9rem; }
  .modal-hero-content { padding: 20px 18px; }
  .modal-body { padding: 24px 18px; }

  /* Service cards - bigger */
  .service-card { padding: 20px 16px; }
  .service-card h3 { font-size: 1.3rem; }
  .service-card p { font-size: 1rem; line-height: 1.75; }

  .modal-hero-content h2 { font-size: 1.6rem; line-height: 1.4; }

  /* Forms - bigger */
  .form-row { grid-template-columns: 1fr; }
  .form-group label { font-size: 0.8rem; }
  .form-group input,
  .form-group textarea { font-size: 1rem; padding: 14px 16px; }

  .btn-gold { padding: 16px 32px; font-size: 0.78rem; letter-spacing: 0.2em; }

  /* About */
  .apropos-body { padding: 28px 20px; }
  .apropos-lead { font-size: 1.15rem; line-height: 1.7; }
  .apropos-story p { font-size: 1rem; line-height: 1.8; }

  /* Contact tabs */
  .contact-tab { font-size: 0.72rem; padding: 14px 16px; }
  .booking-intro p { font-size: 1rem; }

  .lang-btn { font-size: 0.6rem; padding: 4px 10px; }

  /* Mobile nav overlay */
  .mobile-nav a { font-size: 1.1rem; }
}

@media (max-width: 380px) {
  .header-logo { font-size: 0.85rem; letter-spacing: 0.15em; }
  .hero-tagline h1 { font-size: 2rem; }
  .hero-tagline p { font-size: 0.82rem; }
  .btn-gold { padding: 14px 24px; font-size: 0.72rem; }
  .lang-btn { padding: 4px 8px; font-size: 0.55rem; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.88rem; }
}

