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

/* -- TOKENS -- */
:root {
  --pink:     #F5A0C0;
  --orange:   #F26419;
  --bordeaux: #7B1535;
  --olive:    #C5C878;
  --fuchsia:  #E0156A;
  --cream:    #FCF7EE;
  --yellow:   #FAF5CC;
  --forest:   #173325;
  --dark:     #1F1414;
  --white:    #ffffff;

  --font-serif:    'Playfair Display', serif;
  --font-display:  'Raleway', sans-serif;
  --font-sans:     'Poppins', sans-serif;
  --font-hand:     'Caveat', cursive;

  --radius-pill: 50px;
  --radius-card: 16px;
  --shadow: 4px 6px 18px rgba(0,0,0,0.18);
  --shadow-heavy: 6px 8px 24px rgba(0,0,0,0.25);
}

/* -- RESET -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--dark); overflow-x: hidden; hyphens: none; }
em, i { font-style: normal; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

/* -- NAV -- */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; height: 90px;
  background: var(--cream);
  border-bottom: 1px solid rgba(123,21,53,0.08);
}
.nav__logo { display: flex; align-items: center; height: 60px; }
.nav__logo img { height: 72px; width: auto; display: block; mix-blend-mode: multiply; }
.nav__links { display: flex; gap: 36px; }
.nav__links a {
  font-weight: 600; font-size: 14px; color: var(--dark);
  position: relative; transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--orange); }
.nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  width: 50px; height: 46px; border-radius: var(--radius-pill);
  background: var(--orange); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.nav__cta:hover { transform: scale(1.08); box-shadow: var(--shadow); }

/* -- MARQUEE -- */
.marquee {
  background: var(--bordeaux); padding: 14px 0; overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-style: normal; font-size: 16px;
  font-weight: 300; letter-spacing: .08em;
  color: var(--cream); padding-right: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -- SCALLOP BORDER -- */
.scallop {
  position: relative; overflow: visible;
}
.scallop::before {
  content: '';
  position: absolute; top: -26px; left: 0; right: 0; height: 52px;
  background: radial-gradient(circle at 50% 0%, var(--cream) 24px, transparent 25px);
  background-size: 52px 52px;
  background-repeat: repeat-x;
}
.scallop--bottom::after {
  content: '';
  position: absolute; bottom: -26px; left: 0; right: 0; height: 52px;
  background: radial-gradient(circle at 50% 100%, var(--cream) 24px, transparent 25px);
  background-size: 52px 52px;
  background-repeat: repeat-x;
}
.scallop--pink::before {
  background: radial-gradient(circle at 50% 0%, var(--pink) 24px, transparent 25px);
  background-size: 52px 52px; background-repeat: repeat-x;
}
.scallop--bordeaux::before {
  background: radial-gradient(circle at 50% 0%, var(--bordeaux) 24px, transparent 25px);
  background-size: 52px 52px; background-repeat: repeat-x;
}

/* -- POST-IT CARDS -- */
.postit {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  padding: 40px 36px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.postit:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.postit::before { display: none; }

/* -- BUTTONS -- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 26px; height: 52px; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-weight: 600; font-size: 14px;
  cursor: pointer; border: none; transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-heavy); }
.btn--orange  { background: var(--orange);   color: var(--white); }
.btn--bordeaux{ background: var(--bordeaux); color: var(--white); }
.btn--outline {
  background: transparent; border: 2px solid var(--olive); color: var(--cream);
  box-shadow: none;
}
.btn--outline:hover { background: var(--olive); color: var(--bordeaux); }
.btn--outline-dark {
  background: transparent; border: 2px solid var(--dark); color: var(--dark);
  box-shadow: none;
}
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }

/* -- STAT PILL -- */
.stat-pill {
  background: var(--pink); border-radius: 14px; padding: 16px 20px;
  text-align: center;
}
.stat-pill__number { font-family: var(--font-serif); font-size: 32px; color: var(--bordeaux); line-height: 1; }
.stat-pill__label  { font-size: 10px; font-weight: 700; color: var(--bordeaux); letter-spacing: .08em; margin-top: 4px; }

/* -- TAG PILL -- */
.tag {
  display: inline-block; background: var(--pink); color: var(--bordeaux);
  font-size: 12px; font-weight: 600; padding: 6px 18px;
  border-radius: var(--radius-pill);
}

/* -- FOOTER -- */
.footer {
  background: var(--dark); padding: 60px 80px 40px;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.footer__logo { display: flex; align-items: center; }
.footer__logo img { height: 44px; width: auto; display: block; background: var(--cream); border-radius: 8px; padding: 5px 10px; }
.footer__sub  { font-size: 13px; color: var(--cream); margin-top: 6px; }
.footer__links { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.footer__links a { font-size: 14px; }
.footer__legal { display: flex; align-items: flex-end; }
.footer__legal a { font-size: 12px; color: var(--cream); opacity: 0.4; transition: opacity .2s; }
.footer__legal a:hover { opacity: 0.8; }
.footer__links a { font-weight: 600; font-size: 14px; color: var(--cream); transition: color .2s; }
.footer__links a:hover { color: var(--orange); }
.footer__copy { font-size: 13px; color: rgba(200,160,160,0.6); margin-top: 16px; }

/* -- SECTION TITLES -- */
.section-title { font-family: var(--font-display); font-size: 60px; color: var(--bordeaux); line-height: 1.1; font-weight: 300; letter-spacing: .02em; }
.section-title em { font-style: normal; color: var(--orange); font-weight: 600; }
.section-title span { display: block; }

/* -- TITRE PATTERN GLOBAL -- */
[class*="__title"], [class*="__heading"], [class*="__h1"],
.page-hero__title, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--bordeaux);
  font-style: normal;
}
strong.accent, .bold-accent { font-weight: 600; }

/* -- PAGE HERO GLOBAL (identique sur toutes les pages) -- */
.page-hero {
  background: var(--cream);
  padding: 60px 80px 40px;
  border-bottom: 1px solid rgba(123,21,53,0.07);
}
.page-hero__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  color: var(--bordeaux); opacity: .45; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  color: var(--bordeaux); line-height: 1.05;
  font-weight: 300; letter-spacing: .02em;
}
.page-hero__title em,
.page-hero__title strong { font-weight: 600; color: var(--bordeaux); font-style: normal; }
.page-hero__sub {
  font-family: var(--font-display); font-weight: 300;
  font-size: 15px; color: var(--dark); opacity: .5;
  margin-top: 10px; letter-spacing: .02em;
}

/* -- SECTION LABELS GLOBAL -- */
[class$="__label"] {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  color: var(--bordeaux); opacity: .4; text-transform: uppercase;
  display: block; margin-bottom: 12px;
}

/* -- CTA BAND GLOBAL -- */
.cta-band {
  background: var(--bordeaux); padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 32px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--cream); line-height: 1.15;
  font-weight: 300; letter-spacing: .02em;
}
.cta-band__title strong,
.cta-band__title em { font-weight: 600; color: var(--pink); font-style: normal; }

/* -- DOTTED LINE -- */
.dotted { border: none; border-top: 1px dashed rgba(255,255,255,0.3); margin: 16px 0; }
.dotted--dark { border-top-color: rgba(123,21,53,0.25); }

/* -- MARQUEE (seamless loop) -- */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; color: var(--white);
  white-space: nowrap; padding-right: 0;
}

/* -- STICKERS -- */
.stk {
  position: absolute;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  cursor: grab;
  user-select: none; -webkit-user-select: none;
  touch-action: none;
  transition: filter .2s;
  z-index: 10;
}
.stk:hover { filter: brightness(1.06) drop-shadow(0 8px 16px rgba(0,0,0,.22)); }
.stk:active { cursor: grabbing; }

/* Blob shapes */
.stk--blob1 { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; }
.stk--blob2 { border-radius: 38% 62% 54% 46% / 44% 56% 44% 56%; }
.stk--blob3 { border-radius: 55% 45% 65% 35% / 45% 60% 40% 55%; }
.stk--blob4 { border-radius: 44% 56% 38% 62% / 56% 44% 56% 44%; }
.stk--circle { border-radius: 50%; }
.stk--rect   { border-radius: 22px; }
.stk--pill   { border-radius: 100px; }
.stk--spiky  {
  clip-path: polygon(
    50% 0%,  54% 20%, 65% 8%,  63% 28%, 78% 19%, 72% 38%,
    90% 35%, 80% 50%, 95% 54%, 80% 62%, 89% 75%, 73% 74%,
    76% 90%, 61% 83%, 57% 100%,50% 85%, 43% 100%,39% 83%,
    24% 90%, 27% 74%, 11% 75%, 20% 62%, 5%  54%, 20% 50%,
    10% 35%, 28% 38%, 22% 19%, 37% 28%, 35% 8%,  46% 20%
  );
}

/* Sticker zone (hero) */
.hero__stickers {
  position: relative;
  flex: 1;
  align-self: stretch;
}

/* -- PHOTO SCENE (à propos) -- */
.photo-scene {
  position: relative;
  height: 100%;
  min-height: 560px;
}
.photo-item {
  position: absolute;
  cursor: grab;
  user-select: none; -webkit-user-select: none;
  touch-action: none;
  transition: filter .2s;
}
.photo-item:hover { filter: drop-shadow(0 12px 24px rgba(0,0,0,.3)); }
.photo-item:active { cursor: grabbing; }

/* Polaroid */
.polaroid {
  background: var(--white);
  padding: 12px 12px 52px;
  box-shadow: var(--shadow-heavy);
  width: 180px;
}
.polaroid__img {
  width: 156px; height: 210px;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
}
.polaroid__caption {
  font-family: var(--font-hand);
  font-size: 20px; color: var(--bordeaux);
  text-align: center; margin-top: 12px;
}

/* Photo booth strip */
.strip {
  background: var(--white);
  padding: 6px 6px 10px;
  box-shadow: var(--shadow-heavy);
  display: flex; flex-direction: column; gap: 5px;
  width: 108px;
}
.strip__shot {
  width: 96px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.strip__shot:nth-child(1) { background: var(--bordeaux); }
.strip__shot:nth-child(2) { background: var(--pink); }
.strip__shot:nth-child(3) { background: var(--fuchsia); }
.strip__shot:nth-child(4) { background: var(--olive); }

/* Camera */
.camera-card {
  background: #e8e3dc;
  border-radius: 18px;
  padding: 16px 20px 20px;
  box-shadow: var(--shadow-heavy);
  width: 210px; text-align: center;
}
.camera-card__body {
  background: #d4cfc8;
  border-radius: 12px;
  padding: 14px;
}
.camera-card__lens { font-size: 60px; line-height: 1; }
.camera-card__brand {
  font-size: 11px; font-weight: 700;
  color: #888; letter-spacing: .12em; margin-top: 8px;
  text-transform: uppercase;
}

/* Scene decorative element */
.scene-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  font-size: 52px;
}

/* -- APPROACH SCALLOP CARDS (à propos) -- */
.approche-scallop {
  position: relative;
  padding: 56px 48px 52px;
  text-align: center;
  transition: transform .3s;
}
.approche-scallop:hover { transform: translateY(-6px); }
/* Bumps haut */
.approche-scallop::before {
  content: '';
  position: absolute;
  top: -22px; left: 0; right: 0; height: 44px;
  background: radial-gradient(circle at 50% 100%, inherit 21px, transparent 22px) center / 44px 44px;
}
/* Bumps bas */
.approche-scallop::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 0; right: 0; height: 44px;
  background: radial-gradient(circle at 50% 0%, inherit 21px, transparent 22px) center / 44px 44px;
}
.approche-scallop--1 { background: var(--pink);     border-radius: 4px; }
.approche-scallop--1::before, .approche-scallop--1::after { background-color: var(--pink); }
.approche-scallop--2 { background: var(--olive);    border-radius: 4px; margin-top: 44px; }
.approche-scallop--2::before, .approche-scallop--2::after { background-color: var(--olive); }
.approche-scallop--3 { background: var(--bordeaux); border-radius: 4px; }
.approche-scallop--3::before, .approche-scallop--3::after { background-color: var(--bordeaux); }

/* -- LIGHTBOX -- */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 92vw; max-height: 92vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: fixed; top: 20px; right: 28px; font-size: 36px; color: #fff; cursor: pointer; line-height: 1; }

/* Burger caché sur desktop */
.nav__burger { display: none; }
.mobile-menu { display: none; }

/* -- RESPONSIVE MOBILE -- */
@media (max-width: 768px) {

  /* NAV */
  .nav { padding: 0 20px; height: 70px; }
  .nav__logo img { height: 52px; }
  .nav__links { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
  }
  .nav__burger span {
    display: block; width: 24px; height: 2px;
    background: var(--bordeaux); border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }

  /* BUTTONS */
  .btn { height: 48px; font-size: 14px; padding: 0 24px; }

  /* MENU MOBILE OVERLAY */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: var(--cream); flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
    padding-top: 70px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 22px;
    font-weight: 300; color: var(--bordeaux);
    transition: color .2s;
  }
  .mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
  .mobile-menu__close {
    position: absolute; top: 20px; right: 20px;
    font-size: 28px; cursor: pointer; color: var(--bordeaux);
    background: none; border: none; padding: 8px;
  }

  /* GLOBAL SPACING */
  .page-hero { padding: 32px 20px 40px; }
  .booking-band { height: auto !important; min-height: 0; padding: 10px 16px; gap: 8px; overflow: visible; }
  .nav { padding: 0 20px; }
  .page-hero__title { font-size: clamp(32px, 8vw, 44px); }
  .section-title { font-size: 36px; }
  .cta-band { padding: 40px 20px; flex-direction: column; align-items: flex-start; }

  /* FOOTER */
  .footer { padding: 40px 20px 32px; flex-direction: column; gap: 24px; }
  .footer__links { gap: 20px; margin-top: 8px; }

  /* BUTTONS */
  .btn { height: 52px; font-size: 14px; padding: 0 24px; }

  /* MARQUEE */
  .marquee__track span { font-size: 14px; }
}

@keyframes pulse { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.3);opacity:0.7;} }

/* ═══════════════════════════════════════════
   BOOKING BAND (trigger)
═══════════════════════════════════════════ */
.booking-band {
  background: var(--bordeaux);
  height: 34px; padding: 0 80px;
  display: flex; align-items: center; gap: 16px;
  cursor: pointer; width: 100%; border: none; text-align: left;
  transition: filter .2s;
}
.booking-band:hover { filter: brightness(1.12); }
.booking-band__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
  flex-shrink: 0;
}
.booking-band__text {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 13px; color: var(--cream); letter-spacing: .01em; flex: 1;
}
.booking-band__text strong { font-weight: 600; }
.booking-band__cta {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  color: var(--cream); opacity: 0.65; white-space: nowrap;
}

/* ═══════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════ */
.bk-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15,5,5,0.6);
  align-items: center; justify-content: center;
  padding: 20px;
}
.bk-overlay.open { display: flex; }

.bk-modal {
  background: var(--cream);
  border-radius: 24px;
  width: 100%; max-width: 880px;
  max-height: 92vh; overflow-y: auto;
  padding: 52px 48px 44px;
  position: relative;
}
.bk-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--bordeaux); opacity: .5; padding: 8px;
}
.bk-close:hover { opacity: 1; }

.bk-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .22em;
  color: var(--bordeaux); opacity: .45; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.bk-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--bordeaux); line-height: 1.05;
  font-weight: 300; margin-bottom: 8px;
}
.bk-title em { font-style: normal; font-weight: 600; }
.bk-subtitle { font-size: 14px; color: var(--dark); opacity: .65; line-height: 1.6; margin-bottom: 28px; }
.bk-note { font-size: 13px; color: var(--dark); opacity: .5; line-height: 1.65; margin-top: 16px; }

/* Step 1 — two-column layout */
.bk-step1-layout { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: start; }

.bk-bullets { list-style: none; margin-bottom: 0; }
.bk-bullets li {
  padding: 9px 0; font-size: 14px; color: var(--dark); opacity: .75;
  border-bottom: 1px solid rgba(123,21,53,.1);
  display: flex; align-items: center; gap: 12px;
}
.bk-bullets li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* Calendar */
.bk-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.bk-cal-month { font-family: var(--font-display); font-size: 16px; color: var(--bordeaux); font-weight: 300; }
.bk-cal-prev, .bk-cal-next {
  background: none; border: none; cursor: pointer;
  color: var(--bordeaux); font-size: 17px; padding: 4px 8px; opacity: .55; transition: opacity .2s;
}
.bk-cal-prev:hover, .bk-cal-next:hover { opacity: 1; }

.bk-cal-head { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.bk-cal-head span {
  text-align: center; font-size: 10px; font-weight: 700;
  color: var(--bordeaux); opacity: .4; letter-spacing: .05em; padding: 4px 0;
}
.bk-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 18px; }
.bk-cal-day, .bk-cal-empty {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: 8px; cursor: pointer; color: var(--bordeaux);
  transition: background .15s;
}
.bk-cal-empty { visibility: hidden; }
.bk-cal-day.disabled { opacity: .2; cursor: default; pointer-events: none; }
.bk-cal-day:not(.disabled):hover { background: rgba(123,21,53,.1); }
.bk-cal-day.selected { background: var(--bordeaux); color: var(--cream); }

/* Time slots */
.bk-times-label { font-size: 11px; font-weight: 700; color: var(--bordeaux); opacity: .55; letter-spacing: .06em; margin-bottom: 10px; text-transform: uppercase; }
.bk-times-grid { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.bk-time {
  padding: 6px 13px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--bordeaux); background: transparent;
  color: var(--bordeaux); font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-sans);
  transition: background .15s, color .15s;
}
.bk-time:hover { background: rgba(123,21,53,.08); }
.bk-time.selected { background: var(--bordeaux); color: var(--cream); border-color: var(--bordeaux); }
.bk-next-btn { width: 100%; justify-content: center; }

/* Step 2 — Questionnaire */
.bk-back {
  background: none; border: none; cursor: pointer;
  color: var(--bordeaux); opacity: .5; font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 24px; padding: 0; font-family: var(--font-sans);
}
.bk-back:hover { opacity: 1; }
.bk-slot-recap {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(123,21,53,.08); border-radius: var(--radius-pill);
  padding: 8px 18px; margin-bottom: 28px;
  font-size: 13px; font-weight: 600; color: var(--bordeaux);
}
.bk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bk-form-group { margin-bottom: 18px; }
.bk-form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--bordeaux); margin-bottom: 7px; letter-spacing: .04em; }
.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 2px solid rgba(123,21,53,.15); border-radius: 10px;
  font-family: var(--font-sans); font-size: 14px; color: var(--dark);
  background: #fff; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.bk-form-group input:focus,
.bk-form-group select:focus,
.bk-form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,100,25,.12); }
.bk-form-group textarea { resize: vertical; min-height: 90px; }

.bk-commit {
  background: rgba(123,21,53,.05); border-radius: 12px; padding: 16px; margin-bottom: 14px;
}
.bk-commit-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.bk-commit-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--bordeaux); }
.bk-commit-label span { font-size: 13px; color: var(--bordeaux); line-height: 1.55; }

.bk-reminder-note { font-size: 12px; color: var(--dark); opacity: .45; text-align: center; margin-bottom: 20px; }
.bk-submit-btn { width: 100%; justify-content: center; }

/* Step 3 — Success */
.bk-success { text-align: center; padding: 24px 0 8px; }
.bk-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bordeaux); color: var(--cream);
  font-size: 26px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.bk-success-close { margin-top: 28px; }

/* Mobile */
@media (max-width: 768px) {
  .booking-band__text { font-size: 12px; white-space: normal; }
  .booking-band__cta { display: none; }
  .bk-modal { padding: 36px 20px 28px; border-radius: 16px; }
  .bk-step1-layout { grid-template-columns: 1fr; gap: 24px; }
  .bk-form-row { grid-template-columns: 1fr; }
  .bk-title { font-size: clamp(26px, 7vw, 36px); }
}
