/*
Theme Name:  Em Bridal V6 Editorial
Theme URI:   https://www.embridalboutique.com.au/
Description: Premium custom theme fusing Salient's native engine with the handcrafted Em Bridal V6 Editorial design.
Author:      Antigravity
Author URI:  https://www.embridalboutique.com.au/
Template:    salient
Version:     1.0.0
Text Domain: salient-child-embridal
*/

/* ══════════════════════════════════════
   V6 SYSTEM TOKENS & RESET
   ══════════════════════════════════════ */
:root {
  --ink: #0C0B09;
  --cream: #F6F2EC;
  --sand: #EAE3D8;
  --dust: #D5CABC;
  --gold: #B09878;
  --warm: #8A6E52;
  --mist: #F0EBE3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --eb: 'EB Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Ensure clean resets on V6 template wrappers */
.v6-body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.v6-body *, .v6-body *::before, .v6-body *::after {
  box-sizing: border-box;
}

.v6-body img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.v6-body button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  font-weight: 300;
}

/* Page base animations and states */
.v6-body .page {
  display: block;
}

/* ══════════════════════════════════════
   BOTTOM NAV BAR — horizontal dots, fixed bottom
   ══════════════════════════════════════ */
.ps {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 12px;
  pointer-events: none;
}
.psb {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(12,11,9,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  pointer-events: all;
  transition: background .3s, width .35s, border-radius .35s;
  position: relative;
  flex-shrink: 0;
}
.psb.on {
  width: 22px;
  border-radius: 3px;
  background: var(--gold);
}
.psb:not(.on):hover { background: rgba(12,11,9,.38); }
.psb::before {
  content: attr(data-page);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(12,11,9,.45);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  background: rgba(246,242,236,.85);
  padding: 3px 7px;
}
.psb:hover::before { opacity: 1; }
.ps.lt .psb { background: rgba(246,242,236,.22); }
.ps.lt .psb.on { background: var(--gold); }
.ps.lt .psb:not(.on):hover { background: rgba(246,242,236,.45); }
.ps.lt .psb::before { color: rgba(246,242,236,.55); background: rgba(12,11,9,.6); }

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
nav.v6-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background .5s, border-color .5s;
  border-bottom: .5px solid transparent;
}
nav.v6-nav.solid {
  background: rgba(246,242,236,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(176,152,120,.12);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 14.5px;
  font-weight: 200;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.nav-logo.lt { color: var(--cream); }
nav.v6-nav.solid .nav-logo.lt { color: var(--ink); }

@media(min-width:768px) {
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 17.5px;
    letter-spacing: .36em;
  }
}
.v6-logo-img {
  display: block;
  height: auto;
  max-height: 30px;
  width: auto;
  transition: filter .3s ease;
}
@media(min-width:768px) {
  .v6-logo-img {
    max-height: 38px;
  }
}
nav.v6-nav .nav-logo.lt .v6-logo-img {
  filter: brightness(0) invert(1);
}
nav.v6-nav.solid .nav-logo.lt .v6-logo-img {
  filter: none;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.nav-side.right { margin-left: auto; }

.nav-dl {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .5;
  transition: opacity .25s, color .3s;
  display: none;
  text-decoration: none;
}
.nav-dl.lt { color: var(--cream); opacity: .55; }
nav.v6-nav.solid .nav-dl.lt { color: var(--ink); opacity: .5; }
.nav-dl:hover { opacity: 1; }

.nav-book {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: .5px solid var(--gold);
  padding-bottom: 1.5px;
  transition: opacity .25s, color .3s, border-color .3s;
  text-decoration: none;
}
.nav-book.lt { color: var(--cream); border-bottom-color: rgba(176,152,120,.45); }
nav.v6-nav.solid .nav-book.lt { color: var(--ink); border-bottom-color: var(--gold); }
.nav-book:hover { opacity: .45; }

.nav-menu-btn {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  font-weight: 300;
  transition: opacity .25s, color .3s;
  padding: 0;
  display: block;
}
.nav-menu-btn.lt { color: var(--cream); opacity: .6; }
nav.v6-nav.solid .nav-menu-btn.lt { color: var(--ink); opacity: .55; }
.nav-menu-btn:hover { opacity: 1; }

@media(min-width:768px) {
  .nav-menu-btn { display: none; }
  nav.v6-nav { padding: 0 3rem; }
  .nav-dl { display: block; }
}

/* ══════════════════════════════════════
   DROPDOWN MENU
   ══════════════════════════════════════ */
.menu-dropdown {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 790;
  background: rgba(12,11,9,.97);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: .5px solid rgba(176,152,120,.1);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .3s ease;
  padding: 1.75rem 1.5rem 2rem;
}
.menu-dropdown.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.md-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: .5px solid rgba(176,152,120,.08);
}
.md-item {
  font-family: var(--serif);
  font-size: clamp(23px,5.9vw,33px);
  font-weight: 200;
  letter-spacing: .01em;
  color: rgba(246,242,236,.5);
  padding: .625rem 0;
  border-bottom: .5px solid rgba(176,152,120,.07);
  text-align: left;
  width: 100%;
  transition: color .2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  line-height: 1.2;
  text-decoration: none;
  display: block;
}
.md-item.cur { color: rgba(246,242,236,.9); }
.md-item:hover { color: rgba(246,242,236,.82); }
.menu-dropdown.open .md-item { animation: mdIn .38s both; }
.md-item:nth-child(1) { animation-delay: .04s; }
.md-item:nth-child(2) { animation-delay: .07s; }
.md-item:nth-child(3) { animation-delay: .1s;  }
.md-item:nth-child(4) { animation-delay: .13s; }
.md-item:nth-child(5) { animation-delay: .16s; }
.md-item:nth-child(6) { animation-delay: .19s; }
.md-item:nth-child(7) { animation-delay: .22s; }
.md-item:nth-child(8) { animation-delay: .25s; }
@keyframes mdIn { from {opacity:0;transform:translateY(6px);} to {opacity:1;transform:none;} }

.md-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: .5px solid rgba(176,152,120,.1);
}
.md-book {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  font-family: var(--sans);
  font-weight: 300;
  cursor: pointer;
  padding: 0;
  transition: opacity .2s;
  text-decoration: none;
}
.md-book:hover { opacity: .6; }
.md-close {
  font-size: 11.5px;
  color: rgba(246,242,236,.25);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 200;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0;
  transition: color .2s;
}
.md-close:hover { color: rgba(246,242,236,.6); }
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 780;
  display: none;
}
.menu-backdrop.open { display: block; }

/* ══════════════════════════════════════
   SHARED UTILITIES
   ══════════════════════════════════════ */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: inherit;
  transition: gap .3s;
  text-decoration: none;
}
.arrow-link .a { transition: transform .3s; }
.arrow-link:hover { gap: 1rem; }
.arrow-link:hover .a { transform: translateX(4px); }
.eyebrow {
  font-size: 14.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-rule { width: 24px; height: .5px; background: var(--gold); margin-bottom: 2rem; }
.btn-gold { display: inline-flex; align-items: center; gap: .625rem; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); border-bottom: .5px solid rgba(176,152,120,.4); padding-bottom: 1.5px; transition: gap .3s, opacity .2s; text-decoration: none; }
.btn-gold:hover { gap: 1rem; opacity: .7; }
.btn-ink { display: inline-flex; align-items: center; gap: .625rem; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); transition: gap .3s, opacity .2s; text-decoration: none; }
.btn-ink:hover { gap: 1rem; opacity: .5; }
.btn-dk { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); padding: 13px 28px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); cursor: pointer; transition: all .3s; display: inline-block; text-align: center; text-decoration: none; }
.btn-dk:hover { background: var(--warm); border-color: var(--warm); }
.btn-lt { background: none; border: 1px solid var(--gold); color: var(--warm); padding: 13px 28px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all .3s; display: inline-block; text-align: center; text-decoration: none; }
.btn-lt:hover { border-color: var(--warm); color: var(--ink); }

/* ══════════════════════════════════════
   HERO STYLE
   ══════════════════════════════════════ */
.page-hero {
  height: 100svh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 3.5rem;
}
.page-hero.short { height: 62svh; min-height: 400px; }
@media(min-width:768px) {
  .page-hero { padding: 0 3rem 4.5rem; }
  .page-hero.short { height: 58svh; }
}
.ph-img { position: absolute; inset: 0; background-size: cover; background-position: center top; transition: transform 8s ease; }
.ph-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,9,.5) 0%, rgba(12,11,9,.25) 45%, rgba(12,11,9,.65) 80%, rgba(12,11,9,.95) 100%);
}
.ph-body { position: relative; z-index: 2; width: 100%; }
.ph-ey {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(246, 242, 236, 0.12);
  margin-bottom: 1.5rem;
}
.ph-title {
  font-family: var(--serif); font-size: clamp(57px, 13.0vw, 130px);
  font-weight: 200; font-style: italic; color: var(--cream); line-height: .95;
  text-shadow: 0 2px 8px rgba(12,11,9,0.4);
}
.ph-title em { font-style: normal; font-weight: 300; }
.ph-sub {
  font-size: 13.5px; color: rgba(246,242,236,.75); line-height: 1.85;
  letter-spacing: .04em; max-width: 340px; margin-top: 1.75rem;
  text-shadow: 0 1px 3px rgba(12,11,9,0.5);
}
.ph-cta { margin-top: 2rem; color: rgba(246,242,236,.85); }

/* ══════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════ */
.marquee { background: var(--ink); overflow: hidden; padding: .7rem 0; border-top: .5px solid rgba(176,152,120,.1); }
.mi { display: flex; gap: 3rem; white-space: nowrap; animation: mar 24s linear infinite; }
@keyframes mar { to {transform: translateX(-50%);} }
.mk { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); flex-shrink: 0; display: inline-flex; align-items: center; gap: 1rem; }
.md { width: 2px; height: 2px; border-radius: 50%; background: rgba(246, 242, 236, 0.4); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
body.v6-body footer.v6-footer {
  font-family: var(--sans) !important;
  background: var(--ink) !important;
  padding: 4rem 1.5rem 5.5rem !important;
}
body.v6-body footer.v6-footer a,
body.v6-body footer.v6-footer span,
body.v6-body footer.v6-footer div {
  font-family: var(--sans) !important;
}
body.v6-body footer.v6-footer .ft-logo {
  font-family: var(--serif) !important; font-size: 20px !important; font-weight: 200 !important;
  letter-spacing: .36em !important; text-transform: uppercase !important;
  color: rgba(246,242,236,.9) !important; display: block !important; margin-bottom: 2.5rem !important;
  text-decoration: none !important;
}
body.v6-body footer.v6-footer .ft-logo img.v6-footer-logo-img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
body.v6-body footer.v6-footer .ft-rule { height: .5px !important; background: rgba(246,242,236,.06) !important; margin-bottom: 2.5rem !important; }
body.v6-body footer.v6-footer .ft-section { margin-bottom: 2rem !important; }
body.v6-body footer.v6-footer .ft-st { font-size: 10.5px !important; letter-spacing: .22em !important; text-transform: uppercase !important; color: rgba(176,152,120,.75) !important; margin-bottom: 1rem !important; }
body.v6-body footer.v6-footer .ft-links { display: flex !important; flex-direction: column !important; gap: .5rem !important; }
body.v6-body footer.v6-footer .ft-l,
body.v6-body footer.v6-footer .ft-l:link,
body.v6-body footer.v6-footer .ft-l:visited {
  font-size: 15px !important;
  color: rgba(246,242,236,.6) !important;
  letter-spacing: .02em !important;
  cursor: pointer !important;
  transition: color .2s !important;
  text-decoration: none !important;
}
body.v6-body footer.v6-footer .ft-l:hover,
body.v6-body footer.v6-footer .ft-l:active,
body.v6-body footer.v6-footer .ft-l:focus {
  color: rgba(246,242,236,1) !important;
  text-decoration: none !important;
}
body.v6-body footer.v6-footer .ft-bottom {
  border-top: .5px solid rgba(246,242,236,.05) !important;
  padding-top: 1.5rem !important; margin-top: .5rem !important;
  display: flex !important; flex-direction: column !important; gap: .5rem !important;
}
body.v6-body footer.v6-footer .ft-copy { font-size: 11px !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: rgba(246,242,236,.95) !important; }
body.v6-body footer.v6-footer .ft-social { display: flex !important; gap: 1.25rem !important; }
body.v6-body footer.v6-footer .ft-soc,
body.v6-body footer.v6-footer .ft-soc:link,
body.v6-body footer.v6-footer .ft-soc:visited {
  font-size: 11px !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: rgba(176,152,120,.98) !important;
  cursor: pointer !important;
  transition: color .2s !important;
  text-decoration: none !important;
}
body.v6-body footer.v6-footer .ft-soc:hover,
body.v6-body footer.v6-footer .ft-soc:active,
body.v6-body footer.v6-footer .ft-soc:focus {
  color: rgba(246,242,236,1) !important;
  text-decoration: none !important;
}
@media(min-width:768px) {
  body.v6-body footer.v6-footer { padding: 5rem 3rem 3rem !important; }
  body.v6-body footer.v6-footer .ft-cols { display: grid !important; grid-template-columns: 1.8fr 1fr 1fr 1fr !important; gap: 3rem !important; }
  body.v6-body footer.v6-footer .ft-section { margin-bottom: 0 !important; }
  body.v6-body footer.v6-footer .ft-bottom { flex-direction: row !important; justify-content: space-between !important; align-items: center !important; }
}

/* ══════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════ */
.opening { padding: 7vw 1.5rem; }
.op-n { font-family: var(--serif); font-size: 12.5px; font-style: italic; color: var(--gold); letter-spacing: .1em; margin-bottom: 2rem; }
.op-t { font-family: var(--serif); font-size: clamp(33px, 6.5vw, 62px); font-weight: 200; line-height: 1.28; color: var(--ink); }
.op-t em { font-style: italic; color: var(--warm); }
.op-s { margin-top: 2rem; font-size: 14px; color: var(--warm); line-height: 1.9; max-width: 380px; letter-spacing: .03em; }
@media(min-width:768px) { .opening { padding: 7vw 3rem; } }

.coll-full { position: relative; overflow: hidden; cursor: pointer; }
.coll-full.tall { height: 92vw; max-height: 850px; }
@media(min-width:768px) { .coll-full.tall { height: 80vh; } }
.cf-img { position: absolute; inset: 0; background-size: cover; background-position: center top; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.coll-full:hover .cf-img { transform: scale(1.04); }
.cf-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,11,9,.75) 0%, transparent 55%); }
.cf-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.5rem; }
@media(min-width:768px) { .cf-text { padding: 3rem; } }
.cf-n { font-family: var(--serif); font-size: 11.5px; font-weight: 200; font-style: italic; color: #E2D1BA; letter-spacing: .12em; display: block; margin-bottom: .375rem; }
.cf-name { font-family: var(--serif); font-size: clamp(36px, 9.1vw, 78px); font-weight: 200; color: rgba(246,242,236,.88); line-height: 1; letter-spacing: -.005em; }
.cf-tag { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: #E2D1BA; display: block; margin-top: .5rem; }
.cf-btn { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.25rem; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,242,236,.5); transition: gap .3s, color .3s; text-decoration: none; }
.coll-full:hover .cf-btn { gap: .875rem; color: rgba(246,242,236,.8); }

.coll-two { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.coll-half { position: relative; overflow: hidden; cursor: pointer; height: 62vw; max-height: 520px; }
@media(min-width:768px) { .coll-half { height: 50vh; } }
.coll-half .cf-img { position: absolute; inset: 0; background-size: cover; background-position: center top; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.coll-half:hover .cf-img { transform: scale(1.04); }

.pause { padding: 9vw 1.5rem; display: flex; align-items: center; min-height: 45vw; }
@media(min-width:768px) { .pause { padding: 9vw 3rem; } }
.pa-rule { width: 24px; height: .5px; background: var(--gold); margin-bottom: 2rem; }
.pa-q { font-family: var(--eb); font-size: clamp(24px, 5.2vw, 41px); font-style: italic; color: var(--ink); line-height: 1.5; }
.pa-a { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 1.75rem; }

/* ── Quote Block ── */
.quote-block {
  padding: 8vw 1.5rem;
  background: var(--cream);
  display: flex;
  justify-content: flex-start;
}
@media(min-width:768px) {
  .quote-block {
    padding: 7vw 3rem;
  }
}
.qb-content {
  border-left: 1px solid var(--gold);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
  max-width: 900px;
}
@media(min-width:768px) {
  .qb-content {
    padding-left: 2.5rem;
    margin-left: 1rem;
  }
}
.qb-text {
  font-family: var(--serif);
  font-size: clamp(23px, 4.5vw, 36px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 1.75rem 0;
  font-weight: 300;
}
.qb-author {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  display: block;
  font-weight: 300;
}

.reco { background: var(--ink); padding: 7vw 1.5rem; }
@media(min-width:768px) { .reco { padding: 7vw 3rem; } }
.re-label { font-size: 14.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(176,152,120,.8); margin-bottom: 3.5rem; }
.re-row { display: flex; justify-content: space-between; align-items: baseline; padding: 1.5rem 0; border-bottom: .5px solid rgba(246,242,236,.1); }
.re-row:first-of-type { border-top: .5px solid rgba(246,242,236,.1); }
.re-y { font-family: var(--serif); font-size: 18px; font-weight: 200; font-style: italic; color: var(--gold); min-width: 50px; }
.re-nm { font-family: var(--serif); font-size: clamp(23px, 4.5vw, 33px); font-weight: 200; color: var(--cream); flex: 1; padding: 0 1.5rem; }
.re-d { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(176,152,120,.7); text-align: right; }

.services { padding: 9vw 1.5rem; }
@media(min-width:768px) { .services { padding: 9vw 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; } }
.sv-hd { margin-bottom: 3rem; text-align: center; }
.sv-hd .section-rule { margin: 0 auto 2rem; }
@media(min-width:768px) { .sv-hd { position: sticky; top: 80px; padding-right: 2.5rem; padding-left: 2.5rem; margin-bottom: 0; } }
.sv-hl { font-family: var(--serif); font-size: clamp(39px, 7.2vw, 70px); font-weight: 200; line-height: 1.1; margin-top: .75rem; }
.sv-hl em { font-style: italic; color: var(--warm); }
.sv-row { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-bottom: .5px solid rgba(12,11,9,.08); transition: opacity .2s; cursor: pointer; text-decoration: none; color: inherit; }
.sv-row:first-of-type { border-top: .5px solid rgba(12,11,9,.08); }
.sv-row:hover { opacity: .5; }
.sv-name { font-family: var(--serif); font-size: clamp(26px, 4.5vw, 36px); font-weight: 300; margin-bottom: 3px; }
.sv-sub { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--warm); opacity: .65; }
.sv-arr { font-size: 15.5px; color: rgba(12,11,9,.2); transition: transform .25s, color .2s; flex-shrink: 0; }
.sv-row:hover .sv-arr { transform: translateX(5px); color: rgba(12,11,9,.5); }

.dgrid-wrap { background: var(--sand); }
.dg-label { padding: 3rem 1.5rem 1.75rem; font-size: 14.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--warm); opacity: .7; text-align: center; }
@media(min-width:768px) { .dg-label { padding: 4rem 3rem 2rem; } }
.dgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dc { position: relative; overflow: hidden; cursor: pointer; height: 65vw; max-height: 460px; text-decoration: none; color: inherit; display: block; }
@media(min-width:768px) {
  .dgrid { grid-template-columns: repeat(4, 1fr); }
  .dc { height: 36vw; max-height: 460px; }
}
.dc img { transition: transform .65s cubic-bezier(.25,.46,.45,.94); }
.dc:hover img { transform: scale(1.04); }
.dc-inf { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; background: linear-gradient(to top, rgba(12,11,9,.62) 0%, transparent 100%); }
.dc-nm { font-family: var(--serif); font-size: 19.5px; font-weight: 200; color: rgba(246,242,236,.85); }
.dc-cl { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(176,152,120,.55); margin-top: 2px; }
.dg-more { display: flex; align-items: center; justify-content: center; gap: .625rem; padding: 2.25rem; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--warm); cursor: pointer; background: var(--cream); border-top: 2px solid var(--sand); transition: gap .3s; text-decoration: none; }
.dg-more:hover { gap: 1.1rem; }

.ig-sec { padding: 7vw 1.5rem; }
@media(min-width:768px) { .ig-sec { padding: 6vw 3rem; } }
.ig-hd { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.75rem; }
.ig-l { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--warm); opacity: .7; }
.ig-h { font-family: var(--serif); font-size: 16.5px; font-weight: 200; font-style: italic; color: var(--gold); cursor: pointer; text-decoration: none; }
.ig-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
@media(min-width:768px) {
  .ig-g { grid-template-columns: repeat(4, 1fr); }
}
.ic { overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.ic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.ic:hover img { transform: scale(1.06); }


/* ══════════════════════════════════════
   COLLECTION & MASONRY
   ══════════════════════════════════════ */
.sc-intro { padding: 4rem 1.5rem 2rem; }
@media(min-width:768px) { .sc-intro { padding: 5rem 3rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.sc-intro-title { font-family: var(--serif); font-size: clamp(46px, 7.8vw, 83px); font-weight: 200; line-height: 1.05; margin-bottom: 2rem; }
@media(min-width:768px) { .sc-intro-title { margin-bottom: 0; } }
.sc-intro-body { font-size: 15.5px; color: var(--warm); line-height: 1.95; letter-spacing: .03em; }
.sc-intro-body p { margin-bottom: 1.25rem; }
.sc-grid { padding: 0 1.5rem 5rem; }
@media(min-width:768px) { .sc-grid { padding: 0 3rem 6rem; } }
.sc-label { font-size: 14.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--warm); opacity: .7; padding: 2rem 0 1.75rem; }
.dress-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--dust); }
@media(min-width:768px) { .dress-masonry { grid-template-columns: repeat(3, 1fr); } }
.dm-cell { position: relative; overflow: hidden; cursor: pointer; background: var(--cream); text-decoration: none; color: inherit; display: block; width: 100%; aspect-ratio: 1 / 1; }
.dm-cell img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.dm-cell:hover img { transform: scale(1.04); }
.dm-inf { position: absolute; bottom: 0; left: 0; right: 0; padding: .875rem 1rem; background: linear-gradient(to top, rgba(12,11,9,.62) 0%, transparent 100%); }
.dm-n { font-family: var(--serif); font-size: 17.5px; font-weight: 200; color: rgba(246,242,236,.88); }
.dm-p { font-size: 11.5px; letter-spacing: .1em; color: rgba(176,152,120,.5); margin-top: 2px; }

/* ══════════════════════════════════════
   SINGLE DRESS DETAILED LAYOUT
   ══════════════════════════════════════ */
.dd-layout { padding: 120px 1.5rem 6rem; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; background: var(--cream); }
@media(min-width:1024px) { .dd-layout { padding: 140px 3rem 6rem; grid-template-columns: 1.3fr 1fr; gap: 5rem; } }
.dd-gallery { display: flex; flex-direction: column-reverse; gap: 1.5rem; position: relative; }
@media(min-width:1024px) { .dd-gallery { flex-direction: row; position: sticky; top: 100px; } }
.dd-thumbs { display: flex; flex-direction: row; gap: 1rem; width: 100%; overflow-x: auto; padding-bottom: 10px; }
@media(min-width:1024px) { .dd-thumbs { flex-direction: column; width: 80px; flex-shrink: 0; overflow-x: visible; padding-bottom: 0; } }
.dd-thumb { width: 60px; height: 90px; flex-shrink: 0; background-color: var(--sand); background-size: cover; background-position: center; cursor: pointer; opacity: 0.6; transition: opacity 0.3s, border 0.3s; border: 1px solid transparent; }
@media(min-width:1024px) { .dd-thumb { width: 100%; height: 120px; } }
.dd-thumb.active, .dd-thumb:hover { opacity: 1; border-color: var(--gold); }
.dd-main-img { flex: 1; aspect-ratio: 2/3; background-color: var(--sand); background-size: cover; background-position: center; min-height: 400px; }
@media(min-width:1024px) { .dd-main-img { min-height: 600px; } }

.dd-breadcrumbs { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.5rem; display: flex; gap: 8px; }
.dd-breadcrumbs a { opacity: 0.55; cursor: pointer; text-decoration: none; color: inherit; }
.dd-breadcrumbs span { opacity: 1; color: var(--ink); cursor: default; }
.dd-breadcrumbs a:hover { opacity: 1; color: var(--gold); }
.dd-title { font-family: var(--serif); font-size: clamp(41px, 6.5vw, 62px); font-weight: 200; line-height: 1.1; margin-bottom: 1rem; color: var(--ink); }
.dd-price { font-size: 16.5px; color: var(--ink); letter-spacing: .05em; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: .5px solid rgba(176,152,120,.2); }
.dd-desc { font-size: 15.5px; color: var(--ink); line-height: 1.9; opacity: .8; margin-bottom: 2.5rem; letter-spacing: .02em; }

.dd-sizing { margin-bottom: 2.5rem; }
.dd-size-header { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 11.5px; text-transform: uppercase; letter-spacing: .16em; color: var(--ink); }
.dd-size-guide { color: var(--gold); text-decoration: underline; cursor: pointer; }
.dd-size-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.dd-size-opt { border: .5px solid rgba(176,152,120,.3); padding: 12px 0; text-align: center; font-size: 13.5px; cursor: pointer; transition: all 0.2s; color: var(--ink); }
.dd-size-opt:hover { border-color: var(--gold); }
.dd-size-opt.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.dd-actions { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.dd-action-primary { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); padding: 16px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-align: center; width: 100%; font-family: var(--sans); }
.dd-action-primary:hover { background: var(--warm); border-color: var(--warm); }
.dd-action-secondary { background: var(--cream); color: var(--ink); border: .5px solid var(--gold); padding: 16px; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; text-align: center; width: 100%; font-family: var(--sans); }
.dd-action-secondary:hover { border-color: var(--ink); }

.dd-accordion { border-top: .5px solid rgba(176,152,120,.2); }
.dd-acc-item { border-bottom: .5px solid rgba(176,152,120,.2); }
.dd-acc-title { padding: 1.5rem 0; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.dd-acc-title::after { content: '+'; font-size: 18.5px; font-weight: 200; transition: transform 0.3s; }
.dd-acc-item.active .dd-acc-title::after { transform: rotate(45deg); }
.dd-acc-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; font-size: 15px; color: var(--ink); line-height: 1.8; opacity: .75; }
.dd-acc-item.active .dd-acc-content { max-height: 300px; padding-bottom: 1.5rem; }

.dd-story { padding: 5vw 1.5rem; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; max-width: 1400px; margin: 0 auto; border-top: .5px solid rgba(176,152,120,.1); background: var(--dust); }
@media(min-width:768px) { .dd-story { padding: 6vw 3rem; grid-template-columns: 1fr 1.2fr; gap: 5rem; } }
.dd-story-img { aspect-ratio: 3/4; background-color: var(--sand); background-size: cover; background-position: center; }
.dd-story-eyebrow { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.dd-story-title { font-family: var(--serif); font-size: clamp(39px, 5.2vw, 57px); font-weight: 200; line-height: 1.1; margin-bottom: 1.5rem; color: var(--ink); }
.dd-story-title em { font-style: italic; color: var(--warm); }
.dd-story-text { font-size: 15.5px; color: var(--ink); line-height: 1.9; opacity: .8; margin-bottom: 1.5rem; }

.dd-hl { padding: 6vw 1.5rem; background: var(--cream); }
@media(min-width:768px) { .dd-hl { padding: 6vw 3rem; } }
.dd-hl-header { text-align: center; margin-bottom: 4rem; }
.dd-hl-title { font-family: var(--serif); font-size: clamp(36px, 5.2vw, 49px); font-weight: 200; margin-bottom: 1rem; color: var(--ink); }
.dd-hl-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
@media(min-width:768px) { .dd-hl-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.dd-hl-card { background: var(--cream); padding: 3rem 2.5rem; text-align: center; border: .5px solid rgba(176,152,120,.15); transition: transform 0.3s; }
.dd-hl-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.dd-hl-icon { font-family: var(--serif); font-size: 36px; color: var(--gold); font-style: italic; font-weight: 200; margin-bottom: 1.5rem; line-height: 1; }
.dd-hl-name { font-size: 12.5px; font-weight: 400; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 1rem; color: var(--ink); }
.dd-hl-desc { font-size: 14.5px; color: var(--ink); line-height: 1.8; opacity: .75; }

/* ══════════════════════════════════════
   RENTAL & ALTERATIONS
   ══════════════════════════════════════ */
.rental-split, .alt-split { padding-top: 56px; min-height: 100svh; display: flex; flex-direction: column; }
@media(min-width:768px) { .rental-split, .alt-split { flex-direction: row; } }
.rs-img, .as-img { flex: 1; min-height: 55svh; position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }
.rs-img::after, .as-img::after { content: ''; position: absolute; inset: 0; background: rgba(12,11,9,.25); }
.rs-body, .as-body { flex: 1; background: var(--cream); padding: 3rem 1.5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:768px) { .rs-body, .as-body { padding: 5rem 4rem; } }
.rs-title, .as-title { font-family: var(--serif); font-size: clamp(49px, 9.1vw, 88px); font-weight: 200; line-height: .98; margin-bottom: 1.5rem; }
.rs-title em, .as-title em { font-style: italic; color: var(--warm); }
.rs-price { display: inline-flex; align-items: baseline; gap: .5rem; margin-bottom: 1.75rem; }
.rsp-from { font-size: 14.5px; color: var(--warm); }
.rsp-val { font-family: var(--serif); font-size: 46px; font-weight: 200; color: var(--ink); line-height: 1; }
.rsp-unit { font-size: 12.5px; letter-spacing: .08em; color: var(--warm); }
.rs-points { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2.5rem; }
.rsp-item { display: flex; gap: 10px; align-items: flex-start; }
.rsp-line { width: 14px; height: .5px; background: var(--gold); margin-top: 9px; flex-shrink: 0; }
.rsp-text { font-size: 15px; color: var(--warm); line-height: 1.6; letter-spacing: .02em; }

.how-works { padding: 6vw 1.5rem; }
@media(min-width:768px) { .how-works { padding: 6vw 3rem; } }
.hw-title { font-family: var(--serif); font-size: clamp(36px, 6.5vw, 59px); font-weight: 200; text-align: center; margin-bottom: 3.5rem; }
.hw-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--dust); }
@media(min-width:768px) { .hw-steps { grid-template-columns: repeat(4, 1fr); } }
.hw-step { background: var(--cream); padding: 1.75rem 1.5rem; }
.hw-n { font-family: var(--serif); font-size: 40px; font-weight: 200; font-style: italic; color: var(--dust); line-height: 1; margin-bottom: .625rem; }
.hw-name { font-size: 13.5px; font-weight: 400; letter-spacing: .04em; margin-bottom: .375rem; }
.hw-d { font-size: 13.5px; color: var(--warm); line-height: 1.65; opacity: .8; }

.rental-cta { background: var(--ink); padding: 5vw 1.5rem; text-align: center; }
@media(min-width:768px) { .rental-cta { padding: 5vw 3rem; } }
.rc-title { font-family: var(--serif); font-size: clamp(36px, 6.5vw, 59px); font-weight: 200; color: var(--cream); margin-bottom: .625rem; }
.rc-sub { font-size: 14px; color: rgba(246,242,236,.4); margin-bottom: 2.25rem; letter-spacing: .03em; }

.rental-gal { padding: 4vw 1.5rem 5rem; }
@media(min-width:768px) { .rental-gal { padding: 4vw 3rem 6rem; } }
.rg-title { font-family: var(--serif); font-size: clamp(31px, 5.2vw, 49px); font-weight: 200; margin-bottom: 2rem; }
.rg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--dust); }
@media(min-width:768px) { .rg-grid { grid-template-columns: repeat(4, 1fr); } }
.rg-card { background: var(--cream); overflow: hidden; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.rg-img { height: 60vw; max-height: 460px; overflow: hidden; position: relative; }
@media(min-width:768px) { .rg-img { height: 36vw; max-height: 440px; } }
.rg-img img { transition: transform .65s cubic-bezier(.25,.46,.45,.94); }
.rg-card:hover .rg-img img { transform: scale(1.04); }
.rg-info { padding: .875rem 1rem 1.25rem; }
.rg-n { font-family: var(--serif); font-size: 18.5px; font-weight: 300; color: var(--ink); margin-bottom: 2px; }
.rg-p { font-size: 12px; color: var(--warm); letter-spacing: .06em; }
.rg-cta { display: block; text-align: left; margin-top: .5rem; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); transition: opacity .2s; }
.rg-card:hover .rg-cta { opacity: 0.7; }

/* See More button / Pagination */
.rg-card.v6-grid-hidden {
  display: none !important;
}
.rg-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
  width: 100%;
}
.rg-more-btn {
  background: transparent;
  border: .5px solid var(--ink);
  color: var(--ink);
  padding: .875rem 3.5rem;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}
.rg-more-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Alterations Page Items */
.as-desc { font-size: 15.5px; color: var(--warm); line-height: 1.85; max-width: 100%; margin-bottom: 2rem; letter-spacing: .02em; }
.as-note { border-left: .5px solid var(--gold); padding: .75rem 1.25rem; margin-bottom: 2.25rem; }
.as-note-t { font-size: 14px; color: var(--warm); line-height: 1.6; }

.alt-pkgs { padding: 5vw 1.5rem; }
@media(min-width:768px) { .alt-pkgs { padding: 5vw 3rem; } }
.ap-hd { text-align: center; margin-bottom: 2.5rem; }
.ap-title { font-family: var(--serif); font-size: clamp(36px, 6.5vw, 57px); font-weight: 200; margin-bottom: .5rem; }
.ap-sub { font-size: 14px; color: var(--warm); opacity: .75; }
.pkg-row { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--dust); }
@media(min-width:768px) { .pkg-row { grid-template-columns: 1fr 1fr; } }
.pkg { background: var(--cream); padding: 2rem 1.5rem; }
.pkg.dk { background: var(--ink); }
.pkg-badge { display: inline-block; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 1rem; }
.pkg-badge.lt { background: var(--sand); color: var(--warm); }
.pkg-badge.dk { background: rgba(176,152,120,.12); color: var(--gold); }
.pkg-name { font-family: var(--serif); font-size: 26px; font-weight: 300; margin-bottom: .25rem; }
.pkg-name.lt { color: var(--ink); }
.pkg-name.dk { color: var(--cream); }
.pkg-price { font-family: var(--serif); font-size: 42px; font-weight: 200; line-height: 1; margin-bottom: .375rem; }
.pkg-price.lt { color: var(--ink); }
.pkg-price.dk { color: var(--gold); }
.pkg-tagline { font-size: 13.5px; margin-bottom: 1.5rem; }
.pkg-tagline.lt { color: var(--warm); }
.pkg-tagline.dk { color: rgba(176,152,120,.6); }
.pkg-div { height: .5px; margin-bottom: 1.5rem; }
.pkg-div.lt { background: var(--sand); }
.pkg-div.dk { background: rgba(176,152,120,.12); }
.pkg-feats { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.pkg-feat { display: flex; gap: .75rem; font-size: 14px; line-height: 1.5; }
.pkg-feat.lt { color: var(--warm); }
.pkg-feat.dk { color: rgba(246,242,236,.55); }
.pkg-tick { color: var(--gold); flex-shrink: 0; font-size: 12.5px; }

.alt-indiv { padding: 4vw 1.5rem 5rem; }
@media(min-width:768px) { .alt-indiv { padding: 4vw 3rem 6rem; } }
.ai-title { font-family: var(--serif); font-size: clamp(31px, 5.2vw, 46px); font-weight: 200; margin-bottom: 2rem; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--dust); }
@media(min-width:768px) { .ai-grid { grid-template-columns: 1fr 1fr 1fr; } }
.ai-item { background: var(--cream); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.ai-n { font-size: 15px; color: var(--ink); }
.ai-p { font-size: 13.5px; color: var(--warm); letter-spacing: .04em; text-align: right; flex-shrink: 0; margin-left: .5rem; }
.ai-note { font-size: 13px; color: var(--warm); opacity: .55; font-style: italic; margin-top: 1.5rem; line-height: 1.6; }

/* ══════════════════════════════════════
   JOURNAL & BLOG STYLING
   ══════════════════════════════════════ */
.journal-hero {
  height: 50svh;
  min-height: 340px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 3rem;
  padding-top: 56px;
}
@media(min-width:768px) { .journal-hero { padding: 0 3rem 4rem; height: 46svh; } }
.jh-bg { position: absolute; inset: 0; background: url('https://www.embridalboutique.com.au/wp-content/uploads/2026/01/Evoto-0005.jpg') center top/cover; opacity: .2; }
.jh-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,11,9,.98) 0%, rgba(12,11,9,.3) 100%); }
.jh-body { position: relative; z-index: 2; }
.jh-ey {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(246, 242, 236, 0.12);
  margin-bottom: 1.5rem;
}
.jh-title { font-family: var(--serif); font-size: clamp(54px, 11.7vw, 104px); font-weight: 200; font-style: italic; color: var(--cream); line-height: .95; }

.journal-feed { padding: 3rem 1.5rem 5rem; }
@media(min-width:768px) { .journal-feed { padding: 4rem 3rem 6rem; } }
.jf-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2.5rem; }
.jf-label { font-size: 14.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--warm); opacity: .7; }
.jf-filter { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); cursor: pointer; border-bottom: .5px solid var(--gold); padding-bottom: 1px; }

.jf-feature { cursor: pointer; margin-bottom: 2px; text-decoration: none; color: inherit; display: block; }
.jff-img { height: 60vw; max-height: 500px; overflow: hidden; position: relative; background: var(--sand); }
@media(min-width:768px) { .jff-img { height: 42vw; max-height: 580px; } }
.jff-img img { transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
.jf-feature:hover .jff-img img { transform: scale(1.04); }
.jff-info { padding: 1.5rem 0 2.5rem; }
.jff-cat { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.jff-title { font-family: var(--serif); font-size: clamp(31px, 5.9vw, 52px); font-weight: 300; line-height: 1.2; margin-bottom: .875rem; color: var(--ink); }
.jff-excerpt { font-size: 15px; color: var(--warm); line-height: 1.8; max-width: 560px; letter-spacing: .02em; }
.jff-meta { margin-top: 1.25rem; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(12,11,9,.3); }

.jp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--dust); }
@media(min-width:768px) { .jp-grid { grid-template-columns: repeat(3, 1fr); } }
.jp-card { background: var(--cream); cursor: pointer; overflow: hidden; text-decoration: none; color: inherit; display: block; }
.jp-img { height: 50vw; max-height: 380px; overflow: hidden; background: var(--sand); }
@media(min-width:768px) { .jp-img { height: 26vw; max-height: 320px; } }
.jp-img img { transition: transform .65s; }
.jp-card:hover .jp-img img { transform: scale(1.04); }
.jp-info { padding: 1rem 1.25rem 1.5rem; }
.jp-cat { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.jp-t { font-family: var(--serif); font-size: clamp(20px, 3.2vw, 26px); font-weight: 300; line-height: 1.3; margin-bottom: .5rem; color: var(--ink); }
.jp-dt { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(12,11,9,.3); }

.jp-more { display: flex; align-items: center; justify-content: center; gap: .625rem; padding: 2.25rem; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--warm); cursor: pointer; border-top: 2px solid var(--dust); transition: gap .3s; text-decoration: none; }
.jp-more:hover { gap: 1.1rem; }

/* Single blog post */
.post-header { padding: 120px 1.5rem 3rem; text-align: center; max-width: 800px; margin: 0 auto; }
@media(min-width:768px) { .post-header { padding: 140px 3rem 4rem; } }
.post-title { font-family: var(--serif); font-size: clamp(44px, 6.5vw, 72px); font-weight: 200; line-height: 1.1; margin: 1.5rem 0; color: var(--ink); }
.post-meta { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--warm); opacity: .8; }
.post-hero-img { height: 60svh; min-height: 400px; background-size: cover; background-position: center 30%; background-color: var(--sand); }
.post-content { max-width: 720px; margin: 0 auto; padding: 4rem 1.5rem 5rem; font-size: 16.5px; color: var(--ink); line-height: 1.9; font-weight: 300; opacity: .9; }
@media(min-width:768px) { .post-content { padding: 5rem 3rem 6rem; font-size: 17.5px; line-height: 2; } }
.post-content p { margin-bottom: 2rem; }
.post-content h3 { font-family: var(--serif); font-size: 30px; font-weight: 200; margin: 3.5rem 0 1.5rem; color: var(--ink); line-height: 1.2; }
.post-quote { border-left: .5px solid var(--gold); padding: 1.5rem 2rem; margin: 3rem 0; font-family: var(--serif); font-size: 24px; font-weight: 200; font-style: italic; color: var(--ink); line-height: 1.6; background: rgba(176,152,120,.04); }
.post-inline-img { width: 100vw; max-width: 1000px; margin: 3rem auto; position: relative; left: 50%; transform: translateX(-50%); aspect-ratio: 16/9; background-size: cover; background-position: center; background-color: var(--sand); }
@media(max-width:768px) { .post-inline-img { width: 100%; transform: none; left: 0; aspect-ratio: 4/3; } }
.post-footer-nav { border-top: .5px solid rgba(176,152,120,.15); display: flex; text-align: center; flex-direction: column; background: var(--dust); gap: 1px; }
@media(min-width:768px) { .post-footer-nav { flex-direction: row; } }
.pfn-link { flex: 1; padding: 3rem 2rem; text-decoration: none; color: var(--ink); transition: background 0.3s; cursor: pointer; background: var(--cream); }
.pfn-link:hover { background: var(--sand); }
.pfn-label { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--warm); margin-bottom: 1rem; display: block; }
.pfn-title { font-family: var(--serif); font-size: 22px; font-weight: 200; }

/* ══════════════════════════════════════
   BESPOKE & CALENDLY / CONTACT FORM 7 STYLE OVERRIDES
   ══════════════════════════════════════ */
.bsp-hero { padding-top: 56px; min-height: 100svh; display: flex; flex-direction: column; }
@media(min-width:768px) { .bsp-hero { flex-direction: row; } }
.bsp-img { background: url('https://www.embridalboutique.com.au/wp-content/uploads/2026/01/Evoto-0253.jpg') center top/cover no-repeat; min-height: 52svh; position: relative; flex: 1; }
.bsp-img::after { content: ''; position: absolute; inset: 0; background: rgba(12,11,9,.28); }
.bsp-body { flex: 1; background: var(--cream); padding: 3rem 1.5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
@media(min-width:768px) { .bsp-body { padding: 5rem 4rem; } }
.bsp-title { font-family: var(--serif); font-size: clamp(49px, 9.1vw, 88px); font-weight: 200; line-height: .98; margin-bottom: 2rem; }
.bsp-title em { font-style: italic; color: var(--warm); }
.bsp-note { padding: .75rem 0; margin-bottom: 2.25rem; font-size: 14px; color: var(--warm); line-height: 1.6; letter-spacing: .02em; }
.bsp-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; padding-top: 2rem; border-top: .5px solid rgba(12,11,9,.08); margin-top: .5rem; }
.bss-n { font-family: var(--serif); font-size: 24px; font-weight: 200; font-style: italic; color: var(--dust); line-height: 1; margin-bottom: .25rem; }
.bss-name { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: .25rem; }
.bss-d { font-size: 13px; color: var(--warm); opacity: .7; line-height: 1.5; }

.bsp-book, .alt-book { padding: 6vw 1.5rem 6rem; max-width: 700px; margin: 0 auto; }
@media(min-width:768px) { .bsp-book, .alt-book { padding: 6vw 3rem 6rem; } }
.bk-ey { font-size: 14.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.bk-title { font-family: var(--serif); font-size: clamp(36px, 6.5vw, 57px); font-weight: 200; line-height: 1.1; margin-bottom: .625rem; }
.bk-sub { font-size: 14px; color: var(--warm); line-height: 1.75; margin-bottom: 3rem; letter-spacing: .02em; max-width: 400px; }
.tab-row { display: flex; gap: 2.5rem; border-bottom: .5px solid rgba(12,11,9,.1); margin-bottom: 3rem; }
.tab { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(12,11,9,.3); padding-bottom: .875rem; border-bottom: .5px solid transparent; margin-bottom: -.5px; transition: all .25s; cursor: pointer; }
.tab.on { color: var(--ink); border-bottom-color: var(--ink); }
.tab-pane { display: none; }
.tab-pane.on { display: block; }

/* Contact Form 7 integration overrides */
.wpcf7-form {
  margin: 0 auto;
}
.wpcf7-form .eq-i, .wpcf7-form .eq-s, .wpcf7-form .eq-t {
  width: 100%;
}
/* Style validation messages nicely */
.wpcf7-not-valid-tip {
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--warm);
  margin-top: 5px;
}
.wpcf7-response-output {
  margin: 2rem 0 0 !important;
  padding: 1.25rem !important;
  border: 1px solid var(--gold) !important;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.6;
  background: var(--cream);
  text-align: center;
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */
.ab-hero {
  min-height: 88svh;
  background: var(--ink);
  padding-top: 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px 1.5rem 3.5rem;
}
@media(min-width:768px) { .ab-hero { padding: 56px 3rem 5rem; } }
.ab-img { position: absolute; inset: 0; background-size: cover; background-position: center top; opacity: .85; }
.ab-hero .row-bg { opacity: .85 !important; }
.ab-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,11,9,0.5) 0%, rgba(12,11,9,0) 80%); }
.ab-bg { position: absolute; bottom: -2rem; right: -1rem; font-family: var(--serif); font-size: clamp(156px, 36.4vw, 364px); font-weight: 200; font-style: italic; color: rgba(246,242,236,.02); line-height: 1; pointer-events: none; }
.ab-bd { position: relative; z-index: 2; }
.ab-ey {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(246, 242, 236, 0.12);
  margin-bottom: 1.5rem;
}
.ab-title { font-family: var(--serif); font-size: clamp(49px, 11.7vw, 98px); font-weight: 200; color: var(--cream); line-height: 1.0; margin-bottom: 2.5rem; }
.ab-title em { font-style: italic; color: rgba(176,152,120,.7); }
.ab-marks { display: flex; flex-direction: column; gap: .5rem; }
.ab-mk { display: inline-flex !important; align-items: center !important; gap: .625rem !important; font-size: 11.5px !important; letter-spacing: .12em !important; text-transform: uppercase !important; color: var(--cream) !important; opacity: 0.85 !important; }
.ab-mk::before {
  content: "" !important;
  display: inline-block !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: var(--gold) !important;
}
.ab-dot { width: 4px !important; height: 4px !important; border-radius: 50% !important; background: var(--gold) !important; display: inline-block !important; }

.vogue-blk { background: var(--ink); padding: 5vw 1.5rem; border-top: .5px solid rgba(176,152,120,.1); }
@media(min-width:768px) {
  .vogue-blk > .row_col_wrap,
  .vogue-blk > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}
.vogue-blk > .row_col_wrap > .wpb_column,
.vogue-blk > .row_col_wrap_12 > .wpb_column {
  width: 100% !important;
  max-width: 100% !important;
}
.vb-pre { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(176,152,120,.35); margin-bottom: 1rem; }
.vb-pub { font-family: var(--serif); font-size: clamp(36px, 7.8vw, 67px); font-weight: 200; font-style: italic; color: rgba(246,242,236,.58); letter-spacing: .04em; line-height: 1; margin-bottom: .5rem; }
.vb-yr { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; }
.vb-body { font-size: 15.5px; color: rgba(246,242,236,.38); line-height: 1.9; max-width: 440px; letter-spacing: .03em; }
@media(min-width:768px) { .vb-left { border-right: .5px solid rgba(176,152,120,.1); padding-right: 5rem; } .vb-yr { margin-bottom: 0; } }

.ab-story { padding: 7vw 1.5rem; }
@media(min-width:768px) {
  .ab-story > .row_col_wrap,
  .ab-story > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
  }
}
.ab-story > .row_col_wrap > .wpb_column,
.ab-story > .row_col_wrap_12 > .wpb_column {
  width: 100% !important;
  max-width: 100% !important;
}
.abs-ey { font-size: 14.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.abs-title { font-family: var(--serif); font-size: clamp(39px, 7.2vw, 65px); font-weight: 200; line-height: 1.1; margin-bottom: 2rem; }
.abs-title em { font-style: italic; color: var(--warm); }
.abs-q { border-left: .5px solid var(--gold); padding: 1rem 1.5rem; margin: 2.5rem 0; }
.absq-t { font-family: var(--eb); font-size: 17.5px; font-style: italic; color: var(--ink); line-height: 1.7; }
.absq-a { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: .875rem; }
.abs-body { font-size: 15px; color: var(--warm); line-height: 1.95; letter-spacing: .03em; }
.abs-body p { margin-bottom: 1.25rem; }
.tl { margin-top: 2rem; }
.tl-item { display: grid; grid-template-columns: 48px 1fr; gap: 1.5rem; padding: 1.25rem 0; border-bottom: .5px solid rgba(12,11,9,.08); }
.tl-item:first-child { border-top: .5px solid rgba(12,11,9,.08); }
.tl-item.vog { background: rgba(176,152,120,.04); padding-left: .5rem; padding-right: .5rem; }
.tl-y { font-family: var(--serif); font-size: 18px; font-weight: 200; font-style: italic; color: var(--gold); line-height: 1.4; }
.tl-t { font-size: 14.5px; color: var(--warm); line-height: 1.65; }
.tl-t strong { color: var(--ink); font-weight: 400; }

.designer { background: var(--ink); padding: 7vw 1.5rem; }
@media(min-width:768px) {
  .designer > .row_col_wrap,
  .designer > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 300px 1fr;
    gap: 6rem;
    align-items: center;
  }
}
.designer > .row_col_wrap > .wpb_column,
.designer > .row_col_wrap_12 > .wpb_column {
  width: 100% !important;
  max-width: 100% !important;
}
.de-img { width: 100%; max-width: 320px; aspect-ratio: .8; margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; }
@media(min-width:768px) { .de-img { margin-bottom: 0; max-width: unset; } }
.de-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.de-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 60px; font-weight: 200; font-style: italic; color: rgba(176,152,120,.1); }
.de-ey {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(246, 242, 236, 0.12);
  margin-bottom: 1.5rem;
}
.de-n { font-family: var(--serif); font-size: 36px; font-weight: 200; color: var(--cream); margin-bottom: .25rem; }
.de-tt { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold) !important; margin-bottom: 1.75rem; }
.de-b { font-size: 15px; color: rgba(246,242,236,.85) !important; line-height: 1.9; letter-spacing: .03em; margin-bottom: 1.25rem; }

/* Ensure all WPBakery text elements, paragraphs, subheads, and lists inside .designer are visible against dark background */
.designer,
.designer .wpb_text_column,
.designer .wpb_wrapper {
  color: rgba(246, 242, 236, 0.85);
}

.designer p,
.designer .wpb_text_column p,
.designer .wpb_wrapper p,
body.v6-body .designer p,
body.v6-body .designer .wpb_text_column p,
body.v6-body .designer .wpb_wrapper p {
  color: rgba(246, 242, 236, 0.85) !important;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .03em;
  margin-bottom: 1.25rem;
}

.designer h1,
.designer h2,
.designer h3,
.designer h4,
.designer .wpb_text_column h1,
.designer .wpb_text_column h2,
.designer .wpb_text_column h3,
.designer .wpb_text_column h4 {
  color: var(--cream) !important;
  font-family: var(--serif);
  font-weight: 200;
  margin-bottom: 0.5rem;
}

.designer a:not(.btn-lt):not(.btn-dk),
.designer .wpb_text_column a:not(.btn-lt):not(.btn-dk) {
  color: var(--gold) !important;
}

.de-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1.75rem; }
.de-tag { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border: .5px solid rgba(176,152,120,.45) !important; color: rgba(246,242,236,.8) !important; }
body.v6-body .designer .btn-lt {
  color: var(--cream) !important;
  border-color: var(--gold) !important;
  background: transparent !important;
}
body.v6-body .designer .btn-lt:hover {
  color: var(--ink) !important;
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* Custom popup alert modal style */
.custom-modal {
  position: fixed;
  inset: 0;
  background: rgba(12,11,9,.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  overflow-y: auto;
  padding: 1.5rem;
}
.custom-modal.active { display: block; }
.cm-box {
  background: var(--cream);
  border: .5px solid rgba(176,152,120,.35);
  max-width: 460px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(12,11,9,.25);
  margin: 2rem auto;
  position: relative;
  animation: cmIn .35s cubic-bezier(.25,1,.5,1);
}
.cm-close-icon {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 200;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.cm-close-icon:hover {
  opacity: 1;
}
@keyframes cmIn { from {opacity:0;transform:scale(.94) translateY(8px);} to {opacity:1;transform:none;} }
.cm-title { font-family: var(--serif); font-size: 26px; font-weight: 200; color: var(--ink); margin-bottom: 1rem; }
.cm-text { font-size: 14.5px; color: var(--warm); line-height: 1.65; margin-bottom: 2rem; }
.cm-btn {
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  padding: 12px 32px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  transition: all .2s;
}
.cm-btn:hover { background: var(--warm); border-color: var(--warm); }

/* ══════════════════════════════════════
   VISUAL ALIGNMENT BRIDGE FOR SALIENT DEFAULT PAGES
   ══════════════════════════════════════ */
/* Make Salient default headers match V6 editorial color tokens seamlessly */
#header-outer[data-color-scheme="light"], #header-outer {
  background-color: var(--cream) !important;
  border-bottom: .5px solid rgba(176,152,120,.12) !important;
  box-shadow: none !important;
}
#header-outer #logo, #header-outer #logo a {
  font-family: var(--serif) !important;
  font-weight: 200 !important;
  letter-spacing: .36em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}
#header-outer nav > ul > li > a {
  font-family: var(--sans) !important;
  font-size: 10.5px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  opacity: .55 !important;
}
#header-outer nav > ul > li > a:hover {
  opacity: 1 !important;
  color: var(--gold) !important;
}
body:not(.v6-body) {
  background-color: var(--cream);
}

/* ══════════════════════════════════════
   COLLECTIONS LANDING PAGE (V6 EDITORIAL)
   ══════════════════════════════════════ */
.collections-hero {
  position: relative;
  height: 55svh;
  min-height: 420px;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 3.5rem;
  overflow: hidden;
}
@media(min-width:768px) {
  .collections-hero {
    height: 60svh;
    padding: 0 4rem 5rem;
  }
}
.ch-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.embridalboutique.com.au/wp-content/uploads/2026/01/Evoto-0005.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.02);
}
.ch-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,9,0.3) 0%, rgba(12,11,9,0.55) 60%, var(--ink) 100%);
}
.ch-body {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.ch-ey {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(12, 11, 9, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 100px;
  border: 0.5px solid rgba(246, 242, 236, 0.12);
  margin-bottom: 1.5rem;
}
.ch-title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 75px);
  font-weight: 200;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.ch-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(246, 242, 236, 0.7);
  line-height: 1.7;
  letter-spacing: .02em;
}

.collections-grid-container {
  background: var(--cream);
  padding: 6rem 1.5rem 8rem;
}
@media(min-width:768px) {
  .collections-grid-container {
    padding: 8rem 4rem 12rem;
  }
}
.collections-editorial-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 5rem;
}
@media(min-width:768px) {
  .collections-editorial-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
    row-gap: 9rem;
  }
}
.col-card {
  position: relative;
  aspect-ratio: 0.78;
  display: flex;
  flex-direction: column;
}
@media(min-width:768px) {
  .col-card.col-right {
    transform: translateY(6rem);
  }
}
.col-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.col-card-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0.5px solid rgba(176,152,120,.2);
}
.col-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.25, 1, .3, 1);
}
.col-card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,9,0) 40%, rgba(12,11,9,0.3) 65%, rgba(12,11,9,0.85) 100%);
  transition: opacity 0.4s ease;
}
.col-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem;
  z-index: 2;
}
.col-card-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 200;
  color: var(--cream);
  margin-bottom: 0.875rem;
  letter-spacing: .06em;
}
.col-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s ease;
}
.col-card-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.25, 1, .3, 1);
}

/* Hover States */
.col-card:hover .col-card-img {
  transform: scale(1.04);
}
.col-card:hover .col-card-veil {
  opacity: 0.95;
}
.col-card:hover .col-card-btn {
  color: var(--cream);
}
.col-card:hover .col-card-arrow {
  transform: translateX(6px);
}

/* ══════════════════════════════════════
   WPBAKERY / SALIENT GRID & BACKGROUND BRIDGE FOR V6 ISOLATED PAGES
   ══════════════════════════════════════ */
@media (min-width: 768px) {
  /* Row wrappers should be flex containers */
  .wpb_row > .row_col_wrap,
  .wpb_row > .row_col_wrap_12 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Reset floated columns inside the flex container */
  .wpb_row > .row_col_wrap > .wpb_column,
  .wpb_row > .row_col_wrap_12 > .wpb_column {
    float: none !important;
    box-sizing: border-box !important;
  }

  /* Define standard column widths */
  .wpb_row > .row_col_wrap > .vc_col-sm-12,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-12 {
    width: 100% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-11,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-11 {
    width: 91.6667% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-10,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-10 {
    width: 83.3333% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-9,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-9 {
    width: 75% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-8,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-8 {
    width: 66.6667% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-7,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-7 {
    width: 58.3333% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-6,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-6 {
    width: 50% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-5,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-5 {
    width: 41.6667% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-4,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-4 {
    width: 33.3333% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-3,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-3 {
    width: 25% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-2,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-2 {
    width: 16.6667% !important;
  }
  .wpb_row > .row_col_wrap > .vc_col-sm-1,
  .wpb_row > .row_col_wrap_12 > .vc_col-sm-1 {
    width: 8.3333% !important;
  }
}

@media (max-width: 767px) {
  .wpb_row > .row_col_wrap > .wpb_column,
  .wpb_row > .row_col_wrap_12 > .wpb_column {
    width: 100% !important;
    float: none !important;
    display: block !important;
    margin-bottom: 2rem;
  }
  .wpb_row > .row_col_wrap > .wpb_column:last-child,
  .wpb_row > .row_col_wrap_12 > .wpb_column:last-child {
    margin-bottom: 0;
  }
}

/* WPBakery Row Background Bridge */
.wpb_row .row-bg-wrap,
.wpb_row .row-bg-wrap .inner-wrap,
.wpb_row .row-bg-wrap .row-bg {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  z-index: 1 !important;
}
.wpb_row .row-bg-wrap {
  z-index: 0 !important;
  pointer-events: none !important;
}

/* ── Specific grid overrides for custom About page sections ── */
@media (min-width: 768px) {
  .vogue-blk > .row_col_wrap,
  .vogue-blk > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 5rem !important;
    align-items: center !important;
  }
  .ab-story > .row_col_wrap,
  .ab-story > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 7rem !important;
  }
  .designer > .row_col_wrap,
  .designer > .row_col_wrap_12 {
    display: grid !important;
    grid-template-columns: 300px 1fr !important;
    gap: 6rem !important;
    align-items: center !important;
  }
  .vogue-blk > .row_col_wrap > .wpb_column,
  .vogue-blk > .row_col_wrap_12 > .wpb_column,
  .ab-story > .row_col_wrap > .wpb_column,
  .ab-story > .row_col_wrap_12 > .wpb_column,
  .designer > .row_col_wrap > .wpb_column,
  .designer > .row_col_wrap_12 > .wpb_column {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Force full-width display on all V6 template sections to bypass parent theme restrictions */
.rental-split, .alt-split, .bsp-hero, .how-works, .rental-gal, .rental-cta, .v6-content-area, body.v6-body footer.v6-footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ══════════════════════════════════════
   SINGLE PRODUCT WOOCOMMERCE STYLING
   ══════════════════════════════════════ */
.dd-layout form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-top: 2rem !important;
}
.dd-layout form.cart .quantity {
  display: inline-flex !important;
  align-items: center !important;
  border: .5px solid rgba(176,152,120,.3) !important;
  background: var(--cream) !important;
  height: 48px !important;
}
.dd-layout form.cart .quantity input[type="button"] {
  background: none !important;
  border: none !important;
  color: var(--ink) !important;
  width: 36px !important;
  height: 100% !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
}
.dd-layout form.cart .quantity input[type="button"]:hover {
  opacity: 0.6 !important;
}
.dd-layout form.cart .quantity input.qty {
  width: 40px !important;
  height: 100% !important;
  border: none !important;
  background: none !important;
  text-align: center !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  -moz-appearance: textfield !important;
  padding: 0 !important;
}
.dd-layout form.cart .quantity input.qty::-webkit-outer-spin-button,
.dd-layout form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
.dd-layout form.cart button.single_add_to_cart_button {
  flex: 1 !important;
  background: var(--ink) !important;
  color: var(--cream) !important;
  border: 1px solid var(--ink) !important;
  height: 48px !important;
  padding: 0 24px !important;
  font-size: 12px !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  font-family: var(--sans) !important;
  font-weight: 400 !important;
}
.dd-layout form.cart button.single_add_to_cart_button:hover {
  background: var(--warm) !important;
  border-color: var(--warm) !important;
  color: var(--cream) !important;
}

/* WooCommerce Notices Styling */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: var(--cream) !important;
  border: .5px solid var(--gold) !important;
  color: var(--ink) !important;
  padding: 1.25rem 2rem !important;
  margin: 120px auto 2rem !important; /* Push down to clear fixed header */
  max-width: 1400px !important;
  width: calc(100% - 6rem) !important;
  font-family: var(--sans) !important;
  font-size: 13.5px !important;
  letter-spacing: .02em !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  box-sizing: border-box !important;
}
@media(max-width:767px) {
  .woocommerce-message, .woocommerce-error, .woocommerce-info {
    margin: 100px auto 2rem !important;
    width: calc(100% - 3rem) !important;
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}
.woocommerce-message a.button, .woocommerce-error a.button, .woocommerce-info a.button {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 10px 20px !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: .1em !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
  font-family: var(--sans) !important;
  border: none !important;
  border-radius: 0 !important;
}
.woocommerce-message a.button:hover, .woocommerce-error a.button:hover, .woocommerce-info a.button:hover {
  background: var(--warm) !important;
  color: var(--cream) !important;
}

/* Support for unordered and ordered lists in dress/product descriptions */
.dd-desc ul {
  list-style-type: disc !important;
  padding-left: 20px !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}
.dd-desc ol {
  list-style-type: decimal !important;
  padding-left: 20px !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}
.dd-desc li {
  display: list-item !important;
  margin-bottom: 5px !important;
}
