/* =========================================================
   Blush and Coral Hospitality, LLC (BACH Newport)
   Luxury Editorial Redesign

   Fonts specified in the brand kit:
     Main Header  -> Bauer Bodoni        (substituted: Libre Bodoni)
     Sub Header   -> Crimson Pro Italic
     Paragraph    -> Raleway Light       (weight 300)

   Colors specified in the brand kit:
     Blush & Coral (site-wide / wedding brand):
       background #b08a7d, accent #b6baa5, accent #c8ab82,
       main #f1b9ab, text #7a4a3a, accent #f6ede5
     BACH Newport (bachelorette sub-brand):
       background #f5d5cb, accent #fda194, accent #c9a96e,
       main #e8a598, text #794a3a, accent #f9f4ee
   ========================================================= */

:root{
  --bc-cream:      #f6ede5;
  --bc-cream-soft: #fbf6f1;
  --bc-mauve:      #b08a7d;
  --bc-sage:       #b6baa5;
  --bc-tan:        #c8ab82;
  --bc-blush:      #f1b9ab;
  --bc-text:       #7a4a3a;

  --bn-cream:  #f5d5cb;
  --bn-coral:  #fda194;
  --bn-gold:   #c9a96e;
  --bn-rose:   #e8a598;
  --bn-text:   #794a3a;
  --bn-cream2: #f9f4ee;

  --line: rgba(122,74,58,0.12);
  --shadow: 0 8px 30px -8px rgba(122,74,58,0.18);
  --shadow-hover: 0 16px 40px -10px rgba(122,74,58,0.28);

  --header: 'Libre Bodoni', 'Bodoni Moda', serif;
  --sub:    'Crimson Pro', serif;
  --body:   'Raleway', sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bc-cream);
  color:var(--bc-text);
  font-family:var(--body);
  font-weight:300;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;transition:color .2s ease;}
.wrap{max-width:1140px;margin:0 auto;padding:0 40px;}

/* ---------- Typography (editorial scale) ---------- */
h1,h2,h3,h4{
  font-family:var(--header);
  font-weight:400;
  margin:0 0 .5em;
  color:var(--bc-text);
  letter-spacing:.02em;
}
h1{font-size:clamp(2.6rem,5vw,3.8rem);line-height:1.12;}
h2{font-size:clamp(2rem,3.6vw,2.8rem);line-height:1.2;}
h3{font-size:1.25rem;}

.display{
  font-family:var(--header);
  font-size:clamp(3rem,6vw,4.6rem);
  line-height:1.05;
  font-weight:400;
  letter-spacing:.01em;
}

.subhead{
  font-family:var(--sub);
  font-style:italic;
  font-size:1.08rem;
  color:var(--bc-mauve);
}
.eyebrow{
  font-family:var(--body);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:1rem;
  font-weight:500;
  color:var(--bc-mauve);
}
p{margin:0 0 1.1em;color:#8a6656;}
.lede{font-size:1.05rem;max-width:52ch;}

.divider{width:40px;height:1px;background:var(--bc-blush);margin:20px 0;border:none;opacity:.7;}
.center .divider{margin-left:auto;margin-right:auto;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.5em;
  padding:.85em 2.2em;
  background:var(--bc-mauve);
  color:var(--bc-cream-soft);
  border:1px solid var(--bc-mauve);
  border-radius:0;
  font-family:var(--body);
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s ease;
}
.btn:hover{background:var(--bc-text);border-color:var(--bc-text);transform:translateY(-1px);}
.btn.ghost{background:transparent;color:var(--bc-text);border:1px solid var(--bc-text);}
.btn.ghost:hover{background:var(--bc-text);color:var(--bc-cream-soft);transform:translateY(-1px);}
.btn.on-bach{background:var(--bn-coral);border-color:var(--bn-coral);color:#fff;}
.btn.on-bach:hover{background:var(--bn-text);border-color:var(--bn-text);}
.btn.ghost-white{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.6);}
.btn.ghost-white:hover{background:#fff;color:var(--bc-text);border-color:#fff;}

/* ===================================================
   HEADER / NAV — fixed, transparent → solid on scroll
   =================================================== */
header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:background .4s ease, border-color .4s ease, transform .4s ease, box-shadow .4s ease;
}
header.scrolled{
  background:rgba(246,237,229,0.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--line);
  box-shadow:0 2px 20px rgba(122,74,58,0.08);
}

/* FAQ + Contact: keep the nav strip solid at all times so it separates
   cleanly from the patterned background instead of starting transparent.
   Excludes header.on-hero (photo-hero pages like Blog) so that treatment
   is left untouched. */
body.pattern-bg .section-alt{background:transparent;}
body.pattern-bg header:not(.on-hero){
  background:rgba(246,237,229,0.97);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--line);
  box-shadow:0 2px 20px rgba(122,74,58,0.08);
}
header.header-hidden{
  transform:translateY(-100%);
}
.nav-row{
  max-width:1140px;margin:0 auto;padding:18px 40px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand-logo{flex-shrink:0;}
.brand-logo img{height:42px;width:auto;max-width:none;display:block;}

/* Nav link animated underline */
nav.primary ul{list-style:none;display:flex;gap:2.2rem;margin:0;padding:0;white-space:nowrap;}
nav.primary a{
  font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;font-weight:500;
  color:var(--bc-text);opacity:.6;
  position:relative;
  padding-bottom:6px;
  transition:opacity .3s ease, color .3s ease;
}
nav.primary a::after{
  content:'';
  position:absolute;left:0;bottom:0;
  width:0;height:1px;
  background:var(--bc-blush);
  transition:width .3s ease;
}
nav.primary a:hover, nav.primary a.active{opacity:1;}
nav.primary a:hover::after, nav.primary a.active::after{width:100%;}

/* Header on dark hero pages — start with white text */
header.on-hero nav.primary a{color:#fff;opacity:.7;}
header.on-hero nav.primary a:hover, header.on-hero nav.primary a.active{opacity:1;}
header.on-hero .brand-logo img{filter:brightness(0) invert(1);opacity:.95;}
header.on-hero .social-mini a{color:rgba(255,255,255,.7);}
header.on-hero .social-mini a:hover{color:#fff;}
header.on-hero .menu-toggle{color:#fff;}
/* When scrolled, revert to dark text */
header.on-hero.scrolled nav.primary a{color:var(--bc-text);}
header.on-hero.scrolled .brand-logo img{filter:none;opacity:1;}
header.on-hero.scrolled .social-mini a{color:var(--bc-mauve);}
header.on-hero.scrolled .menu-toggle{color:var(--bc-text);}

.social-mini{display:flex;gap:14px;align-items:center;}
.social-mini a{
  display:inline-flex;align-items:center;
  color:var(--bc-mauve);opacity:.6;transition:opacity .3s, color .3s;
}
.social-mini a:hover{opacity:1;}
.social-mini a svg{width:15px;height:15px;}
.menu-toggle{display:none;background:none;border:none;font-size:1.4rem;color:var(--bc-text);cursor:pointer;z-index:110;}

/* ---------- Full-screen mobile nav overlay ---------- */
.mobile-overlay{
  display:none;
  position:fixed;inset:0;z-index:105;
  background:rgba(246,237,229,0.98);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2rem;
  opacity:0;
  transition:opacity .35s ease;
}
.mobile-overlay.open{
  display:flex;
  opacity:1;
}
.mobile-overlay a{
  font-family:var(--header);
  font-size:clamp(1.4rem,4vw,2rem);
  color:var(--bc-text);
  opacity:.7;
  transition:opacity .3s;
  letter-spacing:.04em;
}
.mobile-overlay a:hover, .mobile-overlay a.active{opacity:1;}
.mobile-overlay .overlay-close{
  position:absolute;top:22px;right:28px;
  background:none;border:none;
  font-size:2rem;color:var(--bc-text);cursor:pointer;
}

/* ---------- Page header (non-home pages) ---------- */
.page-hero{
  padding:140px 0 64px;
  text-align:center;
  background:var(--bc-cream);
}

/* ---------- Whimsical icon-pattern background (FAQ + Contact) ---------- */
body.pattern-bg{
  background-color:var(--bc-cream);
  background-image:url('../assets/patterns/icon-pattern.png');
  background-repeat:repeat;
  background-position:top left;
}
/* Optional photo variant of .page-hero (e.g. FAQ) */
.page-hero.photo{position:relative;overflow:hidden;background:var(--bc-text);}
.page-hero.photo .page-hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
}
.page-hero.photo .page-hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(122,74,58,0.7) 0%,rgba(122,74,58,0.85) 100%);
}
.page-hero.photo .wrap{position:relative;z-index:2;}
.page-hero.photo .eyebrow{color:var(--bc-blush);}
.page-hero.photo h1{color:#fff;}
.page-hero.photo p{color:rgba(255,255,255,.85);}

.page-hero .eyebrow{display:block;margin-bottom:12px;}
.page-hero .divider{margin-left:auto;margin-right:auto;}
.page-hero p{max-width:56ch;margin-left:auto;margin-right:auto;}

/* ---------- Sections ---------- */
section{padding:96px 0;}
.section-alt{background:var(--bc-cream-soft);}
.section-deep{background:var(--bc-text);color:#fff;}
.section-deep h2, .section-deep h3{color:#fff;}
.section-deep p{color:rgba(255,255,255,0.8);}
.section-deep .eyebrow{color:var(--bc-blush);}
.section-head{max-width:600px;margin-bottom:52px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}

/* ===================================================
   SCROLL-REVEAL ANIMATIONS
   =================================================== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.revealed{
  opacity:1;
  transform:translateY(0);
}
.reveal-left{
  opacity:0;
  transform:translateX(-40px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal-left.revealed{
  opacity:1;
  transform:translateX(0);
}
.reveal-right{
  opacity:0;
  transform:translateX(40px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal-right.revealed{
  opacity:1;
  transform:translateX(0);
}
/* Stagger children */
.reveal-stagger > *{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal-stagger.revealed > *{
  opacity:1;
  transform:translateY(0);
}
.reveal-stagger.revealed > *:nth-child(1){transition-delay:.05s;}
.reveal-stagger.revealed > *:nth-child(2){transition-delay:.15s;}
.reveal-stagger.revealed > *:nth-child(3){transition-delay:.25s;}
.reveal-stagger.revealed > *:nth-child(4){transition-delay:.35s;}
.reveal-stagger.revealed > *:nth-child(5){transition-delay:.45s;}
.reveal-stagger.revealed > *:nth-child(6){transition-delay:.55s;}
.reveal-stagger.revealed > *:nth-child(7){transition-delay:.65s;}
.reveal-stagger.revealed > *:nth-child(8){transition-delay:.75s;}
.reveal-stagger.revealed > *:nth-child(9){transition-delay:.85s;}
.reveal-stagger.revealed > *:nth-child(10){transition-delay:.95s;}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-left, .reveal-right, .reveal-stagger > *{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* ===================================================
   HOME PAGE — HERO (full viewport, bg image, parallax)
   =================================================== */
.hero-fullscreen{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:0;
}
.hero-fullscreen .hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  will-change:transform;
}
.hero-fullscreen .hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    180deg,
    rgba(122,74,58,0.45) 0%,
    rgba(122,74,58,0.55) 50%,
    rgba(122,74,58,0.7) 100%
  );
}
.hero-fullscreen .hero-content{
  position:relative;z-index:2;
  max-width:780px;
  padding:40px;
  color:#fff;
}
.hero-fullscreen .eyebrow{color:var(--bc-blush);}
.hero-fullscreen h1{color:#fff;margin-top:14px;}
.hero-fullscreen .hero-heading{
  font-size:clamp(1.4rem,2.6vw,1.9rem);
  line-height:1.45;
  font-weight:400;
  color:rgba(255,255,255,.92);
}
.hero-fullscreen .hero-note{
  margin:28px auto 0;
  width:max-content;
  font-family:var(--sub);font-style:italic;
  font-size:clamp(1.15rem,2vw,1.45rem);white-space:nowrap;
  color:var(--bc-blush);
  letter-spacing:.02em;
  text-align:center;
}
.hero-fullscreen .hero-cta{
  margin-top:32px;
  display:flex;gap:16px;flex-wrap:wrap;
  justify-content:center;
}
.hero-fullscreen .hero-credit{
  position:absolute;bottom:20px;right:20px;z-index:3;
  color:rgba(255,255,255,.5);
  font-size:.68rem;letter-spacing:.06em;
}

/* Hero badges (home page only) */
.hero-badges{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.hero-badges img{
  height:52px;width:auto;display:block;border-radius:4px;
  opacity:.9;transition:opacity .3s ease;
}
.hero-badges a:hover img{opacity:1;}

/* Scroll cue arrow */
.scroll-cue{
  position:absolute;bottom:36px;left:50%;transform:translateX(-50%);z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:6px;
  color:rgba(255,255,255,.5);
  font-size:.65rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  animation:scrollCueBounce 2s ease-in-out infinite;
}
.scroll-cue span{
  display:block;
  width:1px;height:28px;
  background:rgba(255,255,255,.3);
}
@keyframes scrollCueBounce{
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(8px);}
}

/* ===================================================
   HOME — MISSION (editorial asymmetric overlap)
   =================================================== */
.mission-editorial{
  position:relative;
  padding:120px 0;
  overflow:hidden;
}
.mission-editorial .wrap{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:0;
  align-items:center;
}
.mission-photo{
  position:relative;
  margin-left:-40px;
}
.mission-photo img{
  width:100%;
  height:580px;
  object-fit:cover;
  border-radius:0 2px 2px 0;
}
.mission-text-panel{
  position:relative;
  background:#fff;
  padding:52px 48px;
  margin-left:-80px;
  box-shadow:0 12px 50px -12px rgba(122,74,58,0.18);
  z-index:2;
}

/* ===================================================
   HOME — TESTIMONIALS (cinematic)
   =================================================== */
.testimonial{text-align:center;position:relative;overflow:hidden;}
.testimonial .wrap{max-width:960px;position:relative;z-index:1;}
.testimonial .mark{
  font-family:var(--header);font-size:4rem;color:var(--bc-blush);
  line-height:1;margin-bottom:8px;opacity:.8;
}
/* Wax-seal watermark */
.testimonial::after{
  content:'\201C';
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  font-family:var(--header);
  font-size:28rem;
  color:rgba(241,185,171,0.04);
  pointer-events:none;
  z-index:0;
  line-height:1;
}
.testimonial-ticker{position:relative;overflow:hidden;}
.testimonial-slide{
  position:absolute;top:0;left:0;right:0;
  opacity:0;transform:translateY(8px);
  transition:opacity .6s ease, transform .6s ease;
  pointer-events:none;
}
.testimonial-slide.active{
  opacity:1;transform:translateY(0);
  pointer-events:auto;
}
.testimonial blockquote{
  font-family:var(--sub);font-style:italic;font-size:1.25rem;margin:0;color:rgba(255,255,255,0.92);line-height:1.7;
}
.testimonial .who{
  margin-top:24px;text-transform:uppercase;letter-spacing:.18em;font-size:.72rem;color:var(--bc-blush);
}
.testimonial-dots{display:flex;justify-content:center;gap:10px;margin-top:32px;}
.testimonial-dots .dot{
  width:8px;height:8px;border-radius:50%;border:none;padding:0;
  background:rgba(255,255,255,0.3);cursor:pointer;
  transition:background .3s ease, transform .3s ease;
}
.testimonial-dots .dot.active{background:var(--bc-blush);transform:scale(1.3);}
.testimonial-dots .dot:hover{background:rgba(255,255,255,0.6);}

/* ===================================================
   HOME — CTA (photo-flanked panel)
   =================================================== */
.cta-flanked{
  padding:110px 0;
}
.cta-flanked-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:0;
  align-items:stretch;
}
.cta-flank-photo{
  overflow:hidden;
}
.cta-flank-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation:kenBurns 18s ease-in-out infinite alternate;
}
.cta-flank-photo:nth-child(3) img{
  animation-direction:alternate-reverse;
  animation-delay:-9s;
}
@keyframes kenBurns{
  0%{transform:scale(1) translate(0,0);}
  100%{transform:scale(1.12) translate(-2%,2%);}
}
.cta-flanked .cta-inner{
  position:relative;
  text-align:center;
  padding:64px 48px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-top:1px solid var(--bc-blush);
  border-bottom:1px solid var(--bc-blush);
  background:var(--bc-cream);
}
.cta-flanked .cta-inner::before{
  content:'';
  position:absolute;
  top:6px;bottom:6px;left:0;right:0;
  border-top:1px solid rgba(241,185,171,0.3);
  border-bottom:1px solid rgba(241,185,171,0.3);
  pointer-events:none;
}

/* ===================================================
   HOME — INSTAGRAM (full-bleed strip)
   =================================================== */
.instagram-strip{
  text-align:center;
  padding:64px 0;
  background:var(--bc-cream-soft);
}
.instagram-strip h3{
  font-size:1.3rem;
  margin-bottom:0;
}
.instagram-strip .subhead{font-size:1.3rem;}

/* ===================================================
   ABOUT PAGE — Split hero (50/50)
   =================================================== */
.about-hero-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:70vh;
  padding:0;
  background:var(--bc-cream);
}
/* Left side stays covered by the photo regardless; this only affects the
   text side, which has no image of its own to hide the container background */
body.pattern-bg .about-hero-split{background:transparent;}
.about-hero-split .hero-photo{
  position:relative;
  overflow:hidden;
}
.about-hero-split .hero-photo .photo-credit{
  position:absolute;bottom:16px;left:16px;
  font-size:.78rem;letter-spacing:.04em;
  color:#fff;
  background:rgba(0,0,0,.45);
  padding:6px 12px;
  border-radius:3px;
}
.about-hero-split .hero-photo img{
  width:100%;height:100%;
  object-fit:cover;
  object-position:center top;
}
.about-hero-split .hero-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:80px 64px;
  padding-top:140px;
}
.about-hero-split .hero-text .eyebrow{display:block;margin-bottom:12px;}
.about-hero-split .hero-text .subhead{margin-top:12px;}
.about-hero-split .hero-text p{max-width:48ch;}

/* ===================================================
   ABOUT — Three Pillars (numbered cards)
   =================================================== */
.pillars{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}
.pillar-card{
  position:relative;
  border-top:3px solid var(--bc-blush);
  padding-top:32px;
}
.pillar-card .pillar-num{
  font-family:var(--header);
  font-size:3rem;
  color:rgba(241,185,171,0.3);
  line-height:1;
  margin-bottom:16px;
}
.pillar-card .pillar-img{
  position:relative;
  margin-bottom:20px;
  overflow:hidden;
}
.pillar-card .pillar-img img{
  width:100%;height:300px;
  object-fit:cover;border-radius:2px;
  box-shadow:var(--shadow);
  transition:box-shadow .3s ease, transform .5s ease;
}
.pillar-card:hover .pillar-img img{
  box-shadow:var(--shadow-hover);
  transform:scale(1.02);
}
/* Offset frame pseudo-element */
.pillar-card .pillar-img::after{
  content:'';
  position:absolute;
  top:8px;left:8px;right:-8px;bottom:-8px;
  border:1px solid var(--bc-blush);
  opacity:.4;
  pointer-events:none;
  border-radius:2px;
  transition:opacity .3s;
}
.pillar-card:hover .pillar-img::after{opacity:.7;}

/* ===================================================
   ABOUT — Mission CTA (with watermark)
   =================================================== */
.mission-cta{
  position:relative;
  text-align:center;
  padding:130px 0;
  overflow:hidden;
}
.mission-cta::before{
  content:'';
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:600px;height:600px;
  background:url('../assets/logos/bc-wax-seal.png') center/contain no-repeat;
  opacity:.3;
  mix-blend-mode:multiply;
  pointer-events:none;
}
.mission-cta .display{margin-bottom:.4em;}

/* ===================================================
   BACH SERVICES — Hero (cream bg + faded texture)
   =================================================== */
.bach-hero{
  position:relative;
  text-align:center;
  padding:160px 0 80px;
  background:var(--bc-cream);
  overflow:hidden;
}
.bach-hero::before{
  content:'';
  position:absolute;inset:0;
  background-image:url('../assets/photos/pillar-stress-free.jpg');
  background-size:cover;
  background-position:center 40%;
  opacity:.2;
  pointer-events:none;
}
.bach-hero .wrap{position:relative;z-index:1;}
.bach-hero h1{text-shadow:0 1px 8px rgba(121,74,58,0.15);font-weight:500;}
.bach-hero .eyebrow{color:var(--bn-text);font-weight:500;}
.bach-hero .subhead{
  font-size:1.5rem;font-weight:500;
  text-shadow:0 1px 6px rgba(121,74,58,0.1);
  display:flex;align-items:center;justify-content:center;gap:20px;
}
.bach-hero .subhead::before,
.bach-hero .subhead::after{
  content:'';
  width:40px;height:1px;
  background:rgba(121,74,58,.3);
  flex-shrink:0;
}
.bach-hero .divider{background:var(--bn-coral);margin-left:auto;margin-right:auto;}
.bach-hero p{max-width:56ch;margin-left:auto;margin-right:auto;font-size:1.1rem;font-weight:400;}
.bach-hero a.inline-link{color:var(--bn-text);border-bottom:1px solid var(--bn-text);}

/* ===================================================
   BACH SERVICES — Masonry card grid
   =================================================== */
.bach-section{background:var(--bn-cream);}
.bach-section-alt{background:var(--bn-cream2);}
body.pattern-bg .bach-section-alt{background:transparent;}
.bach-section .eyebrow{color:var(--bn-text);}
.bach-section .divider{background:var(--bn-coral);}
.bach-section a.inline-link{color:var(--bn-text);border-bottom:1px solid var(--bn-text);}
.bach-section .section-head p{color:var(--bn-text);}

/* Steps row */
.bach-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:48px;
  text-align:center;
}
.bach-step{
  padding:28px 20px;
  border-top:3px solid var(--bn-coral);
}
.bach-step .pillar-num{
  font-family:var(--header);
  font-size:2.4rem;
  color:rgba(253,161,148,0.35);
  line-height:1;
  display:block;
  margin-bottom:12px;
}
.bach-step h3{margin:0;font-size:1rem;color:var(--bn-text);}

/* Package tiers */
.bach-tiers{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.bach-tier{
  background:#fff;
  border-radius:2px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:box-shadow .4s ease, transform .4s ease;
  position:relative;
}
.bach-tier:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px);}
.bach-tier.featured{
  box-shadow:0 20px 60px -15px rgba(122,74,58,0.3);
}
.bach-tier.featured:hover{
  box-shadow:0 24px 70px -15px rgba(122,74,58,0.4);
}
.bach-tier .tier-badge{
  position:absolute;top:16px;right:16px;z-index:2;
}
.bach-tier-img{
  overflow:hidden;
  height:280px;
}
.bach-tier-img img{
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}
.bach-tier:hover .bach-tier-img img{transform:scale(1.04);}
.bach-tier-body{
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.bach-tier-body .eyebrow{display:block;margin-bottom:6px;font-size:.65rem;}
.bach-tier-body h3{margin-bottom:4px;}
.bach-tier-body ul{
  list-style:none;padding:0;margin:12px 0 20px;flex:1;
}
.bach-tier-body li{
  position:relative;padding-left:22px;margin-bottom:10px;
  font-size:.88rem;color:#8a6656;
}
.bach-tier-body li::before{
  content:'';position:absolute;left:0;top:.75em;
  width:10px;height:1px;background:var(--bn-coral);
}
.bach-tier-body .btn{margin-top:auto;width:100%;justify-content:center;}

/* Theme cards */
.bach-themes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.bach-theme-card{
  position:relative;overflow:hidden;border-radius:2px;
  box-shadow:var(--shadow);
  cursor:default;
  transition:box-shadow .3s ease, transform .3s ease;
}
.bach-theme-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-3px);}
.bach-theme-card img{
  width:100%;height:300px;object-fit:cover;
  transition:transform .6s ease, filter .4s ease;
}
.bach-theme-card:hover img{transform:scale(1.05);filter:brightness(1.05);}
.bach-theme-card h3{
  position:absolute;left:0;right:0;bottom:0;
  margin:0;padding:24px 18px 16px;
  color:#fff;font-size:1rem;font-family:var(--header);font-weight:400;
  background:linear-gradient(to top, rgba(121,74,58,0.88) 0%, rgba(121,74,58,0) 100%);
}

/* Add-ons grid */
.bach-addons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.bach-addon{
  background:#fff;
  padding:32px 28px;
  border-radius:2px;
  border-top:3px solid var(--bn-coral);
  box-shadow:var(--shadow);
  transition:box-shadow .3s ease, transform .3s ease;
  display:flex;
  flex-direction:column;
}
.bach-addon:hover{box-shadow:var(--shadow-hover);transform:translateY(-3px);}
.bach-addon h3{font-size:1rem;margin-bottom:8px;color:var(--bn-text);}
.bach-addon p{font-size:.88rem;margin-bottom:12px;flex:1;}
.addon-price{
  font-family:var(--header);
  font-size:1.5rem;
  color:var(--bn-coral);
  font-weight:400;
  margin-top:auto;
}

/* ===================================================
   WEDDING SERVICES — Photo hero (full-width bg)
   =================================================== */
.wedding-hero{
  position:relative;
  text-align:center;
  padding:160px 0 80px;
  overflow:hidden;
}
.wedding-hero .hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;
  background-position:center;
}
.wedding-hero .hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(
    180deg,
    rgba(122,74,58,0.58) 0%,
    rgba(122,74,58,0.78) 100%
  );
}
.wedding-hero .hero-content{
  position:relative;z-index:2;
  color:#fff;
  padding:0 40px;
  max-width:780px;
  margin:0 auto;
}
.wedding-hero h1{color:#fff;font-weight:500;text-shadow:0 2px 12px rgba(0,0,0,0.25);}
.wedding-hero .subhead{
  color:#fff;font-size:1.5rem;font-weight:500;
  text-shadow:0 1px 8px rgba(0,0,0,0.2);
  display:flex;align-items:center;justify-content:center;gap:20px;
}
.wedding-hero .subhead::before,
.wedding-hero .subhead::after{
  content:'';
  width:40px;height:1px;
  background:rgba(255,255,255,.45);
  flex-shrink:0;
}
.wedding-hero p{font-weight:400;color:rgba(255,255,255,.9);font-size:1.1rem;}
.wedding-hero .eyebrow{color:var(--bc-blush);}
.wedding-hero .divider{background:rgba(255,255,255,.4);margin-left:auto;margin-right:auto;}
.wedding-hero p{color:rgba(255,255,255,.85);max-width:56ch;margin-left:auto;margin-right:auto;}
.wedding-hero .photo-credit{
  position:absolute;bottom:16px;right:20px;z-index:3;
  font-size:.65rem;color:rgba(255,255,255,.45);letter-spacing:.06em;
}

/* ===================================================
   WEDDING — Pricing tiers (elevated)
   =================================================== */
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start;}
.tier{
  background:var(--bc-cream-soft);
  border:1px solid var(--line);
  border-top:3px solid var(--bc-blush);
  padding:40px 32px;border-radius:2px;
  display:flex;flex-direction:column;
  transition:box-shadow .4s ease, transform .4s ease;
}
.tier:hover{box-shadow:var(--shadow);transform:translateY(-4px);}
.tier.featured{
  background:var(--bc-text);
  color:#fff;
  border-color:var(--bc-text);
  border-top-color:var(--bn-coral);
  transform:scale(1.04);
  box-shadow:0 20px 60px -15px rgba(122,74,58,0.35);
  position:relative;
}
.tier.featured:hover{
  box-shadow:0 24px 70px -15px rgba(122,74,58,0.45);
  transform:scale(1.04) translateY(-4px);
}
.tier.featured h3, .tier.featured .price{color:#fff;}
.tier.featured p, .tier.featured li{color:var(--bc-blush);}
/* "Most Popular" badge */
.tier-badge{
  display:inline-block;
  background:var(--bn-coral);
  color:#fff;
  font-size:.65rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:5px 14px;
  margin-bottom:16px;
  font-family:var(--body);
  font-weight:500;
}
.price{font-family:var(--header);font-size:1.7rem;color:var(--bc-mauve);margin:.3em 0 .6em;font-weight:400;}
.tier ul{list-style:none;margin:16px 0;padding:0;flex:1;}
.tier li{
  position:relative;padding-left:22px;margin-bottom:12px;font-size:.88rem;color:#8a6656;
}
/* Blush line bullets instead of em-dashes */
.tier li::before{
  content:'';
  position:absolute;left:0;top:.75em;
  width:10px;height:1px;
  background:var(--bc-blush);
}
.tier.featured li::before{background:var(--bc-blush);}
.fine{font-size:.76rem;color:#a08876;}
.tier.featured .fine{color:var(--bc-cream-soft);opacity:.7;}
.tier .btn{margin-top:auto;width:100%;justify-content:center;}

/* ===================================================
   FAQ — Numbered accordion
   =================================================== */
.faq-list{max-width:780px;margin:0 auto;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  width:100%;text-align:left;background:none;border:none;
  padding:26px 0;
  display:grid;
  grid-template-columns:48px 1fr 32px;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition:color .2s ease;
}
.faq-q:hover{color:var(--bc-mauve);}
.faq-num{
  font-family:var(--header);
  font-size:1.1rem;
  color:var(--bc-blush);
  opacity:.6;
}
.faq-q-text{
  font-family:var(--header);
  font-size:1.05rem;
  color:var(--bc-text);
}
.faq-q:hover .faq-q-text{color:var(--bc-mauve);}
.faq-q .plus{
  font-family:var(--body);font-size:1.2rem;color:var(--bc-mauve);
  transition:transform .3s ease;
  justify-self:end;
}
.faq-item.open .faq-q .plus{transform:rotate(45deg);}

/* Smooth expansion via grid-template-rows */
.faq-a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .4s ease;
}
.faq-a > div{
  overflow:hidden;
}
.faq-item.open .faq-a{
  grid-template-rows:1fr;
}
.faq-a p{padding:0 0 24px 60px;margin:0;}

/* FAQ CTA */
.faq-cta{
  text-align:center;
  margin-top:72px;
  padding-top:48px;
  border-top:1px solid var(--line);
}

/* ===================================================
   CONTACT — Stacked layout (mirrors FAQ pattern)
   =================================================== */
.contact-email{
  font-family:var(--header);font-size:1.25rem;color:var(--bc-blush);
  display:inline-block;transition:color .2s ease;margin-top:20px;
}
.contact-email:hover{color:var(--bc-mauve);}

.contact-form-card{
  background:#fff;
  max-width:640px;
  margin:0 auto;
  padding:48px;
  border-radius:4px;
  box-shadow:0 2px 24px rgba(0,0,0,.06);
}
.contact-form-card form{
  width:100%;
}

/* Underline-only inputs + floating labels */
.field{margin-bottom:28px;position:relative;}
.field label{
  display:block;font-size:.72rem;text-transform:uppercase;
  letter-spacing:.1em;color:var(--bc-mauve);
  margin-bottom:8px;
  transition:all .25s ease;
}
.field input, .field textarea{
  width:100%;padding:12px 0;
  border:none;
  border-bottom:1px solid var(--line);
  background:transparent;
  font-family:var(--body);font-size:.92rem;color:var(--bc-text);
  border-radius:0;
  transition:border-color .3s ease;
}
.field input:focus, .field textarea:focus{
  outline:none;
  border-bottom-color:var(--bc-mauve);
}
.field textarea{resize:vertical;min-height:100px;}

/* Chip styling */
.chip-row{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  padding:8px 18px;border:1px solid var(--line);border-radius:20px;
  font-size:.78rem;color:var(--bc-text);cursor:pointer;
  transition:all .25s ease;
}
.chip:hover{border-color:var(--bc-mauve);color:var(--bc-mauve);}
.chip.active{
  background:var(--bc-mauve);
  border-color:var(--bc-mauve);
  color:#fff;
}

/* ===================================================
   IMAGE + TEXT GRIDS (used on various pages)
   =================================================== */
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:72px;align-items:center;}
.split.reverse{grid-template-columns:1.1fr .9fr;}
.split img{width:100%;border-radius:2px;box-shadow:var(--shadow);}
.split .figure{position:relative;}
.split .figure img{height:500px;object-fit:cover;}
.caption{font-family:var(--sub);font-style:italic;font-size:.85rem;color:var(--bc-mauve);margin-top:12px;}

/* Pillars / three-up (legacy) */
.trio{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.trio img{width:100%;height:300px;object-fit:cover;border-radius:2px;margin-bottom:20px;box-shadow:var(--shadow);transition:box-shadow .3s ease;}
.trio img:hover{box-shadow:var(--shadow-hover);}
.trio .subhead{display:block;margin-bottom:4px;}

/* ===================================================
   FOOTER — Centered column layout
   =================================================== */
footer{
  background:var(--bc-text);
  color:var(--bc-cream);
  padding:80px 0 36px;
}
.footer-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:28px;
}
.footer-inner .brand-logo img{
  height:36px;
  filter:brightness(0) invert(1);
  opacity:.88;
}
.footer-inner .foot-nav ul{
  list-style:none;display:flex;gap:26px;padding:0;margin:0;flex-wrap:wrap;
  justify-content:center;
}
.footer-inner .foot-nav a{
  font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;
  color:var(--bc-cream);opacity:.65;transition:opacity .2s ease;
}
.footer-inner .foot-nav a:hover{opacity:1;}
.footer-inner .social-row{
  display:flex;gap:14px;justify-content:center;
}
.footer-inner .social-row a{
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;
  transition:all .3s ease;
  color:var(--bc-cream);
}
.footer-inner .social-row a:hover{
  background:var(--bc-blush);border-color:var(--bc-blush);color:var(--bc-text);
}
.footer-inner .footer-tagline{
  max-width:300px;
  color:rgba(246,237,229,0.55);
  font-size:.88rem;
  margin:0;
}
.footer-bottom{
  margin-top:40px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  font-size:.72rem;
  color:rgba(246,237,229,0.4);
}
.footer-bottom span + span{margin-left:24px;}

/* Legacy footer support (for pages not yet updated) */
.footer-top{
  display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:40px;
  padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,0.1);margin-bottom:24px;
}
footer .brand-logo img{height:36px;filter:brightness(0) invert(1);opacity:.88;}
footer .foot-nav ul{list-style:none;display:flex;gap:26px;padding:0;margin:0;flex-wrap:wrap;}
footer .foot-nav a{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:var(--bc-cream);opacity:.65;transition:opacity .2s ease;}
footer .foot-nav a:hover{opacity:1;}
.social-row{display:flex;gap:14px;margin-top:28px;}
.social-row a{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;transition:all .3s ease;
  color:var(--bc-mauve);
}
.social-row a svg{width:16px;height:16px;}
.social-row a:hover{background:var(--bc-mauve);border-color:var(--bc-mauve);color:#fff;}
footer .social-row a{border-color:rgba(255,255,255,0.18);color:var(--bc-cream);}
footer .social-row a:hover{background:var(--bc-blush);border-color:var(--bc-blush);color:var(--bc-text);}
.bottom-line{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.72rem;color:rgba(246,237,229,0.45);}

/* Contact page: also support .contact-info (fallback) */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:72px;}
.contact-info .email{font-family:var(--header);font-size:1.4rem;color:var(--bc-mauve);margin:14px 0 20px;display:inline-block;transition:color .2s ease;}
.contact-info .email:hover{color:var(--bc-text);}
form.demo-form{background:var(--bc-cream-soft);border:1px solid var(--line);padding:40px;border-radius:2px;}

/* Hero CTA row helper */
.hero-cta{margin-top:32px;display:flex;gap:16px;flex-wrap:wrap;}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width:920px){
  nav.primary{display:none;}
  .menu-toggle{display:block;}
  .desktop-only{display:none!important;}

  .hero-fullscreen .hero-content{padding:20px;}
  .hero-fullscreen .hero-heading{font-size:clamp(1.2rem,3.5vw,1.6rem);}
  .hero-fullscreen .hero-note{white-space:normal;width:auto;max-width:100%;}

  .mission-editorial .wrap{grid-template-columns:1fr;}
  .mission-photo{margin-left:0;}
  .mission-photo img{height:360px;}
  .mission-text-panel{margin-left:0;margin-top:-40px;}

  .about-hero-split{grid-template-columns:1fr;min-height:auto;}
  .about-hero-split .hero-photo img{height:70vh;min-height:420px;}
  .about-hero-split .hero-text{padding:40px 24px;padding-top:40px;}

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

  .bach-steps{grid-template-columns:repeat(2,1fr);gap:16px;}
  .bach-tiers{grid-template-columns:1fr;}
  .bach-themes{grid-template-columns:1fr;}
  .bach-addons{grid-template-columns:1fr;}

  .cta-flanked-grid{grid-template-columns:1fr;gap:0;}
  .cta-flank-photo img{height:260px;}
  .cta-flanked .cta-inner{border-left:none;border-right:none;}

  .tiers{grid-template-columns:1fr;}
  .tier.featured{transform:none;}
  .tier.featured:hover{transform:translateY(-4px);}

  .contact-form-card{padding:32px 24px;}

  .split, .split.reverse, .contact-grid{grid-template-columns:1fr;}
  .trio{grid-template-columns:1fr;}

  section{padding:64px 0;}
  .wrap{padding:0 24px;}
  .nav-row{padding:16px 24px;}

  .split, .split.reverse, .contact-grid{gap:40px;}

  .faq-a p{padding-left:0;}
  .faq-q{grid-template-columns:36px 1fr 28px;}

  .footer-inner{gap:20px;}
  .footer-inner .foot-nav ul{gap:16px;}

  .blog-post{padding:48px 0;}
  .blog-preview{flex-direction:column;}
  .blog-preview-thumb{width:100%;height:200px;}

  /* Google Form embed on Contact tends to render taller on mobile
     (stacked touch-friendly fields) -- give it more room so nothing
     gets clipped inside the scroll box */
  .wrap iframe{height:1300px;}
}

/* ===================================================
   BLOG PAGE — Photo hero
   =================================================== */
.blog-hero{
  position:relative;
  min-height:45vh;
  display:flex;align-items:center;justify-content:center;
  text-align:center;
  overflow:hidden;
  padding:140px 0 64px;
}
.blog-hero-bg{
  position:absolute;inset:0;z-index:0;
  background-size:cover;background-position:center;
}
.blog-hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(122,74,58,0.7) 0%,rgba(122,74,58,0.85) 100%);
}
.blog-hero-content{
  position:relative;z-index:2;
  max-width:700px;padding:0 40px;
}
.blog-hero-content .eyebrow{color:var(--bc-blush);}
.blog-hero-content h1{color:#fff;}
.blog-hero-content .divider{background:rgba(255,255,255,.4);margin-left:auto;margin-right:auto;}
.blog-hero-content p{color:rgba(255,255,255,.85);max-width:56ch;margin-left:auto;margin-right:auto;}

/* ===================================================
   BLOG PAGE — Posts
   =================================================== */
.blog-post{max-width:720px;margin:0 auto;padding:64px 0;}
.blog-post + .blog-post{border-top:1px solid var(--line);}
.blog-post-date{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:var(--bc-mauve);margin-bottom:8px;}
.blog-post-title{margin-bottom:24px;}
.blog-post-body img{width:100%;max-height:360px;object-fit:cover;border-radius:4px;margin:28px 0;}
.blog-post-body .caption{font-size:.82rem;color:var(--bc-mauve);font-style:italic;text-align:center;margin-top:-20px;margin-bottom:28px;}
.blog-post-body ul{padding-left:1.2em;}
.blog-post-body li{margin-bottom:6px;}
.blog-post-sign-off{font-family:var(--sub);font-style:italic;margin-top:32px;color:var(--bc-mauve);}
.blog-post-hero-img{width:100%;max-height:400px;object-fit:cover;border-radius:4px;margin-bottom:28px;}

/* Blog index previews */
.blog-preview { max-width:720px; margin:0 auto; padding:48px 0; display:flex; gap:28px; align-items:flex-start; }
.blog-preview + .blog-preview { border-top:1px solid var(--line); }
.blog-preview-thumb {
  flex-shrink:0; width:180px; height:140px; overflow:hidden; border-radius:4px;
  display:block;
}
.blog-preview-thumb img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease;
}
.blog-preview-thumb:hover img { transform:scale(1.05); }
.blog-preview-text { flex:1; min-width:0; }
.blog-preview .blog-post-title a { color:var(--bc-text); transition:color .2s ease; }
.blog-preview .blog-post-title a:hover { color:var(--bc-mauve); }
.blog-preview-excerpt { color:#8a6656; }
.blog-read-more {
  font-size:.75rem; text-transform:uppercase; letter-spacing:.12em; font-weight:500;
  color:var(--bc-mauve); border-bottom:1px solid var(--bc-blush);
  padding-bottom:2px; transition:color .2s ease;
}
.blog-read-more:hover { color:var(--bc-text); }

/* Back to blog link on individual posts */
.blog-post-back {
  display:inline-block; margin-bottom:32px;
  font-size:.75rem; text-transform:uppercase; letter-spacing:.12em; font-weight:500;
  color:var(--bc-mauve); transition:color .2s ease;
}
.blog-post-back:hover { color:var(--bc-text); }
