/* ===========================================================
   LA BAIE DU LAC — BASE STYLESHEET
   Design system, reset, typography, global components
   =========================================================== */

/* -------- Google Fonts -------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,900&family=Inter:wght@300;400;500;600&display=swap');

/* -------- Design Tokens -------- */
:root {
  /* Colors */
  --terracotta:      #C4664A;
  --terracotta-dark: #A0503A;
  --terracotta-deep: #7A3C2A;
  --beige:           #F5EDD8;
  --beige-warm:      #EDD9B4;
  --beige-dark:      #D4B896;
  --cream:           #FBF6EE;
  --brown-soft:      #8B6347;
  --text-dark:       #2C1810;
  --text-light:      #FBF6EE;
  --text-muted:      rgba(251,246,238,0.65);
  --glass-light:     rgba(251,246,238,0.12);
  --glass-border:    rgba(251,246,238,0.20);
  --gold-star:       #F5A623;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-py: clamp(60px, 8vw, 120px);
  --container:  min(1200px, 92vw);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(44,24,16,0.18);
  --shadow-card-lg: 0 20px 60px rgba(44,24,16,0.28);
  --shadow-glow: 0 0 40px rgba(196,102,74,0.25);
  --shadow-glow-strong: 0 0 60px rgba(196,102,74,0.45);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

a { color: inherit; text-decoration: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

ul, ol { list-style: none; }

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

h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(32px, 4.2vw, 56px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
h4 { font-size: clamp(18px, 1.4vw, 22px); }

p { font-size: clamp(15px, 1.05vw, 17px); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-size: 12px;
}

/* -------- Layout helpers -------- */
.container { width: var(--container); margin-inline: auto; }

.section { padding-block: var(--section-py); position: relative; }

/* -------- Topographic SVG pattern (reusable) -------- */
.topo-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' fill='none' stroke='currentColor' stroke-width='1.2'><path d='M0 120 Q 200 80 400 140 T 800 100 T 1200 160'/><path d='M0 200 Q 250 160 500 220 T 1000 180 T 1200 220'/><path d='M0 280 Q 180 240 380 300 T 760 260 T 1200 300'/><path d='M0 360 Q 220 320 460 380 T 920 340 T 1200 380'/><path d='M0 440 Q 200 400 400 460 T 800 420 T 1200 460'/><path d='M0 520 Q 240 480 500 540 T 1000 500 T 1200 540'/><path d='M0 600 Q 200 560 400 620 T 800 580 T 1200 620'/><path d='M0 680 Q 220 640 460 700 T 920 660 T 1200 700'/><path d='M150 80 Q 350 40 550 100 T 950 60 T 1200 90'/><path d='M0 760 Q 200 720 400 780 T 800 740 T 1200 780'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.12;
  color: var(--beige);
}

.topo-pattern--dark { color: var(--terracotta-deep); opacity: 0.10; }
.topo-pattern--light { color: var(--beige-dark); opacity: 0.08; }

/* -------- Buttons (premium with shine sweep) -------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 280ms var(--ease-out), box-shadow 350ms var(--ease), background 300ms var(--ease);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.32) 50%,
    transparent 70%);
  transform: translateX(-120%);
  transition: transform 800ms var(--ease-out);
  pointer-events: none;
  z-index: 1;
}

.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(0.96) translateY(0); }

.btn--cream {
  background: linear-gradient(180deg, var(--beige), var(--beige-warm));
  color: var(--terracotta-dark);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.6),
    0 8px 24px rgba(122,60,42,0.18),
    0 2px 6px rgba(0,0,0,0.10);
}
.btn--cream:hover {
  background: linear-gradient(180deg, #fff8e7, var(--beige-warm));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 12px 36px rgba(196,102,74,0.30),
    0 4px 12px rgba(0,0,0,0.12);
}

.btn--terracotta {
  background: linear-gradient(180deg, var(--terracotta-dark), var(--terracotta-deep));
  color: var(--beige);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 8px 24px rgba(122,60,42,0.40),
    0 2px 6px rgba(0,0,0,0.20);
}

/* Premium shine sweep — identical to the navbar's "Je Réserve" CTA */
.btn--terracotta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.30) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease);
  pointer-events: none;
  z-index: -1; /* sits between bg gradient and text inside .btn isolation */
}

.btn--terracotta:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 12px 32px rgba(196,102,74,0.55),
    0 4px 12px rgba(0,0,0,0.20);
}
.btn--terracotta:hover::before { transform: translateX(100%); }

.btn--glass {
  background:
    linear-gradient(135deg, rgba(251,246,238,0.22) 0%, rgba(251,246,238,0.08) 100%);
  color: var(--beige);
  border: 1px solid rgba(251,246,238,0.32);
  backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.35),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.18),
    0 12px 32px rgba(44,24,16,0.22);
}
.btn--glass:hover {
  background:
    linear-gradient(135deg, rgba(251,246,238,0.34) 0%, rgba(251,246,238,0.14) 100%);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.45),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.25),
    0 16px 40px rgba(44,24,16,0.30);
}

/* ===========================================================
   FROSTED GLASS SYSTEM — premium 21st-dev inspired
   Multi-layer: blur + tint + noise + specular inner highlight
   Reusable utility: add .frosted to any element.
   =========================================================== */

.frosted,
.glass-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(251,246,238,0.16) 0%, rgba(251,246,238,0.05) 100%);
  border: 1px solid rgba(251,246,238,0.35);
  backdrop-filter: blur(36px) saturate(200%) contrast(1.08) brightness(1.05);
  -webkit-backdrop-filter: blur(36px) saturate(200%) contrast(1.08) brightness(1.05);
  border-radius: var(--radius-md);
  /* Specular inner highlight — gives the impression of light catching the edge */
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.35),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 18px 50px rgba(44,24,16,0.28),
    0 4px 12px rgba(44,24,16,0.10);
  overflow: hidden;
  isolation: isolate;
}

/* Top sheen highlight */
.frosted::before,
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 35%),
    radial-gradient(120% 80% at 50% -10%, rgba(255,255,255,0.20), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle noise/texture overlay for realism */
.frosted::after,
.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.65 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 240px 240px;
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Variant on warm light backgrounds (beige sections) */
.frosted--warm {
  background:
    linear-gradient(135deg, rgba(196,102,74,0.14) 0%, rgba(196,102,74,0.04) 100%);
  border-color: rgba(196,102,74,0.28);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.55),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(122,60,42,0.10),
    0 18px 50px rgba(122,60,42,0.18),
    0 4px 12px rgba(122,60,42,0.08);
}

/* -------- Image placeholders (premium gradients + glow halo) -------- */
.placeholder {
  position: relative;
  background:
    radial-gradient(circle at 25% 20%, rgba(245,166,35,0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139,99,71,0.85), transparent 55%),
    linear-gradient(135deg, var(--terracotta-deep), var(--brown-soft) 60%, #4a2820);
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 24px 60px rgba(44,24,16,0.35),
    0 8px 24px rgba(122,60,42,0.25);
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}

.placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.placeholder:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 32px 80px rgba(44,24,16,0.45),
    0 12px 32px rgba(196,102,74,0.35);
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600' fill='none' stroke='%23F5EDD8' stroke-width='1.2' opacity='0.55'><path d='M0 80 Q 160 50 320 90 T 640 60 T 800 100'/><path d='M0 160 Q 200 130 400 170 T 800 150'/><path d='M0 240 Q 140 210 280 250 T 560 220 T 800 260'/><path d='M0 320 Q 180 290 360 330 T 720 300 T 800 320'/><path d='M0 400 Q 160 370 320 410 T 640 380 T 800 410'/><path d='M0 480 Q 200 450 400 490 T 800 470'/><path d='M0 560 Q 140 530 280 570 T 560 540 T 800 580'/></svg>");
  background-size: cover;
  opacity: 0.45;
  mix-blend-mode: screen;
  z-index: 1;
}

.placeholder__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--beige);
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.placeholder__label svg { width: 36px; height: 36px; opacity: 0.85; }

.placeholder__label span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.placeholder__label small {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  opacity: 0.6;
}

/* Variants */
.placeholder--tall { aspect-ratio: 3/4; }
.placeholder--square { aspect-ratio: 1/1; }
.placeholder--wide { aspect-ratio: 16/9; }

.placeholder--lake {
  background:
    radial-gradient(circle at 30% 40%, rgba(245,237,216,0.25), transparent 55%),
    linear-gradient(160deg, #4a6b5e, #2c1810 65%, var(--terracotta-deep));
}

.placeholder--food {
  background:
    radial-gradient(circle at 50% 50%, rgba(196,102,74,0.6), transparent 60%),
    linear-gradient(135deg, #1a0f0a, var(--terracotta-deep));
}

.placeholder--terrace {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(245,166,35,0.4), transparent 55%),
    linear-gradient(140deg, var(--terracotta-deep), var(--brown-soft));
}

/* Floating glass badge over placeholder — frosted */
.placeholder__badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(251,246,238,0.30) 0%, rgba(251,246,238,0.12) 100%);
  border: 1px solid rgba(251,246,238,0.45);
  backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  color: var(--beige);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.50),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.25),
    0 12px 28px rgba(44,24,16,0.32);
  transition: transform 300ms var(--ease), background 300ms var(--ease), box-shadow 300ms var(--ease);
}

.placeholder__badge:hover {
  background: linear-gradient(135deg, rgba(251,246,238,0.42), rgba(251,246,238,0.20));
  transform: translateX(-50%) translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 14px 36px rgba(44,24,16,0.40);
}

.placeholder__badge--corner {
  top: 20px;
  bottom: auto;
  left: 20px;
  transform: none;
}
.placeholder__badge--corner:hover { transform: translateY(-3px) scale(1.04); }

/* Photos CTA positioned over a placeholder — uses .btn .btn--terracotta styling */
.placeholder__cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 44px;
  padding: 0 26px;
  font-size: 12px;
}
.placeholder__cta:hover { transform: translateX(-50%) translateY(-3px); }
.placeholder__cta:active { transform: translateX(-50%) scale(0.96); }

/* -------- Social proof pill — frosted -------- */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px 8px 8px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(251,246,238,0.24) 0%, rgba(251,246,238,0.08) 100%);
  border: 1px solid rgba(251,246,238,0.32);
  backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(200%) contrast(1.05);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.40),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.20),
    0 10px 28px rgba(44,24,16,0.20);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  cursor: pointer;
  text-decoration: none;
}
.social-proof:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.50),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.25),
    0 14px 36px rgba(44,24,16,0.28);
}

.social-proof--light {
  background: linear-gradient(135deg, rgba(196,102,74,0.18) 0%, rgba(196,102,74,0.04) 100%);
  border-color: rgba(196,102,74,0.32);
  box-shadow:
    inset 1.5px 1.5px 0.5px 0 rgba(255,255,255,0.55),
    inset -1px -1px 0.5px 0.5px rgba(255,255,255,0.30),
    0 10px 28px rgba(122,60,42,0.14);
}

.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 600;
  color: var(--beige);
  border: 2px solid var(--terracotta);
  margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1) { background: #8B6347; }
.avatars span:nth-child(2) { background: #A0503A; }
.avatars span:nth-child(3) { background: #C4664A; }

.social-proof__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--beige);
}
.social-proof--light .social-proof__text { color: var(--terracotta-dark); }

.social-proof__stars { color: var(--gold-star); letter-spacing: 0.05em; font-size: 14px; }

/* -------- Footer (global) -------- */
.site-footer {
  background: var(--terracotta-dark);
  color: var(--beige);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.footer-col--left { display: flex; flex-direction: column; gap: 24px; }
.footer-col--center { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-col--right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; text-align: right; }

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
  transition: background 250ms var(--ease), transform 250ms var(--ease);
}
.footer-socials a:hover { background: rgba(251,246,238,0.22); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; color: var(--beige); }

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--beige);
}
.footer-logo svg { width: 50px; height: 50px; }

/* Real PNG logo in footer — cream version on dark bg */
.footer-logo__real {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(44,24,16,0.50));
  transition: transform 400ms var(--ease), filter 400ms var(--ease);
}
.footer-logo:hover .footer-logo__real {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 28px rgba(44,24,16,0.60));
}

.footer-bottom {
  width: var(--container);
  margin: 60px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--beige); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col--left, .footer-col--right { align-items: center; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* -------- Reveal animations base state -------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Disable animations if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

/* -------- Utility -------- */
.text-center { text-align: center; }
.italic { font-style: italic; }
.terracotta { color: var(--terracotta); }
.beige { color: var(--beige); }
.muted { color: var(--text-muted); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }

/* ===========================================================
   21st-DEV INSPIRED PREMIUM COMPONENTS
   =========================================================== */

/* ---------- Animated gradient border (conic) ----------
   Wrap any card with .gradient-border and the conic gradient
   rotates around the edge endlessly. Pure CSS, no JS. */
.gradient-border {
  position: relative;
  isolation: isolate;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(245,166,35,0.6) 60deg,
    rgba(245,237,216,0.8) 120deg,
    transparent 180deg,
    transparent 360deg
  );
  z-index: -1;
  animation: rotate-border 6s linear infinite;
  opacity: 0;
  transition: opacity 400ms var(--ease);
}
.gradient-border:hover::before { opacity: 1; }

@keyframes rotate-border {
  to { transform: rotate(360deg); }
}

/* ---------- Aurora ribbon (background blur halos) ----------
   Place inside any section to add soft animated color blobs. */
.aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora__blob {
  position: absolute;
  width: 50vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-blob 18s ease-in-out infinite alternate;
}
.aurora__blob--1 { top: -10%; left: -10%; background: radial-gradient(circle, var(--terracotta), transparent 65%); }
.aurora__blob--2 { bottom: -15%; right: -10%; background: radial-gradient(circle, #f5a623, transparent 65%); animation-delay: -6s; }
.aurora__blob--3 { top: 30%; right: 30%; background: radial-gradient(circle, var(--beige-warm), transparent 65%); animation-delay: -12s; opacity: 0.3; }

@keyframes float-blob {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ---------- Spotlight card (cursor-following light) ----------
   Add .spotlight to a card and set --mx/--my via JS for the glow
   to follow the mouse. */
.spotlight {
  position: relative;
  isolation: isolate;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(245,166,35,0.18),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
  z-index: 1;
}
.spotlight:hover::before { opacity: 1; }

/* ---------- Shimmer text (gold gradient sweep) ---------- */
.shimmer-text {
  background: linear-gradient(
    110deg,
    var(--beige) 0%,
    var(--beige) 40%,
    #f5d089 50%,
    var(--beige) 60%,
    var(--beige) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

/* For dark text on light backgrounds (plein-air hero) */
.shimmer-text--terra {
  background: linear-gradient(
    110deg,
    var(--terracotta-dark) 0%,
    var(--terracotta-dark) 40%,
    var(--terracotta) 50%,
    var(--terracotta-dark) 60%,
    var(--terracotta-dark) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

/* ---------- Glow ring (around CTAs) ---------- */
.glow-ring {
  position: relative;
}
.glow-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: linear-gradient(135deg, #f5a623, var(--terracotta), var(--beige-warm), #f5a623);
  background-size: 300% 300%;
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  animation: glow-pan 6s linear infinite;
  transition: opacity 400ms var(--ease);
}
.glow-ring:hover::before { opacity: 0.7; }

@keyframes glow-pan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- Marquee badge for new items ---------- */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.40);
  color: #f5a623;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.live-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f5a623;
  box-shadow: 0 0 0 0 rgba(245,166,35,0.6);
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(245,166,35,0.7); }
  100% { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
}

/* ---------- Reveal sweep underline (links) ---------- */
.link-sweep {
  position: relative;
  display: inline-block;
}
.link-sweep::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 400ms var(--ease-out);
}
.link-sweep:hover::after { transform-origin: left; transform: scaleX(1); }

/* ===========================================================
   RESERVATION MODAL
   =========================================================== */
.resa-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}
.resa-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.resa-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 4, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  cursor: pointer;
}
.resa-modal__card {
  position: relative;
  z-index: 1;
  background: rgba(255, 252, 248, 0.16);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  padding: 44px 48px 40px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 32px 80px rgba(0,0,0,0.45);
  transform: scale(0.94) translateY(18px);
  transition: transform 360ms cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 340px;
  width: 100%;
}
.resa-modal.is-open .resa-modal__card {
  transform: scale(1) translateY(0);
}
.resa-modal__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige-warm);
  opacity: 0.70;
  margin-bottom: 8px;
}
.resa-modal__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--beige);
  margin-bottom: 6px;
  line-height: 1.2;
}
.resa-modal__sub {
  font-size: 13.5px;
  color: var(--beige-warm);
  opacity: 0.75;
  margin-bottom: 28px;
  line-height: 1.6;
}
.resa-modal__qr-wrap {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  padding: 14px;
  background: #fff8f0;
  box-shadow:
    0 8px 28px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.60);
  margin-bottom: 20px;
}
.resa-modal__qr-wrap canvas,
.resa-modal__qr-wrap img {
  display: block;
  width: 180px !important;
  height: 180px !important;
}
.resa-modal__phone {
  font-size: 15px;
  letter-spacing: 0.07em;
  color: var(--beige-warm);
  opacity: 0.80;
}
.resa-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--beige);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.resa-modal__close:hover {
  background: rgba(255,255,255,0.24);
  transform: scale(1.1) rotate(90deg);
}
.resa-modal__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* ===========================================================
   THOMAS WEBDESIGN BUTTON (footer) — même style que .footer-socials a
   =========================================================== */
.footer-webdesign-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--glass-border);
  background: var(--glass-light);
  color: var(--beige);
  font-size: 12px;
  letter-spacing: 0.10em;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 250ms var(--ease), transform 250ms var(--ease);
  white-space: nowrap;
}
.footer-webdesign-btn:hover {
  background: rgba(251,246,238,0.22);
  transform: translateY(-2px);
}

/* ===========================================================
   THOMAS MODAL — webdesign contact
   Distinct from resa-modal: bottom-slide, cool tone, no QR
   =========================================================== */
.thomas-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.thomas-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.thomas-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.30);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  cursor: pointer;
}
.thomas-modal__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: rgba(14, 20, 34, 0.78);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(120, 160, 220, 0.22);
  border-radius: 20px;
  padding: 32px 36px 30px;
  box-shadow:
    inset 0 1px 0 rgba(160,200,255,0.15),
    0 24px 60px rgba(0,0,0,0.45),
    0 0 0 1px rgba(0,0,0,0.20);
  transform: translateY(32px);
  transition: transform 380ms cubic-bezier(0.34, 1.46, 0.64, 1);
}
.thomas-modal.is-open .thomas-modal__card {
  transform: translateY(0);
}
.thomas-modal__tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #7ab4ff;
  background: rgba(100,160,255,0.12);
  border: 1px solid rgba(100,160,255,0.25);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.thomas-modal__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: #e8f0ff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.thomas-modal__text {
  font-size: 13.5px;
  color: rgba(200,215,240,0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}
.thomas-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #3a7bd5, #2558a8);
  color: #e8f4ff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(58,123,213,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.thomas-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58,123,213,0.55), inset 0 1px 0 rgba(255,255,255,0.22);
}
.thomas-modal__cta svg {
  width: 17px; height: 17px;
  stroke: currentColor;
  flex-shrink: 0;
}
.thomas-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(200,215,240,0.70);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.thomas-modal__close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.1) rotate(90deg);
}
.thomas-modal__close svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}
