/* ============================================
   Loft du Château — Dark Luxury Industrial
   Redesigned 2026
   ============================================ */

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

:root {
  --ink:        #0e0c0a;
  --ink-2:      #161210;
  --ink-3:      #1e1a14;
  --ink-4:      #2a2218;
  --gold:       #c8935a;
  --gold-light: #e0b07a;
  --gold-pale:  #f0d8b8;
  --cream:      #f2ede5;
  --cream-2:    #d8cfc2;
  --muted:      #8a7f70;
  --white:      #ffffff;
  --border:     rgba(200, 147, 90, 0.15);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;

  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Grain texture overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

/* ─────────────────────────────────────────── Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}

.subheadline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
}

.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream-2);
  font-weight: 300;
}

/* ─────────────────────────────────────────── Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: 7rem 0; }

/* ─────────────────────────────────────────── Gold line decoration */
.gold-rule {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.gold-rule--center {
  margin: 0 auto 1.5rem;
}

/* ─────────────────────────────────────────── Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 237, 229, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ─────────────────────────────────────────── HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(14, 12, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.logo em {
  font-style: italic;
  color: var(--gold);
}

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

.main-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 0.5rem 0;
  position: relative;
}

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

.main-nav a:hover { color: var(--cream); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.6rem 1.5rem !important;
  letter-spacing: 0.1em;
}

.nav-cta:hover { background: var(--gold-light); }
.nav-cta::after { display: none !important; }

.lang-switch {
  font-size: 0.7rem;
  color: var(--muted) !important;
  border: 1px solid rgba(138, 127, 112, 0.3);
  padding: 0.4rem 0.9rem !important;
}

.lang-switch:hover { color: var(--cream) !important; border-color: var(--cream-2); }
.lang-switch::after { display: none !important; }

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}

/* ─────────────────────────────────────────── HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/conference-room.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 12, 10, 0.2) 0%,
    rgba(14, 12, 10, 0.4) 40%,
    rgba(14, 12, 10, 0.85) 85%,
    rgba(14, 12, 10, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-location .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--cream);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--cream-2);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
  color: var(--muted);
}

.hero-scroll .scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  color: var(--muted);
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────── STATS STRIP */
.stats-strip {
  background: var(--ink-2);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  padding: 2rem 3rem;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

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

.stat-desc {
  font-size: 0.9rem;
  color: var(--cream-2);
  font-weight: 300;
}

/* ─────────────────────────────────────────── USE CASES */
.use-cases {
  background: var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-number {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: var(--ink-4);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.use-case-card {
  background: var(--ink-2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}

.use-case-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.use-case-card:hover { background: var(--ink-3); }
.use-case-card:hover::before { width: 100%; }

.use-case-num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.use-case-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 400;
}

.use-case-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ─────────────────────────────────────────── GALLERY */
.gallery-section {
  background: var(--ink-2);
  padding: 6rem 0;
  overflow: hidden;
}

.gallery-header {
  padding: 0 2.5rem;
  max-width: 1280px;
  margin: 0 auto 3.5rem;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  padding: 0 2.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--ink-3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
  display: block;
}

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

/* Gallery: 7 items — conf room large, 2 right, then 4 across including small bathroom */
.gallery-item:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 420px;
}

.gallery-item:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
  min-height: 204px;
}

.gallery-item:nth-child(3) {
  grid-column: 8 / 11;
  grid-row: 2 / 3;
  min-height: 208px;
}

.gallery-item:nth-child(4) {
  grid-column: 11 / 13;
  grid-row: 2 / 3;
  min-height: 208px;
}

.gallery-item:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  min-height: 250px;
}

.gallery-item:nth-child(6) {
  grid-column: 4 / 9;
  grid-row: 3 / 4;
  min-height: 250px;
}

/* Item 7 (bathroom) — smaller, rightmost column */
.gallery-item:nth-child(7),
.gallery-item.gallery-item--small {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
  min-height: 250px;
}

/* ─────────────────────────────────────────── FEATURES */
.features-section {
  background: var(--ink);
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.features-text .headline {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.features-text .body-text {
  margin-bottom: 3rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item:first-child { border-top: 1px solid var(--border); }

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-info h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

.features-image {
  position: relative;
  height: 600px;
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 40%;
  border: 1px solid var(--border);
  z-index: -1;
}

/* ─────────────────────────────────────────── VIDEO SECTION */
.video-section {
  background: var(--ink-2);
  padding: 6rem 0;
}

.video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--ink-3);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--ink-3);
}

.play-ring {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.play-ring:hover {
  background: var(--gold);
  transform: scale(1.08);
}

.play-ring svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  margin-left: 3px;
  transition: fill 0.3s;
}

.play-ring:hover svg { fill: var(--ink); }

.video-placeholder p {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────── PRICING */
.pricing-section {
  background: var(--ink-3);
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pricing-content .headline { color: var(--cream); margin-bottom: 1.5rem; }
.pricing-content .body-text { margin-bottom: 2rem; }

.price-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.price-from {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.price-unit {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-2);
  font-weight: 300;
}

.price-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

/* ─────────────────────────────────────────── BOOKING */
.booking-section {
  background: var(--ink);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.booking-text .headline { color: var(--cream); margin-bottom: 1.5rem; }
.booking-text .body-text { margin-bottom: 3rem; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-entry:first-child { border-top: 1px solid var(--border); }

.contact-entry-icon {
  width: 38px;
  height: 38px;
  background: var(--ink-4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-entry-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-entry-body small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-entry-body a, .contact-entry-body p {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 400;
  margin: 0;
}

.contact-entry-body a:hover { color: var(--gold); }

.booking-calendar-wrap {
  background: var(--ink-2);
  border: 1px solid var(--border);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.calendar-placeholder-inner {
  text-align: center;
}

.calendar-placeholder-inner svg {
  width: 48px;
  height: 48px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1;
  margin: 0 auto 1rem;
}

.calendar-placeholder-inner p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* ─────────────────────────────────────────── LOCATION */
.location-section {
  background: var(--ink-2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.location-text .headline { color: var(--cream); margin-bottom: 1rem; }

.location-address {
  font-size: 1.05rem;
  color: var(--cream-2);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}

.location-address strong { color: var(--cream); font-weight: 500; }

.location-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.location-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-2);
  font-weight: 300;
}

.location-perks li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.map-container {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%) contrast(0.9) brightness(0.75);
}

/* ─────────────────────────────────────────── FOOTER */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

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

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-col p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

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

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─────────────────────────────────────────── RESPONSIVE */
@media (max-width: 1024px) {
  .section-intro { grid-template-columns: 1fr; gap: 2rem; }
  .section-number { font-size: 5rem; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; }
  .features-image { height: 400px; }
  .pricing-inner { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item.gallery-item--small {
    grid-column: auto;
    grid-row: auto;
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 1.25rem; }
  section { padding: 5rem 0; }

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

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 12, 10, 0.98);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    backdrop-filter: blur(20px);
  }

  .main-nav.active { transform: translateX(0); }

  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .main-nav a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item { padding: 1.5rem; }

  .use-cases-grid { grid-template-columns: 1fr; gap: 1px; }

  .gallery-masonry { grid-template-columns: 1fr; padding: 0 1.25rem; gap: 4px; }
  .gallery-header { padding: 0 1.25rem; }

  .features-image-accent { display: none; }

  .booking-calendar-wrap { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}
/* ============================================
   Loft du Château — Formulaire de contact
   Remplace le placeholder calendrier
   Entièrement piloté par les variables du thème
   ============================================ */

.booking-form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}

.booking-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.form-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.form-field label span {
  color: var(--gold);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 0.1rem;
  width: 100%;
  transition: border-color 0.3s var(--ease);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.55;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
}

/* Date & number pickers keep the theme colour */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: var(--picker-filter, invert(70%) sepia(30%) saturate(500%) hue-rotate(350deg));
  cursor: pointer;
  opacity: 0.8;
}

.form-submit {
  margin-top: 0.75rem;
  justify-content: center;
  width: 100%;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  font-weight: 300;
  margin: 0;
}

.form-note a {
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.form-note a:hover {
  border-bottom-color: var(--gold);
}

.form-consent {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .booking-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================
   V3 — Option A finale (août 2026)
   Nouvelle image d'accueil pâle, logo image,
   tour 3D remonté, réservation Squarespace
   ============================================ */

/* ── Hero : nouvelle photo lumineuse (option A) */
.hero { min-height: 104vh; }

.hero-bg {
  background: url('../images/hero-new.jpg') center 40%/cover no-repeat;
}

/* Voile allégé : on laisse respirer la lumière du haut de l'image,
   densité en bas pour la lisibilité du titre. */
.hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(14, 12, 10, 0.02) 0%,
    rgba(14, 12, 10, 0.14) 35%,
    rgba(14, 12, 10, 0.62) 72%,
    rgba(14, 12, 10, 0.92) 92%,
    rgba(14, 12, 10, 1) 100%
  );
}

/* Voile clair discret en haut : assoit le logo foncé et le menu
   sur la partie lumineuse de la photo. */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom,
    rgba(246, 242, 235, 0.72) 0%,
    rgba(246, 242, 235, 0.42) 40%,
    rgba(246, 242, 235, 0.14) 72%,
    rgba(246, 242, 235, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-location .label { color: var(--gold-pale); text-shadow: 0 1px 3px rgba(14,12,10,1), 0 1px 14px rgba(14,12,10,0.9); }
.hero-tagline { text-shadow: 0 1px 14px rgba(14,12,10,0.5); }

/* Halo doux derrière le bloc de texte du hero */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -4rem -6rem -3rem -5rem;
  background: radial-gradient(ellipse at 30% 46%, rgba(14,12,10,0.78) 0%, rgba(14,12,10,0.46) 42%, rgba(14,12,10,0.12) 66%, rgba(14,12,10,0) 80%);
  z-index: -1;
  pointer-events: none;
}

.hero-scroll { color: var(--cream-2); text-shadow: 0 1px 8px rgba(14,12,10,0.9); }
.hero-scroll .scroll-label { color: var(--cream-2); }

/* ── Logo image (SVG inline, couleur pilotée par `color`) */
.logo-svg {
  display: block;
  height: 78px;
  aspect-ratio: 1230.9 / 808.8;
  width: auto;
  transition: height 0.4s var(--ease), color 0.4s var(--ease);
}

.site-header .logo { color: #141111; }               /* foncé sur l'image pâle */
.site-header.scrolled .logo { color: #F9F8F3; }      /* crème sur fond sombre */
.site-header.scrolled .logo-svg { height: 52px; }
.site-header.nav-open .logo { color: #F9F8F3; }      /* menu mobile ouvert */

.footer-logo { display: inline-block; color: #F9F8F3; margin-bottom: 1.5rem; }
.footer-logo .logo-svg { height: 110px; }

/* ── Menu foncé par-dessus la photo pâle (état haut de page) */
.site-header:not(.scrolled):not(.nav-open) .main-nav:not(.active) a {
  color: #2a2218;
}
.site-header:not(.scrolled):not(.nav-open) .main-nav:not(.active) a:hover { color: #0e0c0a; }
.site-header:not(.scrolled):not(.nav-open) .main-nav:not(.active) .nav-cta {
  color: var(--ink) !important;
  background: var(--gold);
}
.site-header:not(.scrolled):not(.nav-open) .main-nav:not(.active) .lang-switch {
  color: #574c3e !important;
  border-color: rgba(42, 34, 24, 0.35);
}
.site-header:not(.scrolled):not(.nav-open) .main-nav:not(.active) .lang-switch:hover {
  color: #0e0c0a !important;
  border-color: #2a2218;
}
.site-header:not(.scrolled):not(.nav-open) .mobile-menu-toggle {
  border-color: rgba(42, 34, 24, 0.35);
}
.site-header:not(.scrolled):not(.nav-open) .mobile-menu-toggle span {
  background: #2a2218;
}

/* ── « personnes » sous les chiffres */
.stat-unit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  line-height: 1;
  margin: -0.15rem 0 0.7rem;
}

/* ── Tour virtuel 3D (avenue360) */
.video-container { min-height: 500px; }
@media (max-width: 768px) {
  .video-container { padding-bottom: 0; height: 460px; min-height: 0; }
}

/* ── Réservation : intro pleine largeur, contacts en grille,
     formulaire (Squarespace) en carte centrée dessous */
.booking-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.booking-text .body-text { max-width: 620px; margin-bottom: 2.5rem; }

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 3rem;
  max-width: 900px;
}

.booking-form-wrap {
  max-width: 780px;
  margin: 3.5rem auto 0;
}

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

/* ── Correctif menu mobile : logo et bouton au-dessus du voile,
     le bouton devient un X quand le menu est ouvert */
.site-header .logo,
.site-header .mobile-menu-toggle {
  position: relative;
  z-index: 95;
}

.site-header.nav-open .mobile-menu-toggle {
  border-color: rgba(242, 237, 229, 0.3);
}

.site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
