/*
Theme Name: Radiance Decors v5
Author: Radiance Decors
Description: Ultra-luxury aspirational homepage redesign — Playfair Display headings, emotional hero, strong trust signals, high-conversion CTAs.
Version: 5.5
*/

/* ─── TOKENS ─── */
:root {
  --gold:       #c09050;
  --gold-lt:    #e8d4a8;
  --gold-dk:    #8a6420;
  --rose:       #b84860;
  --rose-lt:    #f0d8de;
  --cream:      #faf8f4;
  --cream-dk:   #f2ede4;
  --ink:        #1c1008;
  --ink-80:     rgba(28,16,8,.80);
  --warm:       #2c1e16;
  --warm-mid:   #6a5848;
  --warm-lt:    #9a8a7a;
  --warm-xlt:   #c8bab0;
  --white:      #ffffff;
  --off-white:  #fdfbf8;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--warm);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLL REVEAL ─── */
.sr { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.sr.on { opacity: 1; transform: none; }
.sr-l { opacity: 0; transform: translateX(-32px); transition: opacity .75s ease, transform .75s ease; }
.sr-l.on { opacity: 1; transform: none; }
.sr-r { opacity: 0; transform: translateX(32px); transition: opacity .75s ease, transform .75s ease; }
.sr-r.on { opacity: 1; transform: none; }

/* ─── LAYOUT ─── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 5vw; }

/* ─── NAV ─── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5vw;
  transition: background .4s, padding .35s, box-shadow .4s;
}
#nav.stuck {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  padding: 1rem 5vw;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem; font-weight: 400;
  color: #fff; letter-spacing: .04em;
  transition: color .3s;
}
.nav-logo em { font-style: italic; color: var(--gold-lt); }
#nav.stuck .nav-logo { color: var(--warm); }
#nav.stuck .nav-logo em { color: var(--gold); }
.nav-links { display: flex; gap: 2.8rem; }
.nav-links a {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,.8); transition: color .2s;
}
#nav.stuck .nav-links a { color: var(--warm-mid); }
.nav-links a:hover { color: #fff !important; }
#nav.stuck .nav-links a:hover { color: var(--gold) !important; }
.nav-cta {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  padding: .6rem 1.6rem; border: 1px solid rgba(255,255,255,.6); color: #fff;
  transition: all .25s;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); }
#nav.stuck .nav-cta { border-color: var(--gold); color: var(--gold); }
#nav.stuck .nav-cta:hover { background: var(--gold); color: #fff; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-burger span { width: 22px; height: 1.5px; background: #fff; display: block; transition: background .3s; }
#nav.stuck .nav-burger span { background: var(--warm); }
/* Mobile drawer */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 490;
  background: #fff; flex-direction: column; align-items: center;
  justify-content: center; gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--warm);
}
.nav-mobile a:hover { color: var(--rose); }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; font-size: 2rem; color: #bbb; cursor: pointer;
}
.nav-mobile-ph { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); }

/* ─── HERO ─── */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* Slideshow slides */
.hs { position: absolute; inset: 0; opacity: 0; transition: opacity 2.2s ease; background-size: cover; background-position: center; }
.hs.h1 { background-image: url('gallery_stage_gold_red.jpg'); }
.hs.h2 { background-image: url('gallery_red_stage_1.jpg'); }
.hs.h3 { background-image: url('gallery_blue_stage_1.jpg'); }
.hs.h4 { background-image: url('gallery_blush_stage_detail.jpg'); }
.hs.on { opacity: 1; }
/* Layered overlay for cinematic depth */
.hero-ov1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.18) 0%, rgba(0,0,0,.55) 60%, rgba(28,16,8,.90) 100%); }
.hero-ov2 { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, rgba(0,0,0,.35) 100%); }
/* Hero content */
.hero-body {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 5vw;
  max-width: 980px;
  animation: heroFadeUp .9s ease both;
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .58rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 500;
  margin-bottom: 1.6rem;
  animation: heroFadeUp .9s .2s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold-lt); opacity: .7;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.08; letter-spacing: .01em;
  color: #fff;
  margin-bottom: 1.2rem;
  animation: heroFadeUp .9s .35s ease both;
}
.hero-h1 em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.68);
  max-width: 520px; margin: 0 auto 2.6rem; line-height: 1.75;
  animation: heroFadeUp .9s .5s ease both;
}
.hero-btns {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: heroFadeUp .9s .65s ease both;
}
.btn-hero-primary {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  padding: 1.1rem 3rem; background: var(--gold); color: #fff;
  transition: all .28s; border: 1px solid var(--gold);
}
.btn-hero-primary:hover { background: #d4a860; border-color: #d4a860; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,144,80,.35); }
.btn-hero-ghost {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  padding: 1.1rem 3rem; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.6); transition: all .28s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
/* Hero bottom bar */
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(192,144,80,.18);
}
.hb-item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.1rem 1.6rem; border-right: 1px solid rgba(0,0,0,.07);
  text-decoration: none; transition: background .2s;
}
.hb-item:last-child { border-right: none; }
.hb-item:hover { background: rgba(192,144,80,.07); }
.hb-icon { color: var(--gold); flex-shrink: 0; }
.hb-label { font-size: .44rem; letter-spacing: .22em; text-transform: uppercase; color: var(--warm-lt); display: block; margin-bottom: .18rem; }
.hb-val { font-family: 'Cormorant Garamond', serif; font-size: .95rem; color: var(--warm); font-weight: 400; }
/* Slideshow dots */
.hero-dots {
  position: absolute; right: 3vw; top: 50%; transform: translateY(-50%); z-index: 5;
  display: flex; flex-direction: column; gap: .65rem;
}
.hd { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); border: 1px solid rgba(255,255,255,.6); cursor: pointer; transition: all .3s; }
.hd.on { background: #fff; transform: scale(1.4); }

/* ─── TICKER ─── */
.ticker { background: var(--gold); overflow: hidden; padding: .75rem 0; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 48s linear infinite; }
.ti { font-size: .52rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.9); font-weight: 500; padding: 0 2.8rem; flex-shrink: 0; }
.tsep { color: rgba(255,255,255,.35); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION LABELS ─── */
.sec-label {
  display: flex; align-items: center; gap: 14px;
  font-size: .52rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: .8rem;
}
.sec-rule { display: block; width: 36px; height: 1px; background: var(--gold); opacity: .6; }
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400; line-height: 1.1; color: var(--warm);
}
.sec-h em { font-style: italic; color: var(--rose); }
.sec-sub { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 300; font-style: italic; color: var(--warm-lt); line-height: 1.7; margin-top: .6rem; }
.sec-divider { width: 48px; height: 1px; background: var(--gold); opacity: .45; margin: 1.6rem 0; }

/* ─── ABOUT / INTRO ─── */
#intro { background: var(--white); padding: 0; }
.intro-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }
.intro-photo { position: relative; overflow: hidden; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.intro-photo:hover img { transform: scale(1.04); }
.intro-photo-badge {
  position: absolute; bottom: 3.5rem; right: 0;
  background: var(--rose); color: #fff;
  padding: 1.4rem 2.2rem; text-align: center;
}
.intro-badge-n { font-family: 'Playfair Display', serif; font-size: 2.2rem; display: block; line-height: 1; }
.intro-badge-l { font-size: .46rem; letter-spacing: .18em; text-transform: uppercase; opacity: .85; margin-top: .25rem; display: block; }
.intro-copy {
  padding: 7rem 5.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.intro-copy p { font-size: .9rem; color: var(--warm-mid); line-height: 2; margin-bottom: 1.1rem; }
.intro-copy p strong { color: var(--warm); font-weight: 500; }
.intro-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.itag {
  font-size: .48rem; letter-spacing: .15em; text-transform: uppercase;
  padding: .38rem .9rem; border: 1px solid rgba(192,144,80,.22);
  color: var(--warm-lt); background: var(--cream);
  transition: all .2s;
}
.itag:hover { border-color: var(--rose); color: var(--rose); }
.intro-cta { margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-block; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  padding: .9rem 2.6rem; background: var(--rose); color: #fff; border: 1px solid var(--rose); transition: all .25s;
}
.btn-primary:hover { background: #cc5572; border-color: #cc5572; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,72,96,.3); }
.btn-outline {
  display: inline-block; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  padding: .9rem 2.6rem; background: transparent; color: var(--warm); border: 1px solid rgba(44,30,22,.25); transition: all .25s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.btn-gold {
  display: inline-block; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  padding: .9rem 2.6rem; background: var(--gold); color: #fff; border: 1px solid var(--gold); transition: all .25s;
}
.btn-gold:hover { background: #d4a860; border-color: #d4a860; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,144,80,.35); }

/* ─── PHOTO DUO ─── */
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; height: 65vh; }
.pd-item { position: relative; overflow: hidden; }
.pd-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.pd-item:hover img { transform: scale(1.05); }
.pd-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem 2.5rem;
  background: linear-gradient(to top, rgba(28,16,8,.72), transparent);
  opacity: 0; transform: translateY(8px); transition: all .4s;
}
.pd-item:hover .pd-cap { opacity: 1; transform: none; }
.pd-cat { font-size: .46rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.pd-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; font-weight: 400; margin-top: .35rem; }

/* ─── SERVICES ─── */
#services { background: var(--cream); padding: 8rem 0; }
.services-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4.5rem; flex-wrap: wrap; gap: 2rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(192,144,80,.12); }
.svc {
  background: var(--white); padding: 3.5rem 3rem;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.svc:hover { background: var(--off-white); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,30,22,.1); }
.svc-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--cream-dk); transition: background .3s; }
.svc:nth-child(1):hover .svc-bar { background: var(--rose); }
.svc:nth-child(2):hover .svc-bar { background: var(--gold); }
.svc:nth-child(3):hover .svc-bar { background: #7a9070; }
.svc:nth-child(4):hover .svc-bar { background: var(--rose); }
.svc:nth-child(5):hover .svc-bar { background: var(--gold); }
.svc:nth-child(6):hover .svc-bar { background: #9080b0; }
.svc-num { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 400; color: rgba(192,144,80,.07); position: absolute; top: .5rem; right: 1.5rem; line-height: 1; }
.svc-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; color: var(--warm); margin-bottom: .9rem; }
.svc-desc { font-size: .8rem; color: var(--warm-lt); line-height: 1.9; }
.svc-link { display: inline-block; margin-top: 1.6rem; font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; opacity: 0; transform: translateX(-6px); transition: all .3s; }
.svc:hover .svc-link { opacity: 1; transform: none; }

/* ─── GALLERY STRIP ─── */
#gallery { background: var(--white); padding: 8rem 0; }
.gal-hdr { text-align: center; margin-bottom: 4rem; }
.gal-hdr .sec-label { justify-content: center; }
.gal-hdr .sec-divider { margin: 1.4rem auto; }
.gal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 400px 260px;
  gap: 5px;
}
.gi { position: relative; overflow: hidden; background: var(--cream-dk); }
.gi:first-child { grid-row: 1 / 3; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gi:hover img { transform: scale(1.06); }
.gi-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; background: linear-gradient(to top, rgba(28,16,8,.68), transparent);
  opacity: 0; transition: opacity .4s;
}
.gi:hover .gi-cap { opacity: 1; }
.gi-cat { font-size: .44rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.gi-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 400; margin-top: .25rem; }
.gal-foot { text-align: center; margin-top: 3.5rem; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--cream); padding: 8rem 0; }
.testi-hdr { text-align: center; margin-bottom: 1.5rem; }
.testi-hdr .sec-label { justify-content: center; }
.stars-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(192,144,80,.22); padding: .55rem 1.8rem;
  background: var(--white); margin-bottom: 1.8rem;
}
.stars-badge .stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.stars-badge span { font-size: .5rem; letter-spacing: .2em; text-transform: uppercase; color: var(--warm-lt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 4rem; }
.tc {
  background: var(--white); padding: 3rem 2.5rem;
  border-bottom: 3px solid var(--cream-dk); position: relative;
  transition: transform .3s, box-shadow .3s, border-bottom-color .3s;
}
.tc:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(44,30,22,.09); }
.tc:nth-child(1):hover { border-bottom-color: var(--rose); }
.tc:nth-child(2):hover { border-bottom-color: var(--gold); }
.tc:nth-child(3):hover { border-bottom-color: #7a9070; }
.tc::before {
  content: '"'; font-family: 'Playfair Display', serif; font-size: 9rem;
  font-weight: 400; color: rgba(192,144,80,.06);
  position: absolute; top: -.8rem; left: 1.8rem; line-height: 1;
}
.tc-stars { color: var(--gold); font-size: .75rem; margin-bottom: 1.1rem; letter-spacing: .05em; }
.tc-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; font-style: italic;
  color: #4a3828; line-height: 1.85; margin-bottom: 1.8rem;
}
.tc-rule { width: 32px; height: 1px; background: var(--gold); opacity: .4; margin-bottom: 1rem; }
.tc-name { font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose); font-weight: 500; display: block; }
.tc-event { font-size: .5rem; color: var(--warm-lt); margin-top: .2rem; display: block; }
.tc-tag { display: inline-block; margin-top: .9rem; font-size: .46rem; letter-spacing: .14em; text-transform: uppercase; padding: .28rem .85rem; background: rgba(184,72,96,.07); color: var(--rose); }
.tc:nth-child(2) .tc-tag { background: rgba(192,144,80,.09); color: var(--gold-dk); }
.tc:nth-child(3) .tc-tag { background: rgba(122,144,112,.09); color: #5a7050; }

/* ─── CTA BAND ─── */
#cta-band {
  position: relative; overflow: hidden;
  padding: 10rem 5vw; text-align: center;
  background-image: url('gallery_ballroom.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
#cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.62); }
#cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(192,144,80,.14), transparent 70%); }
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .55rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 500; margin-bottom: 1.2rem;
}
.cta-eyebrow::before, .cta-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--gold-lt); opacity: .6; }
.cta-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.08; color: #fff; margin-bottom: 1.2rem;
}
.cta-h em { font-style: italic; color: var(--gold-lt); }
.cta-p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,.68); max-width: 520px; margin: 0 auto 3rem; line-height: 1.9; }
.cta-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ─── SERVICE AREAS ─── */
#areas { background: var(--white); padding: 8rem 0; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.area-photo { position: relative; overflow: hidden; height: 520px; }
.area-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.area-photo:hover img { transform: scale(1.04); }
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.achip {
  font-size: .5rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .42rem 1rem; border: 1px solid rgba(192,144,80,.2);
  color: var(--warm-lt); background: var(--cream); transition: all .2s;
}
.achip:hover { border-color: var(--rose); color: var(--rose); }

/* ─── CONTACT ─── */
#contact { background: var(--cream); padding: 8rem 0; }
.contact-hdr { text-align: center; margin-bottom: 5rem; }
.contact-hdr .sec-label { justify-content: center; }
.contact-hdr .sec-divider { margin: 1.4rem auto; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; }
/* Form */
.fld { margin-bottom: 2rem; }
.fld label { display: block; font-size: .5rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .55rem; font-weight: 500; opacity: .85; }
.fld input, .fld textarea, .fld select {
  width: 100%; background: transparent; border: 0; border-bottom: 1.5px solid rgba(44,30,22,.12);
  padding: .8rem 0; font-family: 'Jost', sans-serif; font-size: .9rem; font-weight: 300;
  color: var(--warm); outline: none; transition: border-color .25s;
}
.fld input:focus, .fld textarea:focus { border-bottom-color: var(--gold); }
.fld input::placeholder, .fld textarea::placeholder { color: rgba(106,88,72,.35); }
.fld textarea { resize: none; height: 88px; }
.fld2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-submit {
  width: 100%; background: var(--rose); color: #fff; border: none;
  font-family: 'Jost', sans-serif; font-size: .62rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase; padding: 1.15rem;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: .6rem;
  margin-top: .5rem;
}
.form-submit:hover { background: #cc5572; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,72,96,.3); }
/* Contact info */
.cinfo-item { margin-bottom: 2.4rem; }
.cinfo-label { font-size: .48rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 500; opacity: .85; margin-bottom: .45rem; }
.cinfo-val { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--warm); font-weight: 300; line-height: 1.5; }
.cinfo-val a { transition: color .2s; }
.cinfo-val a:hover { color: var(--rose); }
.wa-stack { display: flex; flex-direction: column; gap: .7rem; margin-top: .6rem; }
.wa-btn-fill { display: flex; align-items: center; gap: .7rem; padding: .8rem 1.5rem; background: #25D366; color: #fff; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; transition: all .2s; }
.wa-btn-fill:hover { background: #1ebe5d; transform: translateY(-1px); }
.wa-btn-out { display: flex; align-items: center; gap: .7rem; padding: .8rem 1.5rem; border: 1.5px solid #25D366; color: #25D366; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; transition: all .2s; }
.wa-btn-out:hover { background: rgba(37,211,102,.07); }
.soc-row { display: flex; gap: .7rem; margin-top: 2rem; }
.soc-btn { width: 42px; height: 42px; border: 1px solid rgba(192,144,80,.22); display: flex; align-items: center; justify-content: center; color: var(--warm-lt); transition: all .2s; }
.soc-btn:hover { border-color: var(--rose); color: var(--rose); }

/* ─── FOOTER ─── */
footer { background: var(--ink); border-top: 1px solid rgba(192,144,80,.14); }
.ft-body {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem; padding: 5rem 5vw 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 400; color: #fff; display: block; margin-bottom: 1rem; }
.ft-logo em { font-style: italic; color: var(--gold); }
.ft-about-p { font-size: .72rem; color: rgba(255,255,255,.28); line-height: 1.9; max-width: 250px; }
.ft-col-h { font-size: .48rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); font-weight: 500; opacity: .85; margin-bottom: 1.5rem; }
.ft-col ul { display: flex; flex-direction: column; gap: .8rem; }
.ft-col ul a { font-size: .72rem; color: rgba(255,255,255,.28); transition: color .2s; }
.ft-col ul a:hover { color: var(--gold); }
.ft-bottom { padding: 1.8rem 5vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ft-copy { font-size: .48rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.16); }
.ft-bottom-links a { font-size: .48rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-left: 2rem; transition: color .2s; }
.ft-bottom-links a:hover { color: var(--gold); }

/* ─── FLOATING WA ─── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 600; display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; }
.wa-float-main { width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 22px rgba(37,211,102,.45); transition: all .25s; text-decoration: none; }
.wa-float-main:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-pills { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; opacity: 0; transform: translateY(8px); transition: all .3s; pointer-events: none; }
.wa-float:hover .wa-pills { opacity: 1; transform: none; pointer-events: all; }
.wa-pill { display: flex; align-items: center; gap: .65rem; background: #fff; color: var(--warm); padding: .6rem 1.2rem; border-radius: 30px; font-size: .6rem; letter-spacing: .08em; white-space: nowrap; box-shadow: 0 3px 16px rgba(0,0,0,.12); text-decoration: none; border: 1px solid rgba(192,144,80,.15); transition: background .2s; }
.wa-pill:hover { background: var(--cream); }
.wa-dot { width: 7px; height: 7px; border-radius: 50%; background: #25D366; flex-shrink: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .intro-split, .contact-grid, .areas-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi:first-child { grid-row: auto; }
  .ft-body { grid-template-columns: 1fr 1fr; }
  .photo-duo { height: auto; }
  .pd-item { height: 320px; }
  .intro-copy { padding: 5rem 3rem; }
}
@media (max-width: 768px) {
  #nav { padding: 1rem 4vw; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-bar { grid-template-columns: 1fr 1fr; }
  .hb-item:nth-child(3), .hb-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,.06); }
  .hb-item:nth-child(2) { border-right: none; }
  .wrap { padding: 0 4vw; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 260px); }
  .gi:first-child { grid-row: auto; }
  .ft-body { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .services-hdr { flex-direction: column; align-items: flex-start; }
  .fld2 { grid-template-columns: 1fr; }
  .hero-dots { display: none; }
  #cta-band { background-attachment: scroll; }
  .hero-h1 { font-size: clamp(2.8rem, 11vw, 5rem); }
  .intro-copy { padding: 4rem 2rem; }
}

/* ════════════════════════════════════════════════
   AUDIT FIXES v5 — Mobile-first, Conversion-focused
   ════════════════════════════════════════════════ */

/* ── FIX 1: TICKER — hide on mobile (audit: visual clutter) ── */
@media (max-width: 768px) {
  .ticker { display: none; }
}

/* ── FIX 2: BOLD CONTACT — phone number stands out everywhere ── */
/* Hero bar phone number — larger, rose colored, bold */
.hb-item:first-child .hb-val {
  font-size: 1.25rem;
  color: var(--rose);
  font-weight: 500;
  letter-spacing: .02em;
}
/* Pill around phone in hero bar */
.hb-item:first-child {
  border-left: 3px solid var(--rose);
}

/* Contact section — big bold phone */
.contact-phone-hero {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--rose);
  font-weight: 400;
  letter-spacing: .02em;
  display: block;
  margin-bottom: .4rem;
}
.contact-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  background: var(--rose);
  color: #fff;
  padding: 1rem 2rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .5rem;
  transition: background .25s;
}
.contact-phone-pill:hover { background: #cc5572; }
.contact-phone-pill svg { flex-shrink: 0; }

/* ── FIX 3: STICKY MOBILE CONTACT BAR (always visible, bottom of screen) ── */
.mobile-sticky-bar {
  display: none; /* shown only on mobile via media query below */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 700;
  display: flex;
  border-top: 2px solid rgba(255,255,255,.15);
}
.msb-call {
  flex: 1.2;
  background: var(--rose);
  color: #fff;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.1rem .8rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
}
.msb-wa {
  flex: 1;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.1rem .8rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
}
.msb-book {
  flex: 1;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.1rem .8rem;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  /* Push footer content above sticky bar */
  body { padding-bottom: 62px; }
  /* Hide floating WA on mobile since sticky bar replaces it */
  .wa-float { display: none; }
}
@media (min-width: 769px) {
  .mobile-sticky-bar { display: none !important; }
}

/* ── FIX 4: SERVICES — accordion on mobile ── */
@media (max-width: 768px) {
  /* Hide desktop grid on mobile */
  .svc-grid { display: none; }
  /* Show accordion */
  .svc-accordion { display: block; }
}
.svc-accordion { display: none; margin-top: 1rem; }
.acc-item {
  border-bottom: 1px solid rgba(192,144,80,.18);
  background: var(--white);
}
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem;
  background: none; border: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 400; color: var(--warm);
  text-align: left; cursor: pointer;
  transition: background .2s;
}
.acc-trigger:hover { background: var(--cream); }
.acc-trigger.open { color: var(--rose); }
.acc-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid rgba(192,144,80,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-size: .9rem; line-height: 1;
}
.acc-trigger.open .acc-icon {
  transform: rotate(45deg);
  background: var(--rose); border-color: var(--rose); color: #fff;
}
.acc-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
  font-size: .82rem; color: var(--warm-lt); line-height: 1.9;
}
.acc-body.open { display: block; }

/* ── FIX 5: TESTIMONIALS — swipeable carousel on mobile ── */
@media (max-width: 768px) {
  .testi-grid { display: none; }
  .testi-carousel-wrap { display: block; margin-top: 2.5rem; }
}
@media (min-width: 769px) {
  .testi-carousel-wrap { display: none; }
}
.testi-carousel-wrap { display: none; position: relative; overflow: hidden; }
.testi-carousel {
  display: flex;
  transition: transform .4s ease;
}
.testi-carousel .tc {
  min-width: 100%;
  margin-right: 0;
  border-bottom: 3px solid var(--rose);
}
.carousel-nav {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 1.5rem; align-items: center;
}
.carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(192,144,80,.3);
  border: 1px solid rgba(192,144,80,.5);
  cursor: pointer; transition: all .3s;
}
.carousel-dot.on { background: var(--gold); transform: scale(1.3); }
.carousel-prev, .carousel-next {
  width: 38px; height: 38px;
  border: 1px solid rgba(192,144,80,.3);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer;
  transition: all .2s; font-size: .9rem;
}
.carousel-prev:hover, .carousel-next:hover {
  background: var(--rose); border-color: var(--rose); color: #fff;
}

/* ── FIX 6: REMOVE AREAS SECTION on mobile (trim scroll length) ── */
@media (max-width: 768px) {
  #areas { display: none; }
}

/* ── FIX 7: MOBILE padding reductions — trim scroll ── */
@media (max-width: 768px) {
  #services  { padding: 4rem 0; }
  #gallery   { padding: 4rem 0; }
  #testimonials { padding: 4rem 0; }
  #cta-band  { padding: 5rem 4vw; }
  #contact   { padding: 4rem 0; }
  .intro-copy { padding: 3rem 4vw; }
}

/* ── FIX 8: SINGLE hero CTA on mobile — no ghost button ── */
@media (max-width: 768px) {
  .btn-hero-ghost { display: none; }
  .hero-btns { justify-content: center; }
}

/* ── FIX 9: FOOTER — simplified on mobile ── */
@media (max-width: 768px) {
  /* Hide redundant service/nav lists in footer on mobile */
  .ft-col:nth-child(2),
  .ft-col:nth-child(3) { display: none; }
  .ft-body { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 4vw 2rem; }
}

/* ── FIX 10: COOKIE popup delay (handled in JS, just style it) ── */
.cookie-bar {
  position: fixed; bottom: 70px; left: 1rem; right: 1rem; z-index: 650;
  background: var(--ink); color: rgba(255,255,255,.75);
  padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .68rem; line-height: 1.6;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.cookie-bar.show { opacity: 1; transform: none; pointer-events: all; }
.cookie-bar a { color: var(--gold); }
.cookie-accept {
  background: var(--gold); color: var(--ink);
  font-size: .58rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .6rem 1.4rem; border: none; cursor: pointer; flex-shrink: 0;
  transition: background .2s;
}
.cookie-accept:hover { background: #d4a860; }

/* ── CTA consolidation — "Check Availability" -> "Book Consultation" ── */
/* Remove duplicate wording styles, unify */
.hb-item:last-child .hb-val {
  color: var(--rose);
  font-weight: 500;
}

/* ── Hero sub smaller on mobile ── */
@media (max-width: 768px) {
  .hero-sub { font-size: .95rem; max-width: 90vw; }
  .hero-eyebrow { font-size: .52rem; }
}

/* ── Contact section phone stands out more ── */
.cinfo-item.phone-highlight .cinfo-val {
  font-size: 1.6rem;
  color: var(--rose);
  font-weight: 400;
}
.cinfo-item.phone-highlight .cinfo-label {
  color: var(--rose);
}

/* ════════════════════════════════════════════════
   v5.1 — CONTACT PROMINENCE + MOBILE AUDIT
   ════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT INFO — BIG, BOLD, SCANNABLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Override base cinfo styles completely */
.cinfo-item {
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-left: 4px solid transparent;
  transition: border-left-color .2s, box-shadow .2s;
}
.cinfo-item:hover {
  box-shadow: 0 4px 20px rgba(44,30,22,.07);
}

/* Label — still small but clearly legible */
.cinfo-label {
  font-size: .58rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  margin-bottom: .5rem !important;
  display: flex;
  align-items: center;
  gap: .4rem;
  opacity: 1 !important;
}

/* Value — big, heavy, high contrast */
.cinfo-val {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  color: var(--warm) !important;
  line-height: 1.2 !important;
}
.cinfo-val a {
  color: inherit !important;
  transition: color .2s;
}
.cinfo-val a:hover {
  color: var(--rose) !important;
}

/* PHONE — rose, largest, immediate visual priority */
.cinfo-item.ci-phone {
  border-left-color: var(--rose);
  background: rgba(184,72,96,.04);
}
.cinfo-item.ci-phone .cinfo-label { color: var(--rose); }
.cinfo-item.ci-phone .cinfo-val {
  font-size: 1.9rem !important;
  color: var(--rose) !important;
  font-weight: 600 !important;
  letter-spacing: -.01em;
}
.cinfo-item.ci-phone .cinfo-val a { color: var(--rose) !important; }

/* Tap to Call pill */
.call-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--rose);
  color: #fff;
  padding: .75rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: .8rem;
  transition: background .25s, transform .2s;
  border: none;
  cursor: pointer;
}
.call-pill:hover { background: #cc5572; transform: translateY(-1px); }

/* EMAIL — gold accent */
.cinfo-item.ci-email {
  border-left-color: var(--gold);
}
.cinfo-item.ci-email .cinfo-label { color: var(--gold-dk); }
.cinfo-item.ci-email .cinfo-val {
  font-size: 1.2rem !important;
  word-break: break-all;
}

/* WHATSAPP — green accent */
.cinfo-item.ci-wa {
  border-left-color: #25D366;
}
.cinfo-item.ci-wa .cinfo-label { color: #1a9e4e; }

/* WhatsApp buttons — bigger */
.wa-btn-fill, .wa-btn-out {
  padding: 1rem 1.6rem !important;
  font-size: .68rem !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  gap: .8rem !important;
}
.wa-btn-fill svg, .wa-btn-out svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO BAR — phone more prominent
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hb-item:first-child {
  border-left: 4px solid var(--rose) !important;
  background: rgba(184,72,96,.04);
}
.hb-item:first-child .hb-val {
  font-size: 1.35rem !important;
  color: var(--rose) !important;
  font-weight: 500 !important;
  letter-spacing: .01em;
}
.hb-item:first-child .hb-label {
  color: var(--rose);
  opacity: .75;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE STICKY BAR — taller, easier tap
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.msb-call, .msb-wa, .msb-book {
  padding: 1.2rem .8rem !important;
  font-size: .6rem !important;
  font-weight: 700 !important;
  flex-direction: column;
  gap: .3rem !important;
}
.msb-call svg, .msb-wa svg, .msb-book svg {
  width: 20px !important;
  height: 20px !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE FULL AUDIT FIXES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {

  /* ── Contact grid: single column, no gap ── */
  .contact-grid { gap: 0 !important; }

  /* ── Contact info cards full-width ── */
  .cinfo-item {
    margin-bottom: 1rem !important;
    padding: 1.2rem 1.2rem !important;
  }
  .cinfo-item.ci-phone .cinfo-val {
    font-size: 1.6rem !important;
  }
  .cinfo-item.ci-email .cinfo-val {
    font-size: 1rem !important;
  }

  /* ── Hero: tighter, no text overflow ── */
  .hero-body {
    padding: 0 4vw;
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(2.6rem, 10vw, 4.2rem) !important;
    line-height: 1.05 !important;
  }
  .hero-sub {
    font-size: .85rem !important;
    line-height: 1.75 !important;
    margin-bottom: 2rem !important;
  }
  .btn-hero-primary {
    padding: .95rem 1.8rem !important;
    font-size: .6rem !important;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── Hero bar: 2x2 grid on mobile ── */
  .hero-bar {
    grid-template-columns: 1fr 1fr !important;
  }
  .hb-item {
    padding: .85rem 1rem !important;
    border-right: 1px solid rgba(0,0,0,.06) !important;
  }
  .hb-item:first-child {
    border-left: 3px solid var(--rose) !important;
  }
  .hb-item:nth-child(2) { border-right: none !important; }
  .hb-item:nth-child(3) {
    border-top: 1px solid rgba(0,0,0,.06);
    border-right: 1px solid rgba(0,0,0,.06) !important;
  }
  .hb-item:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,.06);
    border-right: none !important;
  }
  .hb-val { font-size: .82rem !important; }
  .hb-item:first-child .hb-val { font-size: 1rem !important; }

  /* ── About section: compact ── */
  .intro-split { grid-template-columns: 1fr !important; min-height: auto !important; }
  .intro-photo { height: 280px; }
  .intro-photo img { height: 280px; }
  .intro-copy { padding: 2.5rem 4vw !important; }
  .sec-h { font-size: clamp(1.7rem, 6vw, 2.4rem) !important; }

  /* ── Photo duo: stacked, shorter ── */
  .photo-duo { grid-template-columns: 1fr !important; }
  .pd-item { height: 220px !important; }

  /* ── Services section ── */
  #services { padding: 3.5rem 0 !important; }
  .services-hdr { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services-hdr .btn-outline { display: none; } /* hidden on mobile, CTA at bottom of accordion */

  /* ── Accordion items: bigger tap targets ── */
  .acc-trigger {
    padding: 1.2rem 1.2rem !important;
    font-size: 1.05rem !important;
  }
  .acc-body {
    padding: 0 1.2rem 1.2rem !important;
    font-size: .84rem !important;
  }

  /* ── Gallery: 2-col on mobile, shorter ── */
  .gal-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: repeat(3, 180px) !important;
  }
  .gi:first-child { grid-row: auto !important; }
  .gi:last-child { grid-column: 1 / -1; } /* last spans full width */
  #gallery { padding: 3.5rem 0 !important; }
  .gal-foot { margin-top: 2rem; }
  .gal-foot .btn-outline { font-size: .58rem !important; padding: .8rem 1.5rem !important; }

  /* ── Testimonials ── */
  #testimonials { padding: 3.5rem 0 !important; }
  .testi-carousel .tc {
    padding: 2rem 1.5rem !important;
  }
  .tc-quote { font-size: .95rem !important; }

  /* ── CTA band ── */
  #cta-band { padding: 4.5rem 4vw !important; }
  .cta-h { font-size: clamp(1.8rem, 7vw, 2.8rem) !important; line-height: 1.1 !important; }
  .cta-p { font-size: .85rem !important; margin-bottom: 2rem !important; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: .8rem !important; }
  .btn-hero-primary, .btn-hero-ghost {
    text-align: center !important;
    justify-content: center !important;
    padding: 1rem !important;
  }

  /* ── Contact ── */
  #contact { padding: 3.5rem 0 !important; }
  .contact-hdr { margin-bottom: 2.5rem !important; }
  /* Form full width */
  .fld2 { grid-template-columns: 1fr !important; gap: 0 !important; }
  .fld input, .fld textarea {
    font-size: 1rem !important; /* prevent iOS zoom */
    padding: .9rem 0 !important;
  }
  .form-submit {
    padding: 1.1rem !important;
    font-size: .62rem !important;
  }

  /* WA buttons bigger on mobile */
  .wa-btn-fill, .wa-btn-out {
    padding: 1.1rem 1.4rem !important;
    font-size: .72rem !important;
  }

  /* ── Stars badge ── */
  .stars-badge { padding: .5rem 1rem !important; }
  .stars-badge .stars { font-size: .85rem !important; }

  /* ── Footer: minimal ── */
  .ft-body { padding: 2.5rem 4vw 2rem !important; }
  .ft-copy { font-size: .5rem !important; }

  /* ── Section dividers / labels: compact ── */
  .sec-divider { margin: .8rem 0 1.5rem !important; }
  .sec-label { font-size: .5rem !important; }
  .sec-sub { font-size: 1rem !important; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TABLET (769–1100px) TWEAKS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) and (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cinfo-item { padding: 1.2rem 1.4rem; }
  .hb-val { font-size: .88rem; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INPUT FONT SIZE — prevent iOS auto-zoom
   Any input <16px triggers zoom on iOS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important;
    -webkit-appearance: none;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOUCH — better tap targets site-wide
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .nav-links a, .btn-primary, .btn-outline, .btn-gold,
  .btn-hero-primary, .btn-hero-ghost,
  .wa-btn-fill, .wa-btn-out,
  .soc-btn, .acc-trigger,
  .carousel-prev, .carousel-next,
  .hb-item, .msb-call, .msb-wa, .msb-book {
    min-height: 44px; /* Apple HIG minimum tap target */
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY on mobile — fix 5th item
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .gi:nth-child(5) {
    grid-column: 1 / -1;
    height: 180px;
  }
}

/* ════════════════════════════════════════════════
   v5.2 — SHORT GLANCE-FIRST HOMEPAGE
   ════════════════════════════════════════════════ */

/* ── Hero: single CTA only, no ghost on mobile ── */
.btn-hero-ghost { display: inline-flex; align-items: center; gap: .5rem; }
@media (max-width: 768px) {
  .btn-hero-ghost { display: none; }
  .hb-hide-mobile { display: none !important; }
  .hero-bar { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  padding: 1.2rem 5vw;
}
.ps-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .6rem 2.5rem; text-align: center;
}
.ps-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 500;
  color: #fff; line-height: 1;
}
.ps-lbl {
  font-size: .52rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: .3rem; font-weight: 500;
}
.ps-div {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .ps-item { padding: .5rem 1.2rem; }
  .ps-num { font-size: 1.3rem; }
  .ps-lbl { font-size: .46rem; }
  .ps-div { height: 1.8rem; }
}

/* ── PHOTO WALL ── */
.photo-wall {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  height: 68vh;
  gap: 4px;
  background: var(--cream);
}
.pw-main { position: relative; overflow: hidden; }
.pw-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.pw-main:hover img { transform: scale(1.03); }
.pw-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 4px; }
.pw-half { position: relative; overflow: hidden; }
.pw-half img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.pw-half:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .photo-wall { grid-template-columns: 1fr; height: auto; }
  .pw-main { height: 55vw; }
  .pw-stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .pw-half { height: 40vw; }
}

/* ── ONE-LINER ── */
.one-liner { background: var(--white); padding: 5rem 0; }
.ol-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ol-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.15;
  color: var(--warm); margin-bottom: 1rem;
}
.ol-h em { font-style: italic; color: var(--rose); }
.ol-p { font-size: .88rem; color: var(--warm-lt); line-height: 1.9; margin-bottom: 1.5rem; }
.btn-text-link {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--rose); transition: color .2s;
}
.btn-text-link:hover { color: var(--rose-lt); }
.ol-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
@media (max-width: 768px) {
  .ol-inner { grid-template-columns: 1fr; gap: 2rem; }
  .one-liner { padding: 3.5rem 0; }
}

/* ── GALLERY ROW ── */
.gal-row { background: var(--cream2); padding: 4px 0 3.5rem; }
.gr-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 4px; height: 280px; margin-bottom: 2.5rem;
}
.gr-item { position: relative; overflow: hidden; }
.gr-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gr-item:hover img { transform: scale(1.06); }
.gr-foot { text-align: center; }
@media (max-width: 768px) {
  .gr-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .gr-item { height: 42vw; }
  .gal-row { padding: 4px 0 2.5rem; }
}

/* ── TESTIMONIALS — compact ── */
#testimonials { background: var(--cream2); padding: 4.5rem 0; }
.t-hdr { text-align: center; margin-bottom: 3rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tc {
  background: var(--white); padding: 2.2rem 2rem;
  border-bottom: 3px solid var(--blush-lt);
  transition: transform .3s, box-shadow .3s, border-bottom-color .3s;
  position: relative;
}
.tc::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 6rem; font-weight: 700;
  color: rgba(184,72,96,.06);
  position: absolute; top: -.5rem; left: 1.2rem; line-height: 1;
}
.tc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,30,22,.08); border-bottom-color: var(--rose); }
.tc-stars { color: var(--gold); font-size: .72rem; letter-spacing: .08em; margin-bottom: .8rem; }
.tc-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 300; font-style: italic;
  color: var(--text2); line-height: 1.75; margin-bottom: 1.2rem;
}
.tc-rule { width: 30px; height: 1px; background: var(--gold); opacity: .4; margin-bottom: .8rem; }
.tc-name { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); font-weight: 600; display: block; }
.tc-event { font-size: .52rem; color: var(--warm-lt); display: block; margin-top: .15rem; }
@media (max-width: 768px) {
  .testi-grid { display: none; }
  .testi-carousel-wrap { display: block !important; }
  #testimonials { padding: 3.5rem 0; }
  .tc { padding: 2rem 1.5rem; }
  .tc-quote { font-size: .95rem; }
}

/* ── CTA BAND ── */
#cta-band {
  padding: 8rem 5vw; text-align: center; position: relative; overflow: hidden;
  background: url('gallery_stage_gold_red.jpg') center/cover no-repeat;
}
#cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.cta-inner { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: .56rem; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 500;
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  margin-bottom: .8rem;
}
.cta-eyebrow::before,.cta-eyebrow::after { content: ''; width: 28px; height: 1px; background: rgba(255,255,255,.4); }
.cta-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 1rem;
}
.cta-h em { font-style: italic; color: var(--champagne); }
.cta-p { font-size: .88rem; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.9; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 768px) {
  #cta-band { padding: 5rem 4vw; background-attachment: scroll; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { text-align: center; justify-content: center; }
}

/* ── CONTACT ── */
#contact { background: var(--cream2); padding: 5rem 0; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; }
.contact-info-col { padding-top: .5rem; }
@media (max-width: 1100px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
@media (max-width: 768px) { #contact { padding: 3.5rem 0; } }

/* ── STARS BADGE ── */
.stars-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  border: 1px solid rgba(192,144,80,.2); padding: .5rem 1.5rem;
  margin-bottom: 1.2rem; background: var(--white);
}
.stars { color: var(--gold); font-size: .9rem; letter-spacing: .08em; }
.stars-badge span:last-child { font-size: .5rem; letter-spacing: .22em; text-transform: uppercase; color: var(--warm-lt); }

/* ════════════════════════════════════════════════
   v5.3 — SMS TEXT + CALL/TEXT BUTTONS
   ════════════════════════════════════════════════ */

/* ── Hero bar: phone item — Call + Text mini buttons ── */
.hb-item.hb-phone { cursor: default; }
.hb-actions {
  display: flex; gap: .4rem; margin-top: .4rem;
}
.hb-act {
  font-size: .52rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .35rem .85rem;
  transition: all .2s; text-decoration: none;
}
.hb-act-call {
  background: var(--rose); color: #fff;
}
.hb-act-call:hover { background: #cc5572; }
.hb-act-sms {
  background: transparent;
  border: 1.5px solid var(--rose); color: var(--rose);
}
.hb-act-sms:hover { background: var(--rose); color: #fff; }

/* ── Contact section: Call + Text side by side ── */
.contact-phone-actions {
  display: flex; gap: .7rem; margin-top: .8rem; flex-wrap: wrap;
}
.call-pill-sms {
  background: transparent !important;
  border: 1.5px solid var(--rose) !important;
  color: var(--rose) !important;
}
.call-pill-sms:hover {
  background: var(--rose) !important;
  color: #fff !important;
}

/* ── Mobile sticky bar: 4 buttons ── */
.msb-sms {
  flex: 1;
  background: #5B4FCF; /* distinct purple — not rose, not green, not dark */
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .3rem;
  padding: 1.2rem .8rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s;
}
.msb-sms:hover { background: #4A3EBF; }

/* ── Adjust sticky bar: now 4 cols ── */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Slightly smaller text to fit 4 */
  .msb-call, .msb-sms, .msb-wa, .msb-book {
    font-size: .55rem !important;
    padding: 1rem .5rem !important;
  }
}

/* ── cinfo-label fix: make it flex for icon alignment ── */
.cinfo-label {
  display: flex !important;
  align-items: center;
  gap: .4rem;
}

/* ════════════════════════════════════════════════
   v5.4 — DESKTOP OVERLAP FIXES (final overrides)
   These MUST be last in the file to win specificity
   ════════════════════════════════════════════════ */

/* ── TESTIMONIALS: definitive show/hide ── */
/* Desktop (>768px): grid visible, carousel hidden */
.testi-carousel-wrap {
  display: none !important;
}
.testi-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}
/* Tablet: 2-col grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
/* Mobile: hide grid, show carousel */
@media (max-width: 768px) {
  .testi-grid {
    display: none !important;
  }
  .testi-carousel-wrap {
    display: block !important;
    margin-top: 2rem;
  }
}

/* ── PHOTO WALL: fix desktop overlap ── */
.photo-wall {
  display: grid !important;
  grid-template-columns: 1.55fr 1fr !important;
  height: 68vh !important;
  gap: 4px !important;
  overflow: hidden !important; /* prevent bleed */
}
.pw-main,
.pw-half {
  overflow: hidden !important;
  position: relative !important;
}
.pw-main img,
.pw-half img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.pw-stack {
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  grid-template-columns: none !important;
  gap: 4px !important;
  overflow: hidden !important;
}
/* Mobile override */
@media (max-width: 768px) {
  .photo-wall {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  .pw-main {
    height: 55vw !important;
  }
  .pw-stack {
    grid-template-rows: none !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .pw-half {
    height: 40vw !important;
  }
}

/* ── GALLERY ROW: fix desktop overlap ── */
.gr-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  height: 280px !important;
  gap: 4px !important;
  overflow: hidden !important;
}
.gr-item {
  overflow: hidden !important;
  position: relative !important;
}
.gr-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
@media (max-width: 900px) {
  .gr-grid {
    grid-template-columns: 1fr 1fr !important;
    height: auto !important;
  }
  .gr-item {
    height: 42vw !important;
  }
}

/* ── ONE-LINER SECTION: prevent overlap ── */
.ol-inner {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 4rem !important;
  align-items: start !important;
}
@media (max-width: 900px) {
  .ol-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ── HERO BAR: fix desktop layout ── */
.hero-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
}
.hb-item {
  flex: 1 !important;
  min-width: 0 !important; /* prevent overflow */
}
.hb-val {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
/* On smaller laptops (1024–1280px) shrink hero bar text */
@media (max-width: 1280px) and (min-width: 769px) {
  .hb-label { font-size: .42rem !important; }
  .hb-val { font-size: .78rem !important; }
  .hb-item:first-child .hb-val { font-size: .88rem !important; }
  .hb-item { padding: 1rem 1rem !important; }
}

/* ── PROOF STRIP: no overflow on any screen ── */
.proof-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* ── CONTACT GRID: clean desktop ── */
.contact-grid {
  display: grid !important;
  grid-template-columns: 3fr 2fr !important;
  gap: 5rem !important;
  align-items: start !important;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

/* ── STICKY BAR: desktop hidden, mobile only ── */
.mobile-sticky-bar {
  display: none !important;
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 700 !important;
  }
  body { padding-bottom: 64px !important; }
  /* Desktop WA float hidden on mobile (sticky bar replaces it) */
  .wa-float { display: none !important; }
}

/* ── COOKIE BAR: above sticky on mobile ── */
@media (max-width: 768px) {
  .cookie-bar { bottom: 66px !important; }
}

/* ── WRAP max-width consistency ── */
.wrap {
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 5vw !important;
}

/* ── Sections: no overflow bleed ── */
section,
.photo-wall,
.gal-row,
.proof-strip,
#testimonials,
#cta-band,
#contact {
  overflow-x: hidden !important;
}


/* ── CookieAdmin Pro: delay popup via CSS opacity trick ── */
/* The plugin fires instantly — we fade it in after 10s via JS class */
.cookieadmin-container,
.cookieadmin-pro-container,
[class*="cookieadmin"] {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
[class*="cookieadmin"].ca-show {
  opacity: 1;
  pointer-events: all;
}

/* ════════════════════════════════════════════════
   v5.5 — CONTRAST FIXES (PageSpeed + Accessibility)
   ════════════════════════════════════════════════ */

/* ── Form labels — darker, easier to read ── */
.fld label,
.fl label,
.wpforms-form .wpforms-field-label {
  color: #3a2a18 !important;
  font-size: .65rem !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  letter-spacing: .2em !important;
}

/* ── Form input text — darker placeholder ── */
.fld input::placeholder,
.fld textarea::placeholder,
.fl input::placeholder,
.fl textarea::placeholder,
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
  color: rgba(58,42,24,.45) !important;
}

/* ── Form inputs — visible border, not invisible ── */
.fld input,
.fld textarea,
.fl input,
.fl textarea {
  border-bottom: 2px solid rgba(58,42,24,.25) !important;
  color: #2c1e16 !important;
}
.fld input:focus,
.fld textarea:focus,
.fl input:focus,
.fl textarea:focus {
  border-bottom-color: #b84860 !important;
  outline: none !important;
}

/* ── WPForms contact page — same fixes ── */
.wpforms-form input[type=text],
.wpforms-form input[type=email],
.wpforms-form input[type=tel],
.wpforms-form textarea,
.wpforms-form select {
  border-bottom: 2px solid rgba(58,42,24,.25) !important;
  color: #2c1e16 !important;
  font-size: 1rem !important; /* prevent iOS zoom */
}

/* ── Cinfo labels — darker ── */
.cinfo-label {
  color: #5a3a20 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  font-size: .6rem !important;
}

/* ── Cinfo values — high contrast ── */
.cinfo-val {
  color: #1c1008 !important;
  font-size: 1.15rem !important;
}
.cinfo-val a {
  color: #1c1008 !important;
}
.cinfo-val a:hover {
  color: #b84860 !important;
}

/* ── Phone highlight — rose, strong contrast ── */
.ci-phone .cinfo-label { color: #8a1830 !important; }
.ci-phone .cinfo-val,
.ci-phone .cinfo-val a {
  color: #8a1830 !important;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
}

/* ── Email label darker ── */
.ci-email .cinfo-label { color: #6a4a10 !important; }

/* ── Service description text — more contrast ── */
.svc-desc { color: #6a5a48 !important; }

/* ── Testimonial quote text — darker ── */
.tc-quote { color: #3a2a18 !important; }
.tc-name { color: #8a1830 !important; }
.tc-event { color: #5a4a38 !important; }

/* ── Eyebrow / sec-label — strong gold ── */
.sec-label,
.ab-ey,
.ey {
  color: #8a6010 !important;
  opacity: 1 !important;
}

/* ── Nav links when scrolled — darker ── */
nav.stuck .navlinks a { color: #4a3828 !important; }
nav.stuck .navlinks a:hover { color: #b84860 !important; }

/* ── Footer text — slightly brighter ── */
.ft-col ul a { color: rgba(255,255,255,.45) !important; }
.ft-col ul a:hover { color: #e0b060 !important; }
.ft-brand p { color: rgba(255,255,255,.4) !important; }

/* ── Proof strip — ensure white text readable ── */
.ps-lbl { color: rgba(255,255,255,.9) !important; }
.ps-num { color: #fff !important; }

/* ── HB label in hero bar — readable ── */
.hb-label { color: #5a4a38 !important; opacity: 1 !important; }
.hb-val { color: #1c1008 !important; font-weight: 500 !important; }
.hb-item:first-child .hb-val { color: #8a1830 !important; }
