/* =========================================================
   JKJ Jewellers — Wedding Landing Page
   Theme layer on top of Bootstrap 5.3
   Bootstrap handles the grid + breakpoints; this file
   handles the JKJ visual language.
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  --maroon-950:#2f0608;
  --maroon-900:#3d0a0c;
  --maroon-800:#5a1112;
  --maroon-700:#6b1717;
  --gold-600:#a8741f;
  --gold-500:#b6842c;
  --gold-400:#c79a44;
  --gold-300:#d7b46b;
  --ivory-50:#faf6ed;
  --ivory-100:#f4ecdf;
  --white:#fffdf9;
  --ink:#2e2621;
  --muted:#6f655d;
  --border:#dbc9aa;

  --font-display:"Cormorant Garamond",Georgia,serif;
  --font-body:Inter,-apple-system,"Segoe UI",Arial,sans-serif;

  --radius-card:10px;
  --radius-control:4px;
  --shadow-card:0 12px 36px rgba(54,18,14,.12);
  --shadow-soft:0 6px 20px rgba(54,18,14,.08);

  /* Bootstrap overrides */
  --bs-body-font-family:var(--font-body);
  --bs-body-color:var(--ink);
  --bs-body-bg:var(--ivory-50);
  --bs-body-font-size:1rem;
  --bs-body-line-height:1.6;
  --bs-link-color:inherit;
  --bs-link-color-rgb:46,38,33;
  --bs-link-hover-color:var(--maroon-800);
  --bs-link-hover-color-rgb:90,17,18;
  --bs-border-color:var(--border);
}

/* Widen the Bootstrap container to match the reference layout */
@media (min-width:1400px){
  .container{max-width:1280px}
}

body{-webkit-font-smoothing:antialiased}
a{text-decoration:none}
img,svg{max-width:100%}
::selection{background:var(--gold-300);color:var(--maroon-950)}

:focus-visible{outline:2px solid var(--gold-500);outline-offset:2px}

/* ---------- Section heads ---------- */
.section{padding:72px 0}
.section__head{margin-bottom:40px}

.section__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(1.75rem,1.15rem + 2.4vw,2.6rem);
  line-height:1.2;
  color:var(--maroon-900);
  margin:0;
}
.section__sub{
  margin:8px 0 0;
  font-size:.875rem;
  color:var(--muted);
}

/* Gold divider with centre diamond */
.divider{
  display:block;
  width:150px;
  height:14px;
  margin:16px auto;
  background:url("../../jkj-wedding-landing-assets/decorations/gold-divider.svg") center/contain no-repeat;
}
.divider--sm{width:110px;margin-block:12px}
.divider--left{margin-inline:0}
.divider--gold{filter:brightness(1.35)}

/* ---------- Buttons ---------- */
.btn{
  --bs-btn-focus-box-shadow:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:var(--radius-control);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  line-height:1.25;
  border:1px solid transparent;
  transition:background-color .25s,color .25s,border-color .25s,transform .25s,box-shadow .25s;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn:disabled{opacity:.85;transform:none}

.btn--solid{background:var(--maroon-800);color:var(--ivory-50);border-color:var(--maroon-800)}
.btn--solid:hover,.btn--solid:focus{background:var(--maroon-950);color:var(--ivory-50);border-color:var(--maroon-950);box-shadow:var(--shadow-soft)}

.btn--outline{background:transparent;color:var(--maroon-800);border-color:var(--border)}
.btn--outline:hover,.btn--outline:focus{color:var(--maroon-800);border-color:var(--gold-500);background:#fff}

.btn--ghost{background:transparent;color:var(--maroon-800);border-color:var(--gold-500);padding:13px 22px}
.btn--ghost:hover,.btn--ghost:focus{background:var(--maroon-800);color:var(--ivory-50);border-color:var(--maroon-800)}

.btn--gold{background:var(--gold-600);color:#fff;border-color:var(--gold-600);font-size:.78rem}
.btn--gold:hover,.btn--gold:focus{background:var(--gold-500);color:#fff;border-color:var(--gold-500);box-shadow:0 8px 24px rgba(184,132,44,.35)}

.btn--xs{padding:9px 10px;font-size:.6rem;letter-spacing:.1em}

/* Arrow text link */
.link-arrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--maroon-800);
}
.link-arrow svg{width:20px;height:20px;color:var(--gold-600);transition:transform .25s}
.link-arrow:hover{color:var(--maroon-800)}
.link-arrow:hover svg{transform:translateX(5px)}

/* ---------- Announcement ---------- */
.announce{background:var(--maroon-950);color:var(--ivory-100);padding:8px 16px}
.announce p{font-size:.65rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase}

/* ---------- Header ---------- */
.header{
  z-index:1030;
  background:var(--ivory-50);
  border-bottom:1px solid rgba(219,201,170,.55);
  transition:box-shadow .3s;
}
.header.is-stuck{box-shadow:0 6px 24px rgba(54,18,14,.10)}
.header .navbar{--bs-navbar-padding-y:0}

/* Logo — official maroon PNG on white; multiply drops the white box */
.logo img{width:auto;height:104px;mix-blend-mode:multiply}
.logo--footer img{
  height:112px;
  mix-blend-mode:normal;
  /* maroon artwork -> gold, so it reads on the dark footer */
  filter:brightness(0) saturate(100%) invert(72%) sepia(38%) saturate(680%) hue-rotate(1deg) brightness(88%) contrast(88%);
}

/* Nav */
.navbar-nav{--bs-nav-link-padding-y:.4rem}
.nav .nav-link{
  position:relative;
  font-size:.82rem;
  font-weight:500;
  letter-spacing:.05em;
  color:var(--ink);
  transition:color .25s;
}
.nav .nav-link::after{
  content:"";
  position:absolute;
  left:0;bottom:2px;
  width:100%;height:1px;
  background:var(--gold-500);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s;
}
.nav .nav-link:hover,.nav .nav-link:focus{color:var(--maroon-800)}
.nav .nav-link:hover::after{transform:scaleX(1)}

/* Burger */
.burger{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  width:44px;height:44px;
  padding:0;
}
.burger span{
  display:block;
  width:24px;height:1.5px;
  background:var(--maroon-800);
  transition:transform .3s,opacity .2s;
}
/* Bootstrap only adds .collapsed after the first toggle, so drive the
   X state from aria-expanded, which is correct from first paint. */
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  isolation:isolate;
  min-height:clamp(520px,64vw,640px);
  display:flex;
  align-items:center;
  background:var(--ivory-100);
  overflow:hidden;
}
.hero__media{position:absolute;inset:0;z-index:-2}
.hero__media img{width:100%;height:100%;object-fit:cover;object-position:center 22%}
/* Ivory wash keeps the left-hand copy legible over the photo */
.hero::before{
  content:"";
  position:absolute;inset:0;z-index:-1;
  background:linear-gradient(
    100deg,
    rgba(250,246,237,.97) 0%,
    rgba(250,246,237,.92) 26%,
    rgba(250,246,237,.55) 42%,
    rgba(250,246,237,.08) 56%,
    rgba(250,246,237,0) 68%
  );
}
.hero__inner{padding-block:56px}

.hero__copy{max-width:600px}
.hero__title{
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(2.1rem,1.05rem + 3.4vw,3.55rem);
  line-height:1.12;
  color:var(--maroon-900);
  margin:0;
  text-wrap:balance;
}
.hero__copy .divider{margin-inline:0}
.hero__text{
  max-width:430px;
  margin:0 0 32px;
  color:#514740;
}
.hero__actions{gap:18px 28px}
.hero__actions .btn{padding:16px 28px}

/* Lead form card */
.lead-card{
  background:rgba(255,253,249,.96);
  backdrop-filter:blur(3px);
  border:1px solid rgba(219,201,170,.9);
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-card);
  padding:30px 28px;
}
.lead-card__title{
  font-family:var(--font-display);
  font-weight:500;
  font-size:1.45rem;
  line-height:1.25;
  text-align:center;
  color:var(--maroon-900);
  margin:0;
}

/* ---------- Forms ---------- */
.field{position:relative}

.form .form-control,
.form .form-select{
  padding:14px 16px;
  background-color:var(--ivory-100);
  border:1px solid var(--border);
  border-radius:var(--radius-control);
  font-size:.9rem;
  color:var(--ink);
  transition:border-color .25s,background-color .25s,box-shadow .25s;
}
/* our own chevron / calendar glyph sits on the right */
.form .form-select{background-image:none;padding-right:46px}
.field--icon .form-control{padding-right:46px}

.form .form-control::placeholder{color:#9a8f85}
.form .form-select:has(option[value=""]:checked){color:#9a8f85}

.form .form-control:hover,
.form .form-select:hover{border-color:var(--gold-300)}

.form .form-control:focus,
.form .form-select:focus{
  background-color:#fff;
  border-color:var(--gold-500);
  box-shadow:0 0 0 3px rgba(184,132,44,.14);
  color:var(--ink);
}

.field__icon{
  position:absolute;
  top:50%;right:15px;
  transform:translateY(-50%);
  width:18px;height:18px;
  color:var(--gold-600);
  pointer-events:none;
  z-index:3;
}
/* hide the native date glyph — we ship our own */
.form .form-control[type="date"]::-webkit-calendar-picker-indicator{opacity:0;cursor:pointer}

/* Bootstrap validation, restyled */
.form .was-validated .form-control:invalid,
.form .was-validated .form-select:invalid,
.was-validated .form .form-control:invalid,
.was-validated .form .form-select:invalid{
  border-color:#b4483f;
  background-image:none;
  box-shadow:none;
}

/* ---------- Trust strip ---------- */
.trust{
  background:var(--white);
  border-block:1px solid rgba(219,201,170,.5);
  padding:26px 0;
}
.trust__item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:6px 18px;
}
.trust__icon{width:34px;height:34px;flex:0 0 auto;color:var(--gold-600)}
.trust__item p{font-size:.85rem;font-weight:500;line-height:1.35;color:var(--ink)}

@media (min-width:992px){
  .trust__item + .trust__item{border-left:1px solid rgba(219,201,170,.7)}
}
@media (max-width:991.98px){
  .trust__item{justify-content:flex-start;padding:12px 14px}
  .trust__item:nth-child(even){border-left:1px solid rgba(219,201,170,.7)}
  .trust__item:nth-child(n+3){border-top:1px solid rgba(219,201,170,.7)}
}

/* ---------- Collections ---------- */
.collections{
  background:var(--ivory-100) url("../../jkj-wedding-landing-assets/backgrounds/ivory-paper.svg") center/cover;
}
.coll{
  position:relative;
  display:block;
  height:100%;
  overflow:hidden;
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-soft);
}
.coll img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  transition:transform .6s cubic-bezier(.2,.7,.3,1);
}
.coll::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(30,6,7,.72) 0%,rgba(30,6,7,.25) 34%,rgba(30,6,7,0) 62%);
}
.coll__label{
  position:absolute;
  left:18px;bottom:14px;
  z-index:2;
  font-family:var(--font-display);
  font-size:1.5rem;
  font-weight:500;
  color:#fff;
  text-shadow:0 2px 12px rgba(0,0,0,.45);
}
.coll:hover img{transform:scale(1.06)}

/* Wider cards once they stack on small screens */
@media (max-width:575.98px){
  .coll img{aspect-ratio:16/11}
}

/* ---------- Heritage ---------- */
.heritage{background:var(--ivory-50)}
.heritage > .row{align-items:stretch}
.heritage__media{display:flex}
.heritage__media{min-height:320px;padding:0;overflow:hidden}
.heritage__media img{width:100%;height:100%;min-height:100%;object-fit:cover;display:block}

.heritage__panel{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  background:var(--ivory-50);
  padding:clamp(36px,5vw,72px) clamp(24px,5vw,80px);
}
.heritage__body{position:relative;z-index:2;max-width:520px}

.heritage__title{
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:18px;
  margin:0;
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(1.7rem,1.1rem + 2.2vw,2.5rem);
  color:var(--maroon-900);
}
.heritage__num{
  font-size:clamp(2.6rem,1.6rem + 3.6vw,4.1rem);
  font-weight:500;
  line-height:1;
  color:var(--gold-600);
}
.heritage__num sup{position:relative;top:-.55em;font-size:.5em}

.heritage__body p{max-width:400px;margin:0 0 30px;color:#514740}

.heritage__leaf{
  position:absolute;
  right:clamp(-10px,2vw,32px);
  bottom:-30px;
  width:min(270px,34%);
  opacity:.45;
  pointer-events:none;
  z-index:1;
}

@media (max-width:991.98px){
  .heritage__media img{height:clamp(240px,42vw,340px)}
  .heritage__panel{text-align:center}
  .heritage__body{max-width:none;margin-inline:auto}
  .heritage__title{justify-content:center}
  .heritage__body .divider,
  .heritage__body p{margin-inline:auto}
  .heritage__leaf{opacity:.32}
}

/* ---------- Showrooms ---------- */
.stores{background:var(--ivory-100)}

.store{
  display:flex;
  flex-direction:column;
  background:var(--white);
  border:1px solid rgba(219,201,170,.85);
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  transition:transform .3s,box-shadow .3s;
}
.store:hover{transform:translateY(-4px);box-shadow:var(--shadow-card)}

.store__media{position:relative;overflow:hidden}
.store__media img:not(.store__fascia){width:100%;aspect-ratio:3/2;object-fit:cover}

/* Official logo laid over the blank fascia of each storefront */
.store__fascia{
  position:absolute;
  top:14%;left:50%;
  transform:translateX(-50%);
  width:min(56%,130px);
  filter:brightness(0) saturate(100%) invert(80%) sepia(45%) saturate(560%) hue-rotate(348deg) brightness(96%) contrast(90%)
         drop-shadow(0 2px 6px rgba(0,0,0,.55));
  pointer-events:none;
}

.store__body{
  position:relative;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:26px 16px 18px;
}
.store__pin{
  position:absolute;
  top:-14px;left:50%;
  transform:translateX(-50%);
  width:28px;height:28px;
  padding:3px;
  border-radius:50%;
  background:var(--white);
  color:var(--gold-600);
}
.store__body h3{
  margin:0;
  font-family:var(--font-display);
  font-size:1.2rem;
  font-weight:600;
  color:var(--maroon-900);
}
.store__body p{margin:6px 0 0;font-size:.76rem;line-height:1.55;color:var(--muted)}
.store__actions{width:100%;margin-top:auto;padding-top:18px}

/* ---------- Testimonials ---------- */
.testi{
  background:var(--ivory-50);
  border-block:1px solid rgba(219,201,170,.5);
  padding:44px 0;
}
.testi__photo{
  width:112px;height:112px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid var(--white);
  box-shadow:0 6px 18px rgba(54,18,14,.16);
}

.testi__stage{position:relative;min-height:104px;padding-left:44px}
.testi__quote{position:absolute;top:2px;left:0;width:28px;height:28px;color:var(--gold-300)}

.testi__slide{
  position:absolute;
  inset:0 0 auto 44px;
  margin:0;
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:opacity .5s,transform .5s,visibility .5s;
}
.testi__slide.is-active{
  position:relative;
  inset:auto;
  opacity:1;
  visibility:visible;
  transform:none;
}
.testi__slide p{
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(1.05rem,.95rem + .5vw,1.3rem);
  font-style:italic;
  line-height:1.55;
  color:var(--maroon-900);
}
.testi__slide cite{
  display:block;
  margin-top:10px;
  font-family:var(--font-body);
  font-size:.78rem;
  font-style:normal;
  letter-spacing:.04em;
  color:var(--gold-600);
}

.rnd{
  display:grid;
  place-items:center;
  width:44px;height:44px;
  padding:0;
  background:none;
  border:1px solid var(--border);
  border-radius:50%;
  color:var(--maroon-800);
  transition:background-color .25s,border-color .25s,color .25s;
}
.rnd svg{width:19px;height:19px}
.rnd:hover{background:var(--maroon-800);border-color:var(--maroon-800);color:var(--ivory-50)}

@media (max-width:767.98px){
  .testi__inner{text-align:center}
  .testi__stage{padding-left:0;min-height:150px}
  .testi__quote{position:relative;margin:0 auto 10px}
  .testi__slide{inset:0}
  .testi__slide.is-active{position:relative;inset:auto}
  .testi__photo{width:92px;height:92px}
}

/* ---------- CTA ---------- */
.cta{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:54px 0;
  background:var(--maroon-900) url("../../jkj-wedding-landing-assets/backgrounds/maroon-gradient.svg") center/cover no-repeat;
  color:var(--ivory-100);
}
.cta__leaf{
  position:absolute;
  right:-40px;top:50%;
  transform:translateY(-50%);
  width:min(300px,26%);
  opacity:.16;
  z-index:-1;
  pointer-events:none;
}

.cta__title{
  margin:0;
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(1.9rem,1.2rem + 2.6vw,3rem);
  line-height:1.15;
  color:var(--ivory-50);
}
.cta__copy p{max-width:360px;font-size:.92rem;color:rgba(244,236,223,.82)}

/* hairline between copy and form */
@media (min-width:992px){
  .cta__form{
    padding-left:clamp(24px,4vw,48px);
    border-left:1px solid rgba(215,180,107,.3);
  }
}
@media (max-width:991.98px){
  .cta__copy{text-align:center}
  .cta__copy .divider,
  .cta__copy p{margin-inline:auto}
  .cta__form{max-width:560px;margin-inline:auto}
}

.cta .form-control,
.cta .form-select{background-color:rgba(255,253,249,.97);border-color:transparent}
.cta .form-control:focus,
.cta .form-select:focus{
  border-color:var(--gold-400);
  box-shadow:0 0 0 3px rgba(199,154,68,.3);
}
.cta .field__icon{color:var(--maroon-800)}

@media (max-width:575.98px){
  .cta{padding:40px 0}
}

/* ---------- Footer ---------- */
.footer{
  background:var(--maroon-950);
  color:rgba(244,236,223,.78);
  --bs-link-color-rgb:244,236,223;
  --bs-link-hover-color-rgb:215,180,107;
}
.footer a{color:rgba(244,236,223,.78)}
.footer__grid{padding-block:44px 34px}

.footer__col h3{
  margin-bottom:14px;
  font-family:var(--font-body);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.06em;
  color:var(--ivory-100);
}
.footer__list{display:grid;gap:8px;margin:0;padding:0;list-style:none;font-size:.82rem}
.footer__list a{transition:color .25s}
.footer__list a:hover{color:var(--gold-300)}
.footer__list:not(.footer__list--plain) li{position:relative;padding-left:16px}
.footer__list:not(.footer__list--plain) li::before{
  content:"";
  position:absolute;
  left:0;top:.55em;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--gold-500);
}

.footer__social{
  display:grid;
  place-items:center;
  width:38px;height:38px;
  border:1px solid rgba(215,180,107,.45);
  border-radius:6px;
  color:var(--ivory-100);
  transition:background-color .25s,border-color .25s,color .25s;
}
.footer__social svg{width:19px;height:19px}
.footer__social:hover{background:var(--gold-600);border-color:var(--gold-600);color:#fff}

.footer__bar{
  border-top:1px solid rgba(215,180,107,.18);
  padding:14px 24px;
  text-align:center;
}
.footer__bar p{font-size:.72rem;color:rgba(244,236,223,.6)}

/* ---------- Consultation modal ---------- */
.jkj-modal .modal-content{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(219,201,170,.9);
  border-radius:var(--radius-card);
  background:var(--white);
  box-shadow:0 30px 70px rgba(30,6,7,.35);
}
.jkj-modal .modal-dialog{--bs-modal-width:840px}

.jkj-modal__close{
  position:absolute;
  top:14px;right:14px;
  z-index:5;
  padding:8px;
  background-color:rgba(255,253,249,.9);
  border-radius:50%;
  opacity:.85;
  --bs-btn-close-focus-shadow:none;
}
.jkj-modal__close:hover{opacity:1;background-color:#fff}

/* Left visual panel */
.jkj-modal__aside{position:relative;overflow:hidden;min-height:200px}
.jkj-modal__aside img{
  position:absolute;
  inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.jkj-modal__aside::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(30,6,7,.9) 0%,rgba(30,6,7,.45) 45%,rgba(30,6,7,.15) 100%);
}
.jkj-modal__aside-copy{
  position:absolute;
  left:0;right:0;bottom:0;
  z-index:2;
  padding:22px 20px;
  color:var(--ivory-50);
}
.jkj-modal__eyebrow{
  margin:0 0 6px;
  font-size:.6rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold-300);
}
.jkj-modal__aside-text{
  margin:0;
  font-family:var(--font-display);
  font-size:1.15rem;
  line-height:1.35;
}

/* Right form panel */
.jkj-modal__body{padding:clamp(26px,3.4vw,40px)}
.jkj-modal__title{
  margin:0;
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(1.5rem,1.2rem + 1vw,2rem);
  line-height:1.2;
  color:var(--maroon-900);
}
.jkj-modal__body .divider{margin-inline:0}
.jkj-modal__sub{
  margin:0 0 20px;
  font-size:.86rem;
  color:var(--muted);
}

.jkj-modal__assure{
  gap:8px 16px;
  margin:2px 0 0;
  padding:0;
  list-style:none;
  font-size:.72rem;
  color:var(--muted);
}
.jkj-modal__assure li{display:flex;align-items:center;gap:6px}
.jkj-modal__assure li svg{width:14px;height:14px;color:var(--gold-600)}

@media (max-width:767.98px){
  .jkj-modal__aside{min-height:132px}
  .jkj-modal__aside-copy{padding:16px}
  .jkj-modal__aside-text{font-size:1rem}
}

/* ---------- Mobile sticky action bar ---------- */
.mobile-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:1035;
  display:flex;
  gap:10px;
  padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  background:rgba(250,246,237,.97);
  backdrop-filter:blur(8px);
  border-top:1px solid var(--border);
  box-shadow:0 -6px 22px rgba(54,18,14,.14);
}
.mobile-bar__btn{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 10px;
  border-radius:var(--radius-control);
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  border:1px solid transparent;
  transition:background-color .25s,color .25s,border-color .25s;
}
.mobile-bar__btn svg{width:17px;height:17px;flex:0 0 auto}
.mobile-bar__btn{white-space:nowrap}
.mobile-bar__btn--call{
  background:transparent;
  color:var(--maroon-800);
  border-color:var(--gold-500);
}
.mobile-bar__btn--call:hover,.mobile-bar__btn--call:active{background:#fff;color:var(--maroon-800)}
.mobile-bar__btn--book{
  background:var(--maroon-800);
  color:var(--ivory-50);
  border-color:var(--maroon-800);
}
.mobile-bar__btn--book:hover,.mobile-bar__btn--book:active{background:var(--maroon-950);color:var(--ivory-50)}

/* keep the bar from covering the footer's last line */
@media (max-width:991.98px){
  body{padding-bottom:74px}
}

/* =========================================================
   Breakpoint refinements (Bootstrap tiers)
   ========================================================= */

/* < lg — collapsed navbar becomes a drawer */
@media (max-width:991.98px){
  .section{padding:56px 0}

  .header .navbar{padding-block:8px}
  .logo img{height:86px}

  .nav{
    padding:8px 0 18px;
    border-top:1px solid rgba(219,201,170,.5);
    margin-top:8px;
  }
  .nav .nav-link{
    padding:14px 2px;
    border-bottom:1px solid rgba(219,201,170,.5);
    font-size:.95rem;
  }
  .nav .nav-link::after{display:none}
  .nav__cta{margin-top:18px;width:100%}

  /* Hero stacks: photo on top, copy + form below */
  .hero{min-height:0;display:block}
  .hero__media{position:relative;inset:auto;z-index:0}
  .hero__media img{height:clamp(280px,52vw,420px);object-position:center 20%}
  .hero::before{display:none}
  .hero__inner{padding-block:40px}
  .hero__copy{max-width:none;text-align:center}
  .hero__copy .divider,
  .hero__text{margin-inline:auto}
  .hero__actions{justify-content:center}
  .lead-card{max-width:460px;margin-inline:auto}
}

/* < sm */
@media (max-width:575.98px){
  .section{padding:44px 0}
  .announce p{font-size:.58rem;letter-spacing:.16em}
  .logo img{height:74px}

  .hero__actions{flex-direction:column;align-items:stretch;gap:14px}
  .hero__actions .btn{width:100%}
  .hero__actions .link-arrow{justify-content:center}

  .lead-card{padding:24px 20px}
  .lead-card__title{font-size:1.3rem}

  .coll__label{font-size:1.35rem}
  .heritage__title{gap:10px}

  .footer__grid{padding-block:34px 26px}
  .footer__brand{text-align:center}
}

@media (max-width:359.98px){
  .store__actions > .col-6{width:100%}
  .btn{letter-spacing:.1em}
}

/* ---------- Thank-you page ---------- */
.ty-page{
  display:flex;
  flex-direction:column;
  min-height:100vh;
  min-height:100dvh;
  padding-bottom:0;
}
.ty-page .footer{margin-top:auto}

.ty{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  flex:1;
  display:flex;
  align-items:center;
  padding:clamp(40px,6vw,80px) 0;
  background:var(--ivory-100) url("../../jkj-wedding-landing-assets/backgrounds/ivory-paper.svg") center/cover;
}
.ty__leaf{
  position:absolute;
  right:-60px;bottom:-60px;
  width:min(360px,38%);
  opacity:.28;
  z-index:-1;
  pointer-events:none;
}

.ty__card{
  background:var(--white);
  border:1px solid rgba(219,201,170,.9);
  border-radius:var(--radius-card);
  box-shadow:var(--shadow-card);
  padding:clamp(30px,4.5vw,56px) clamp(22px,4vw,52px);
}

.ty__seal{
  display:grid;
  place-items:center;
  width:66px;height:66px;
  margin:0 auto 20px;
  border-radius:50%;
  color:var(--gold-600);
  background:var(--ivory-100);
  border:1px solid var(--border);
}
.ty__seal svg{width:30px;height:30px}

.ty__title{
  margin:0;
  font-family:var(--font-display);
  font-weight:400;
  font-size:clamp(1.9rem,1.3rem + 2.4vw,3rem);
  line-height:1.15;
  color:var(--maroon-900);
}
.ty__lead{
  max-width:520px;
  margin:0 auto;
  color:#514740;
}
.ty__lead strong{color:var(--maroon-800);font-weight:600}

/* Three-step explainer */
.ty__steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:32px 0 28px;
  padding:26px 0;
  border-block:1px solid rgba(219,201,170,.7);
  text-align:left;
}
.ty__step{display:flex;gap:12px;align-items:flex-start}
.ty__step p{margin:0;font-size:.82rem;line-height:1.5;color:var(--muted)}
.ty__step strong{color:var(--maroon-900);font-weight:600}
.ty__step-num{
  flex:0 0 auto;
  display:grid;
  place-items:center;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--maroon-800);
  color:var(--ivory-50);
  font-family:var(--font-display);
  font-size:.95rem;
  font-weight:600;
}

.ty__urgent{
  margin:0 0 26px;
  font-size:.88rem;
  color:var(--muted);
}
.ty__phone{
  font-weight:600;
  color:var(--maroon-800);
  border-bottom:1px solid var(--gold-300);
  white-space:nowrap;
}
.ty__phone:hover{color:var(--maroon-950);border-bottom-color:var(--gold-500)}

.ty__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.ty__social{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-top:26px;
  font-size:.74rem;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  transition:color .25s;
}
.ty__social svg{width:17px;height:17px;color:var(--gold-600)}
.ty__social:hover{color:var(--maroon-800)}

@media (max-width:767.98px){
  .ty__steps{grid-template-columns:1fr;gap:16px;margin:26px 0 22px}
}
@media (max-width:575.98px){
  .ty__actions .btn{width:100%}
  .ty__seal{width:56px;height:56px}
  .ty__seal svg{width:26px;height:26px}
}

/* ---------- Form-level alert on the landing page ---------- */
.form-alert{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-bottom:14px;
  padding:11px 14px;
  border-radius:var(--radius-control);
  background:#fdeceb;
  border:1px solid #e8b4b0;
  color:#8c2f28;
  font-size:.8rem;
  line-height:1.45;
}
.cta .form-alert,
.jkj-modal .form-alert{margin-bottom:0}

/* ---------- Motion / print ---------- */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
}

@media print{
  .header,.announce,.testi__nav,.cta,.burger{display:none !important}
  body{background:#fff}
}
