/* =====================================================
   BLOWTOX — COMPLETE DESIGN SYSTEM
   Navy #071A33 · Gold #C7A45A · Ivory #FAF7F0
   Cormorant Garamond + Manrope
   ===================================================== */

:root {
  --navy:     #071A33;
  --navy2:    #102A4C;
  --gold:     #C7A45A;
  --gold-lt:  #E6D6AE;
  --ivory:    #FAF7F0;
  --white:    #FFFFFF;
  --dark:     #20242A;
  --muted:    rgba(32,36,42,0.52);
  --ease:     cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── ANNOUNCE BAR ── */
#bt-ann {
  background: var(--navy);
  padding: 11px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  border-bottom: 1px solid rgba(199,164,90,0.15);
}
.bt-ann-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.bt-ann-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.2s;
}
.bt-ann-link:hover { opacity: 0.75; }
.bt-ann-close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 16px; cursor: pointer; padding: 4px 8px;
  font-family: inherit; transition: color 0.2s;
}
.bt-ann-close:hover { color: rgba(255,255,255,0.7); }

/* ── HEADER ── */
#bt-header {
  background: var(--white);
  border-bottom: 1px solid rgba(7,26,51,0.08);
  position: sticky;
  top: 0; z-index: 200;
  transition: box-shadow 0.4s;
}
#bt-header.scrolled { box-shadow: 0 2px 24px rgba(7,26,51,0.08); }
.bt-hdr-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bt-logo img { height: 46px; width: auto; }
.bt-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--navy); letter-spacing: 0.06em;
}
/* Primary nav */
.bt-nav { display: flex; gap: 0; list-style: none; }
.bt-nav > li { position: relative; }
.bt-nav > li > a {
  display: block;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  color: rgba(7,26,51,0.75);
  padding: 0 14px; line-height: 72px;
  transition: color 0.2s;
  white-space: nowrap;
}
.bt-nav > li > a:hover,
.bt-nav > li.current > a { color: var(--navy); }
/* Dropdown */
.bt-nav .bt-sub {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(7,26,51,0.1);
  min-width: 200px; list-style: none; z-index: 100;
}
.bt-nav > li:hover .bt-sub { display: block; }
.bt-sub li a {
  display: block;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(7,26,51,0.6);
  padding: 11px 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.bt-sub li a:hover { color: var(--navy); background: var(--ivory); }
/* Header right */
.bt-hdr-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.bt-hdr-phone {
  font-size: 13px; color: var(--navy);
  letter-spacing: 0.03em; transition: color 0.2s;
  font-weight: 500;
}
.bt-hdr-phone:hover { color: var(--gold); }
.bt-hdr-book {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
  background: var(--navy); color: var(--white);
  padding: 12px 22px; border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.25s; display: inline-block;
}
.bt-hdr-book:hover { background: var(--navy2); color: var(--white); }
/* Hamburger */
.bt-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.bt-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--navy); transition: all 0.3s;
}
/* Mobile nav overlay */
.bt-mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 300;
  flex-direction: column; padding: 32px;
  overflow-y: auto;
}
.bt-mobile-nav.open { display: flex; }
.bt-mobile-close {
  align-self: flex-end; font-size: 24px;
  color: rgba(255,255,255,0.5); background: none;
  border: none; cursor: pointer; margin-bottom: 40px;
  font-family: inherit;
}
.bt-mobile-nav ul { list-style: none; }
.bt-mobile-nav ul li a {
  display: block; font-size: 14px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.bt-mobile-nav ul li a:hover { color: var(--gold); }
.bt-mobile-book {
  margin-top: 36px; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 16px 28px; font-weight: 600;
  font-family: 'Manrope', sans-serif;
  border: none; cursor: pointer;
  align-self: flex-start; display: inline-block;
}

/* ── BUTTONS ── */
.bt-btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 600;
  padding: 14px 28px; cursor: pointer;
  border: none; transition: all 0.3s var(--ease);
  line-height: 1;
}
.bt-btn-gold { background: var(--gold); color: var(--navy); }
.bt-btn-gold:hover { background: var(--gold-lt); color: var(--navy); }
.bt-btn-navy { background: var(--navy); color: var(--white); }
.bt-btn-navy:hover { background: var(--navy2); color: var(--white); }
.bt-btn-wht {
  background: transparent; color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.32);
}
.bt-btn-wht:hover { background: rgba(255,255,255,0.07); color: var(--white); border-color: rgba(255,255,255,0.6); }
.bt-btn-outline {
  background: transparent; color: rgba(7,26,51,0.65);
  border: 1px solid rgba(7,26,51,0.25);
}
.bt-btn-outline:hover { color: var(--navy); border-color: var(--navy); }

/* ── HERO ── */
.bt-hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 580px; max-height: 920px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.bt-hero video,
.bt-hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.bt-hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(7,26,51,0.82) 0%,
    rgba(7,26,51,0.45) 55%,
    rgba(7,26,51,0.15) 100%);
}
.bt-hero-body {
  position: relative; z-index: 2;
  padding: 0 72px 80px; max-width: 680px;
}
.bt-hero-eye {
  font-size: 10px; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: bt-up 1s var(--ease) 0.3s forwards;
}
.bt-hero-eye::before {
  content: ''; display: block;
  width: 22px; height: 1px; background: var(--gold);
}
.bt-hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 300; line-height: 0.96;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.01em;
  opacity: 0; animation: bt-up 1s var(--ease) 0.55s forwards;
}
.bt-hero-h1 em { font-style: italic; }
.bt-hero-sub {
  font-size: 14px; line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 420px; margin-bottom: 36px; font-weight: 300;
  opacity: 0; animation: bt-up 1s var(--ease) 0.75s forwards;
}
.bt-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: bt-up 1s var(--ease) 0.9s forwards;
}
.bt-hero-loc {
  margin-top: 18px; font-size: 10px;
  color: rgba(255,255,255,0.28); letter-spacing: 0.14em;
  opacity: 0; animation: bt-up 1s var(--ease) 1.05s forwards;
}
.bt-hero-loc a { color: rgba(199,164,90,0.55); transition: color 0.2s; }
.bt-hero-loc a:hover { color: var(--gold); }
@keyframes bt-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ── QUICK BAR ── */
.bt-quickbar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(7,26,51,0.08);
}
.bt-qb {
  display: block; padding: 20px 24px; text-align: center;
  border-right: 1px solid rgba(7,26,51,0.07);
  transition: background 0.25s;
}
.bt-qb:last-child { border-right: none; }
.bt-qb:hover { background: var(--ivory); }
.bt-qb-label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy);
  font-weight: 600; margin-bottom: 3px;
}
.bt-qb-sub { font-size: 11px; color: var(--muted); }

/* ── ABOUT SPLIT ── */
.bt-about { display: grid; grid-template-columns: 1fr 1fr; }
.bt-about-vis {
  position: relative; overflow: hidden; min-height: 480px;
}
.bt-about-vis img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s var(--ease);
}
.bt-about-vis:hover img { transform: scale(1.04); }
.bt-about-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--navy); border-top: 2px solid var(--gold);
  padding: 16px 24px;
}
.bt-about-cap p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic;
  font-weight: 300; color: rgba(255,255,255,0.65); margin: 0;
}
.bt-about-txt {
  background: var(--white); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ── TYPOGRAPHY HELPERS ── */
.bt-eye {
  font-size: 10px; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.bt-eye::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.bt-eye-c { justify-content: center; }
.bt-eye-c::before, .bt-eye-c::after {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.bt-eye-c::before { order: -1; }
.bt-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; line-height: 1.04; color: var(--navy);
}
.bt-h2 em { font-style: italic; }
.bt-h2-light { color: var(--white) !important; }
.bt-p {
  font-size: 14px; line-height: 1.9; color: var(--muted); font-weight: 300;
}
.bt-link {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; color: var(--navy);
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.3s var(--ease); margin-top: 12px;
}
.bt-link::after {
  content: ''; display: inline-block; width: 22px; height: 1px;
  background: currentColor; transition: width 0.3s var(--ease);
}
.bt-link:hover { gap: 14px; }
.bt-link:hover::after { width: 32px; }
.bt-rule { display: block; width: 32px; height: 1px; background: var(--gold); margin: 18px 0; }

/* ── SECTIONS WRAPPER ── */
.bt-section { padding: 90px 0; }
.bt-section-ivory { background: var(--ivory); }
.bt-section-navy  { background: var(--navy); }
.bt-sec-hdr { text-align: center; padding: 0 40px; margin-bottom: 52px; }
.bt-sec-ftr { text-align: center; margin-top: 44px; padding: 0 40px; }

/* ── SERVICE CARDS ── */
.bt-svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; padding: 0 40px;
  max-width: 1400px; margin: 0 auto;
}
.bt-svc-card {
  position: relative; height: 320px;
  overflow: hidden; cursor: pointer; display: block;
}
.bt-svc-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease), filter 0.5s;
  filter: brightness(0.65);
}
.bt-svc-card:hover img { transform: scale(1.06); filter: brightness(0.48); }
.bt-svc-foot {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 26px 26px;
  background: linear-gradient(0deg, rgba(7,26,51,0.95) 0%, transparent 100%);
  transition: background 0.5s;
}
.bt-svc-card:hover .bt-svc-foot {
  background: linear-gradient(0deg, rgba(7,26,51,0.98) 30%, rgba(7,26,51,0.4) 100%);
}
.bt-svc-tag {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 7px; font-weight: 500;
}
.bt-svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 8px;
}
.bt-svc-arr {
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(199,164,90,0.65);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.bt-svc-card:hover .bt-svc-arr { opacity: 1; transform: none; }

/* ── CINEMATIC ── */
.bt-cin { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); }
.bt-cin-txt {
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.bt-cin-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px,3.5vw,58px); font-weight: 300;
  line-height: 1.02; color: var(--white); margin-bottom: 20px;
}
.bt-cin-h2 em { font-style: italic; }
.bt-cin-p {
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,0.45); margin-bottom: 32px; font-weight: 300;
}
.bt-cin-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.bt-cin-vis { position: relative; overflow: hidden; min-height: 440px; }
.bt-cin-vis img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s var(--ease);
}
.bt-cin:hover .bt-cin-vis img { transform: scale(1.04); }

/* ── STYLISTS ── */
.bt-sty-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 3px; padding: 0 40px;
  max-width: 1400px; margin: 0 auto;
}
.bt-sty-card { background: var(--ivory); overflow: hidden; }
.bt-sty-photo { height: 300px; overflow: hidden; }
.bt-sty-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
  transition: transform 1s var(--ease), filter 0.5s;
  filter: saturate(0.82);
}
.bt-sty-card:hover .bt-sty-photo img { transform: scale(1.04); filter: saturate(1); }
.bt-sty-initial {
  width: 100%; height: 100%; background: #ede9e4;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300; color: var(--gold);
}
.bt-sty-body { padding: 22px 22px 28px; }
.bt-sty-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--navy); margin-bottom: 3px;
}
.bt-sty-role {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; font-weight: 500;
}
.bt-sty-spec { font-size: 11px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.bt-sty-book {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
  border-bottom: 1px solid rgba(7,26,51,0.22);
  padding-bottom: 2px; display: inline-block;
  transition: border-color 0.2s;
}
.bt-sty-book:hover { border-color: var(--navy); color: var(--navy); }

/* ── REVIEWS ── */
.bt-rev-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto 36px;
  padding: 0 40px;
}
.bt-rev-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(199,164,90,0.14); padding: 30px;
}
.bt-rev-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; }
.bt-rev-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 300;
  line-height: 1.68; color: rgba(255,255,255,0.62); margin-bottom: 18px;
}
.bt-rev-auth {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(199,164,90,0.55); font-weight: 500;
}
.bt-rev-ftr { text-align: center; padding: 0 40px; }
.bt-rev-all {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(199,164,90,0.35);
  padding-bottom: 2px; font-weight: 500; transition: border-color 0.2s;
}
.bt-rev-all:hover { border-color: var(--gold); color: var(--gold); }

/* ── BRIDAL ── */
.bt-bridal { display: grid; grid-template-columns: 1fr 1fr; }
.bt-bridal-txt {
  background: var(--ivory); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.bt-bridal-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.bt-bridal-vis { position: relative; overflow: hidden; min-height: 440px; }
.bt-bridal-vis img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s var(--ease);
}
.bt-bridal:hover .bt-bridal-vis img { transform: scale(1.04); }

/* ── LOCATION ── */
.bt-loc { display: grid; grid-template-columns: 1fr 1fr; }
.bt-loc-vis { position: relative; overflow: hidden; min-height: 340px; }
.bt-loc-vis img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-loc-txt {
  background: var(--white); padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.bt-loc-detail { font-size: 13px; line-height: 1.95; color: var(--muted); margin-bottom: 6px; }
.bt-loc-phone {
  display: block; font-size: 20px; font-weight: 500; color: var(--navy);
  margin: 16px 0 24px; transition: color 0.2s;
}
.bt-loc-phone:hover { color: var(--gold); }
.bt-loc-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FINAL CTA ── */
.bt-fcta {
  background: var(--navy2);
  padding: 110px 40px; text-align: center;
  border-top: 2px solid var(--gold);
}
.bt-fcta .bt-p { max-width: 440px; margin: 0 auto 44px; color: rgba(255,255,255,0.42); }
.bt-fcta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── INSTAGRAM ── */
.bt-insta { padding: 72px 0 0; }
.bt-insta-hdr { text-align: center; padding: 0 40px; margin-bottom: 36px; }
.bt-insta-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: var(--gold);
  margin-top: 6px; display: block;
}
.bt-insta-grid { display: grid; grid-template-columns: repeat(6,1fr); }
.bt-insta-cell { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; }
.bt-insta-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease), filter 0.4s;
}
.bt-insta-cell:hover img { transform: scale(1.07); filter: brightness(0.68); }
.bt-insta-over {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px;
  opacity: 0; transition: opacity 0.35s;
}
.bt-insta-cell:hover .bt-insta-over { opacity: 1; }

/* ── FOOTER ── */
#bt-footer {
  background: var(--navy);
  border-top: 1px solid rgba(199,164,90,0.14);
}
.bt-ftr-inner { max-width: 1200px; margin: 0 auto; padding: 64px 40px 32px; }
.bt-ftr-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 52px; }
.bt-ftr-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
  letter-spacing: 0.06em; margin-bottom: 12px;
}
.bt-ftr-tagline {
  font-size: 12px; line-height: 1.8;
  color: rgba(255,255,255,0.28); font-weight: 300;
  margin-bottom: 20px; max-width: 260px;
}
.bt-ftr-socs { display: flex; gap: 8px; }
.bt-ftr-soc {
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 13px; transition: all 0.25s; font-weight: 500;
}
.bt-ftr-soc:hover { border-color: var(--gold); color: var(--gold); }
.bt-ftr-col h5 {
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; font-weight: 600;
}
.bt-ftr-col ul { list-style: none; }
.bt-ftr-col ul li a {
  font-size: 12px; color: rgba(255,255,255,0.32);
  font-weight: 300; line-height: 2.1; display: block; transition: color 0.2s;
}
.bt-ftr-col ul li a:hover { color: var(--gold-lt); }
.bt-ftr-col address {
  font-style: normal; font-size: 12px;
  line-height: 1.95; color: rgba(255,255,255,0.32); font-weight: 300;
}
.bt-ftr-col address a { color: var(--gold); display: block; margin-top: 2px; transition: color 0.2s; }
.bt-ftr-col address a:hover { color: var(--gold-lt); }
.bt-ftr-btm {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.bt-ftr-copy { font-size: 10px; color: rgba(255,255,255,0.18); font-weight: 300; }
.bt-ftr-legal { display: flex; gap: 18px; }
.bt-ftr-legal a { font-size: 10px; color: rgba(255,255,255,0.18); transition: color 0.2s; }
.bt-ftr-legal a:hover { color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ── */
.bt-r { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.bt-r.on { opacity: 1; transform: none; }
.bt-d1 { transition-delay: 0.1s; }
.bt-d2 { transition-delay: 0.2s; }
.bt-d3 { transition-delay: 0.3s; }
.bt-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bt-nav { display: none; }
  .bt-hdr-phone { display: none; }
  .bt-burger { display: flex; }
  .bt-hdr-inner { padding: 0 24px; }
  .bt-about, .bt-cin, .bt-bridal, .bt-loc { grid-template-columns: 1fr; }
  .bt-about-vis, .bt-cin-vis, .bt-bridal-vis, .bt-loc-vis { min-height: 300px; }
  .bt-about-txt, .bt-cin-txt, .bt-bridal-txt, .bt-loc-txt { padding: 52px 32px; }
  .bt-svc-grid, .bt-sty-grid { grid-template-columns: 1fr 1fr; padding: 0 20px; }
  .bt-svc-card { height: 240px; }
  .bt-sty-photo { height: 240px; }
  .bt-quickbar { grid-template-columns: 1fr 1fr; }
  .bt-insta-grid { grid-template-columns: repeat(3,1fr); }
  .bt-ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bt-hero-body { padding: 0 32px 56px; }
  .bt-rev-grid { grid-template-columns: 1fr; }
  .bt-sec-hdr { padding: 0 20px; }
  .bt-rev-ftr { padding: 0 20px; }
}
@media (max-width: 540px) {
  .bt-svc-grid, .bt-sty-grid { grid-template-columns: 1fr; }
  .bt-ftr-grid { grid-template-columns: 1fr; }
  .bt-hero-h1 { font-size: 46px; }
}
@media (prefers-reduced-motion: reduce) {
  .bt-r { opacity: 1; transform: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}
