/* ═══════════════════════════════════════════════════════════
   Deco by Della — brand stylesheet
   Palette lifted from Della's business card:
   raspberry, deep navy, antique gold, warm cream.
   ═══════════════════════════════════════════════════════════ */

:root{
  --pink:        #C31A57;
  --pink-deep:   #98063F;
  --pink-soft:   #E4677F;
  --pink-wash:   #FDEFF3;
  --navy:        #16173F;
  --navy-mid:    #262a63;
  --navy-soft:   #4A4F86;
  --gold:        #C9A227;
  --gold-light:  #E9CE7E;
  --cream:       #FFF9F5;
  --cream-deep:  #F8EDE5;
  --teal:        #3FA796;
  --amber:       #F0A93C;
  --ink:         #16173F;
  --body:        #4A4B63;
  --white:       #fff;

  --serif:  'Playfair Display', Georgia, serif;
  --script: 'Parisienne', cursive;
  --sans:   'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1200px;
  --r:    18px;
  --r-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(22,23,63,.06), 0 1px 2px rgba(22,23,63,.04);
  --shadow:    0 12px 30px -12px rgba(22,23,63,.18), 0 2px 8px rgba(22,23,63,.06);
  --shadow-lg: 0 40px 80px -32px rgba(22,23,63,.35), 0 8px 24px -12px rgba(22,23,63,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html{ scroll-behavior:smooth; scroll-padding-top:104px; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family:var(--sans);
  font-size:clamp(16px,.5vw + 15px,17.5px);
  line-height:1.7;
  color:var(--body);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:var(--pink); text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--serif); color:var(--ink); line-height:1.12; margin:0 0 .5em; font-weight:700; letter-spacing:-.015em; }
h2{ font-size:clamp(2rem,3.6vw,3.1rem); }
h3{ font-size:1.32rem; letter-spacing:-.01em; }
h2 em, h1 em{ font-family:var(--serif); font-style:italic; color:var(--pink); font-weight:600; }
p{ margin:0 0 1.1em; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:clamp(20px,5vw,40px); }
.section{ padding:clamp(72px,9vw,132px) 0; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--pink); color:#fff; padding:12px 20px; border-radius:0 0 12px 0; font-weight:700;
}
.skip-link:focus{ left:0; }

:focus-visible{ outline:3px solid var(--gold); outline-offset:3px; border-radius:6px; }

/* ── Shared bits ─────────────────────────────────────────── */
.eyebrow{
  font-family:var(--sans); font-size:.76rem; font-weight:800;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--gold-light); margin:0 0 .9rem;
}
.eyebrow-dark{ color:var(--pink); }

.section-head{ max-width:660px; margin:0 auto clamp(44px,5vw,68px); text-align:center; }
.section-head .lede{ font-size:1.09rem; color:var(--body); margin:0; }
.section-head-light h2, .section-head-light .lede{ color:#fff; }
.section-head-light .lede{ opacity:.8; }

.paint-rule{
  height:5px;
  background:linear-gradient(90deg,
    var(--pink) 0%, var(--pink) 16%,
    var(--pink-soft) 16%, var(--pink-soft) 32%,
    var(--amber) 32%, var(--amber) 48%,
    var(--gold) 48%, var(--gold) 62%,
    var(--teal) 62%, var(--teal) 78%,
    var(--navy-soft) 78%, var(--navy-soft) 90%,
    var(--navy) 90%);
}

.tick{
  width:19px; height:19px; flex:0 0 19px; border-radius:50%;
  background:var(--pink); display:inline-grid; place-items:center; position:relative;
}
.tick::after{
  content:''; width:5px; height:9px; margin-top:-2px;
  border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn{
  --btn-bg:var(--pink);
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--sans); font-weight:800; font-size:.98rem; letter-spacing:.01em;
  padding:1.05em 2.1em; border-radius:100px; border:2px solid transparent;
  cursor:pointer; text-align:center; position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn-primary{
  background:linear-gradient(135deg,var(--pink) 0%, var(--pink-deep) 100%);
  color:#fff; box-shadow:0 14px 30px -12px rgba(195,26,87,.65);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 22px 44px -14px rgba(195,26,87,.7); }
.btn-ghost{ background:rgba(255,255,255,.1); color:#fff; border-color:rgba(255,255,255,.55); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:#fff; color:var(--navy); border-color:#fff; transform:translateY(-3px); }
.btn-outline-light{ background:#fff; color:var(--navy); border-color:var(--navy); }
.btn-outline-light:hover{ background:var(--navy); color:#fff; }
.btn-block{ width:100%; }

/* ── Header ──────────────────────────────────────────────── */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(255,249,245,.86); backdrop-filter:blur(14px) saturate(1.4);
  transition:box-shadow .3s, background .3s;
}
.site-header.scrolled{ box-shadow:0 6px 26px -12px rgba(22,23,63,.28); background:rgba(255,249,245,.96); }
.header-inner{ display:flex; align-items:center; gap:clamp(14px,2.4vw,34px); min-height:96px; }

.brand{ display:flex; align-items:baseline; gap:.34em; color:var(--navy); flex:0 0 auto; line-height:1; }
/* Horizontal logo lockup (~3.6:1). Padded PNG, so nothing sits flush to the edge. */
.brand-logo{
  height:clamp(46px,4.8vw,62px); width:auto;
  transition:transform .4s var(--ease);
}
.brand:hover .brand-logo{ transform:scale(1.03); }
.brand-deco{ font-family:var(--serif); font-weight:900; font-size:1.6rem; letter-spacing:-.02em; }
.brand-by{ font-family:var(--sans); font-size:.6rem; font-weight:800; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); }
.brand-della{ font-family:var(--script); font-size:2.05rem; color:var(--pink); line-height:.8; }

.nav{ display:flex; align-items:center; gap:clamp(14px,2vw,30px); margin-left:auto; }
.nav a{
  font-weight:700; font-size:.95rem; color:var(--navy); position:relative; padding:6px 0;
}
.nav a:not(.nav-cta)::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:2.5px;
  background:var(--pink); border-radius:2px; transition:right .35s var(--ease);
}
.nav a:not(.nav-cta):hover::after{ right:0; }
.nav-cta{
  background:var(--navy); color:#fff !important; padding:.85em 1.6em !important; border-radius:100px;
  line-height:1; transition:background .3s, transform .3s var(--ease);
}
.nav-cta:hover{ background:var(--pink); transform:translateY(-2px); }

.header-phone{
  display:inline-flex; align-items:center; gap:.55em; font-weight:800; color:var(--pink);
  font-size:1.02rem; white-space:nowrap;
}
.header-phone svg{ width:19px; height:19px; fill:var(--pink); }
.header-phone:hover{ color:var(--pink-deep); }

.burger{ display:none; background:none; border:0; padding:10px; cursor:pointer; margin-left:auto; }
.burger span{ display:block; width:26px; height:2.5px; background:var(--navy); border-radius:2px; transition:transform .3s var(--ease), opacity .2s; }
.burger span+span{ margin-top:6px; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(8.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-8.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero{ position:relative; isolation:isolate; display:flex; align-items:flex-end; min-height:min(90vh,820px); overflow:hidden; }
.hero-media{ position:absolute; inset:0; z-index:-1; }
.hero-media img{ width:100%; height:100%; object-fit:cover; animation:heroZoom 22s var(--ease) forwards; }
@keyframes heroZoom{ from{ transform:scale(1.1); } to{ transform:scale(1); } }
@media (prefers-reduced-motion:reduce){ .hero-media img{ animation:none; } }
/* Left-weighted so the text stays legible while the room keeps its colour */
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(100deg, rgba(22,23,63,.84) 0%, rgba(22,23,63,.66) 40%, rgba(22,23,63,.34) 70%, rgba(22,23,63,.18) 100%),
    linear-gradient(180deg, rgba(22,23,63,.34) 0%, rgba(22,23,63,.06) 38%, rgba(22,23,63,.30) 74%, rgba(22,23,63,.72) 100%),
    linear-gradient(120deg, rgba(152,6,63,.30) 0%, rgba(152,6,63,0) 55%);
}
.hero-inner{ padding-top:clamp(80px,12vw,140px); padding-bottom:clamp(74px,8vw,110px); max-width:calc(var(--wrap) + 0px); }
.hero h1{
  color:#fff; margin:0 0 .38em;
  font-size:clamp(3rem,8.4vw,6.6rem); font-weight:700; letter-spacing:-.03em; line-height:.96;
  text-shadow:0 4px 40px rgba(0,0,0,.3);
}
.hero h1 .line-1{ display:block; }
.hero h1 .line-2{
  display:block; font-family:var(--script); font-weight:400;
  font-size:1.24em; line-height:1; color:var(--gold-light);
  letter-spacing:0; margin-left:.06em; padding-bottom:.08em;
}
.hero-sub{ color:rgba(255,255,255,.9); font-size:clamp(1.05rem,1.4vw,1.24rem); max-width:56ch; margin:0 0 2.1em; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:2.6em; }

.hero-badges{ display:flex; flex-wrap:wrap; gap:.7em 2em; list-style:none; padding:0; margin:0; }
.hero-badges li{
  display:flex; align-items:center; gap:.6em;
  color:#fff; font-weight:700; font-size:.94rem; letter-spacing:.01em;
}
.hero-badges .tick{ background:var(--gold); }

.hero-swatches{ position:absolute; right:0; bottom:0; display:flex; z-index:2; }
.hero-swatches span{ width:clamp(38px,6vw,74px); height:10px; background:var(--c); }

/* ── Marquee ─────────────────────────────────────────────── */
.marquee{ background:var(--navy); color:#fff; padding:16px 0; overflow:hidden; }
.marquee-track{
  display:flex; align-items:center; gap:2.2rem; width:max-content;
  animation:marquee 44s linear infinite;
}
.marquee-track span{ font-family:var(--serif); font-size:1.18rem; font-style:italic; white-space:nowrap; }
.marquee-track i{ color:var(--gold); font-style:normal; font-size:.8rem; }
@keyframes marquee{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .marquee-track{ animation:none; } }

/* ── Services ────────────────────────────────────────────── */
.services{ background:var(--cream); position:relative; overflow:hidden; }
.services::before{
  content:''; position:absolute; top:-8%; right:-12%; width:44vw; height:44vw; max-width:620px; max-height:620px;
  background:radial-gradient(circle, rgba(228,103,127,.16) 0%, rgba(228,103,127,0) 68%);
  border-radius:50%; pointer-events:none;
}
/* Four services → a balanced 2×2 rather than 3 + an orphan */
.service-grid{ display:grid; grid-template-columns:1fr; gap:clamp(22px,2.6vw,34px); position:relative; }
@media (min-width:700px){ .service-grid{ grid-template-columns:repeat(2,1fr); } }

.service-card{
  background:#fff; border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow); border:1px solid rgba(22,23,63,.06);
  display:flex; flex-direction:column;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.service-img{ aspect-ratio:4/3; overflow:hidden; background:var(--cream-deep); }
.service-img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.service-card:hover .service-img img{ transform:scale(1.07); }

.service-body{ padding:clamp(24px,2.4vw,32px); position:relative; flex:1; display:flex; flex-direction:column; }
.service-icon{
  position:absolute; top:0; right:clamp(24px,2.4vw,32px); transform:translateY(-50%);
  width:58px; height:58px; border-radius:18px; display:grid; place-items:center;
  background:var(--ic); box-shadow:0 12px 24px -10px color-mix(in srgb, var(--ic) 70%, transparent);
}
.service-icon svg{ width:27px; height:27px; fill:#fff; }
.service-body h3{ margin:0 0 .15em; padding-right:56px; }
.service-kicker{
  font-size:.74rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); margin:0 0 1em;
}
.service-body > p:not(.service-kicker){ font-size:.98rem; margin-bottom:1.2em; }

.ticks{ list-style:none; padding:0; margin:auto 0 0; display:grid; gap:.55em; }
.ticks li{ position:relative; padding-left:1.6em; font-size:.92rem; font-weight:600; color:var(--navy); }
.ticks li::before{
  content:''; position:absolute; left:0; top:.52em;
  width:6px; height:10px; border:solid var(--pink); border-width:0 2.2px 2.2px 0; transform:rotate(45deg);
}

/* ── Promise strip ───────────────────────────────────────── */
.promise{ background:var(--navy); color:#fff; padding:clamp(56px,6vw,84px) 0; }
.promise-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:clamp(28px,3vw,44px); }
.promise-item{ position:relative; padding-top:14px; border-top:2px solid rgba(255,255,255,.16); }
.promise-num{
  font-family:var(--serif); font-size:.9rem; font-weight:700; color:var(--gold);
  letter-spacing:.1em; display:block; margin-bottom:.7em;
}
.promise-item h3{ color:#fff; font-size:1.22rem; margin-bottom:.4em; }
.promise-item p{ color:rgba(255,255,255,.72); font-size:.93rem; margin:0; }

/* ── About ───────────────────────────────────────────────── */
.about{ background:linear-gradient(180deg,var(--cream) 0%, var(--pink-wash) 100%); }
.about-grid{ display:grid; grid-template-columns:.85fr 1fr; gap:clamp(36px,6vw,90px); align-items:center; }

.about-media{ position:relative; }
.about-media img{
  width:100%; aspect-ratio:4/5; object-fit:cover;
  border-radius:var(--r-lg); box-shadow:var(--shadow-lg);
  position:relative; z-index:1;
}
/* Offset gold frame. Must stay at z-index 0 (not -1) or it paints
   behind the section background and disappears. */
.about-media::before{
  content:''; position:absolute; inset:22px -22px -22px 22px; z-index:0;
  border:2.5px solid var(--gold); border-radius:var(--r-lg);
}
.about-seal{
  position:absolute; right:-26px; bottom:20px; z-index:2;
  width:clamp(124px,15vw,170px); aspect-ratio:1; border-radius:50%;
  background:#fff; box-shadow:var(--shadow-lg);
  display:grid; place-items:center; padding:9px;
  animation:sealIn .9s var(--ease) both .4s;
}
.about-seal img{ width:100%; height:auto; }
@keyframes sealIn{ from{ opacity:0; transform:scale(.82) rotate(-8deg); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion:reduce){ .about-seal{ animation:none; } }

.about-body h2{ margin-bottom:.55em; }
.about-quote{
  margin:2em 0; padding:1.4em 0 1.4em 1.8em; border-left:3px solid var(--gold); position:relative;
  font-family:var(--serif); font-style:italic; font-size:1.45rem; color:var(--navy); line-height:1.35;
}
.about-quote .quote-mark{ font-size:2.4rem; color:var(--pink); line-height:0; position:relative; top:.22em; margin-right:.06em; }
.about-quote cite{ display:block; font-family:var(--sans); font-style:normal; font-size:.86rem; font-weight:700; color:var(--body); margin-top:.7em; letter-spacing:.02em; }

/* ── Transformation: video + before/after ────────────────── */
.transform{
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(195,26,87,.28) 0%, rgba(195,26,87,0) 60%),
    var(--navy);
  color:#fff;
}

.transform-video-wrap{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); background:#000;
  border:1px solid rgba(255,255,255,.12);
}
.transform-video{ width:100%; display:block; aspect-ratio:16/9; object-fit:cover; }

.video-toggle{
  position:absolute; right:16px; bottom:16px; z-index:2;
  width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.3);
  background:rgba(22,23,63,.55); backdrop-filter:blur(8px); cursor:pointer;
  display:grid; place-items:center;
  transition:background .3s, transform .3s var(--ease);
}
.video-toggle svg{ width:18px; height:18px; fill:#fff; }
.video-toggle:hover{ background:var(--pink); transform:scale(1.06); }

.video-tag{
  position:absolute; left:16px; top:16px; z-index:2;
  padding:.5em 1.1em; border-radius:100px;
  background:rgba(22,23,63,.6); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.22);
  font-size:.78rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#fff;
}

.ba-block{ margin-top:clamp(30px,4vw,52px); }
.ba-hint{
  text-align:center; font-size:.82rem; font-weight:800; letter-spacing:.14em;
  text-transform:uppercase; color:var(--gold-light); margin:0 0 1.1em;
}

.ba{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-lg); border:1px solid rgba(255,255,255,.12);
  aspect-ratio:16/9; touch-action:none; cursor:ew-resize; user-select:none;
  --pos:50;
}
.ba img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  pointer-events:none; -webkit-user-drag:none;
}
.ba-after{ clip-path:inset(0 0 0 50%); }

.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; width:3px; margin-left:-1.5px;
  background:#fff; box-shadow:0 0 18px rgba(0,0,0,.45); pointer-events:none; z-index:3;
}
.ba-handle i{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:52px; height:52px; border-radius:50%; background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.35);
  display:grid; place-items:center;
}
.ba-handle i::before, .ba-handle i::after{
  content:''; position:absolute;
  width:8px; height:8px; border:solid var(--pink); border-width:2.5px 2.5px 0 0;
}
.ba-handle i::before{ transform:rotate(-135deg); left:13px; }
.ba-handle i::after{ transform:rotate(45deg); right:13px; }

.ba-label{
  position:absolute; bottom:16px; z-index:2;
  padding:.45em 1.1em; border-radius:100px;
  font-size:.74rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color:#fff;
  backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.25);
  transition:opacity .3s;
}
.ba-label-before{ left:16px; background:rgba(22,23,63,.62); }
.ba-label-after{ right:16px; background:rgba(195,26,87,.75); }

/* Fade each label out when the divider slides over it */
.ba-label-before{ opacity:clamp(0, calc((var(--pos) - 8) / 12), 1); }
.ba-label-after{ opacity:clamp(0, calc((92 - var(--pos)) / 12), 1); }

/* The range input is the accessible control — visually hidden but keyboard-usable */
.ba-range{
  position:absolute; inset:0; width:100%; height:100%; z-index:4;
  margin:0; opacity:0; cursor:ew-resize; appearance:none; background:transparent;
}
.ba-range:focus-visible{ opacity:1; outline:3px solid var(--gold); outline-offset:3px; }

/* ── Gallery ─────────────────────────────────────────────── */
.work{ background:var(--pink-wash); }
.gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:190px; gap:clamp(12px,1.4vw,18px); }
.g{ margin:0; position:relative; overflow:hidden; border-radius:var(--r); box-shadow:var(--shadow); background:var(--cream-deep); }
.g img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.g:hover img{ transform:scale(1.06); }
.g figcaption{
  position:absolute; inset:auto 0 0 0; padding:34px 18px 16px;
  background:linear-gradient(180deg,rgba(22,23,63,0) 0%, rgba(22,23,63,.88) 100%);
  color:#fff; font-weight:700; font-size:.92rem; letter-spacing:.01em;
  transform:translateY(6px); opacity:0; transition:transform .4s var(--ease), opacity .4s;
}
.g:hover figcaption, .g:focus-within figcaption{ transform:none; opacity:1; }
.g1{ grid-column:span 2; grid-row:span 2; }
.g2{ grid-column:span 2; grid-row:span 1; }
.g3{ grid-column:span 1; grid-row:span 1; }
.g4{ grid-column:span 1; grid-row:span 1; }
.g5{ grid-column:span 2; grid-row:span 1; }
.g6{ grid-column:span 2; grid-row:span 1; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials{
  background:
    linear-gradient(160deg, rgba(152,6,63,.55) 0%, rgba(22,23,63,.94) 55%),
    var(--navy);
  color:#fff;
}
/* Full-bleed looping carousel. The edges fade out so cards enter and leave
   softly instead of being chopped off at the viewport. */
.testi-carousel{
  margin-top:clamp(30px,4vw,46px);
  overflow-x:auto; overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 5%,#000 95%,transparent 100%);
          mask-image:linear-gradient(90deg,transparent 0,#000 5%,#000 95%,transparent 100%);
}
.testi-carousel::-webkit-scrollbar{ display:none; }

.testi-track{
  display:flex; align-items:stretch;
  width:max-content;
  padding-inline:clamp(20px,5vw,40px);
}

/* JS clones the cards and switches this on, giving a seamless -50% loop.
   Spacing is margin (not gap) so the two halves are exactly equal width —
   with gap, the loop point drifts by half a gap and visibly stutters. */
.testi-carousel.is-looping{ overflow:hidden; }
.testi-carousel.is-looping .testi-track{
  padding-inline:0;
  animation:testiScroll 68s linear infinite;
}
.testi-carousel.is-looping:hover .testi-track,
.testi-carousel.is-looping:focus-within .testi-track{ animation-play-state:paused; }
@keyframes testiScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

.testi{
  flex:0 0 auto;
  width:clamp(272px,78vw,376px);
  margin:0 clamp(16px,1.8vw,24px) 0 0;
  padding:clamp(26px,2.6vw,34px);
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14);
  border-radius:var(--r-lg); backdrop-filter:blur(8px);
  display:flex; flex-direction:column;          /* so the name can sit at the bottom */
  transition:transform .4s var(--ease), background .4s, border-color .4s;
}
.testi:hover{ transform:translateY(-6px); background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.26); }
.stars{ color:var(--gold-light); font-size:1.15rem; letter-spacing:.12em; margin-bottom:.8em; }
.testi p{ color:rgba(255,255,255,.9); font-size:1.02rem; font-style:italic; margin-bottom:1.4em; }
/* margin-top:auto pins every name to the bottom, so they line up across
   cards regardless of how long each review is. */
.testi cite{
  margin-top:auto;
  font-style:normal; font-weight:800; font-size:.85rem;
  letter-spacing:.06em; text-transform:uppercase; color:var(--gold);
}

@media (prefers-reduced-motion:reduce){
  .testi-carousel.is-looping{ overflow-x:auto; }
  .testi-carousel.is-looping .testi-track{ animation:none; }
}

/* ── Areas ───────────────────────────────────────────────── */
.areas{ background:var(--cream); }
.area-chips{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; max-width:900px; margin:0 auto; }
.area-chips span{
  padding:.72em 1.5em; border-radius:100px; background:#fff; border:1.5px solid rgba(22,23,63,.1);
  font-weight:700; font-size:.94rem; color:var(--navy); box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), border-color .3s, color .3s, background .3s;
}
.area-chips span:hover{ transform:translateY(-3px); border-color:var(--pink); color:var(--pink); background:var(--pink-wash); }

/* ── Quote / contact ─────────────────────────────────────── */
.quote{
  background:
    radial-gradient(1000px 600px at 12% 0%, rgba(195,26,87,.35) 0%, rgba(195,26,87,0) 62%),
    var(--navy);
  color:#fff;
}
.quote-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:clamp(38px,5vw,76px); align-items:start; }
.quote-intro h2{ color:#fff; }
.quote-intro h2 em{ color:var(--gold-light); }
.quote-intro > p{ color:rgba(255,255,255,.78); font-size:1.08rem; max-width:44ch; }

.contact-list{ list-style:none; padding:0; margin:2.2em 0; display:grid; gap:1.1em; }
.contact-list li{ display:flex; align-items:center; gap:1em; }
.ci{
  width:46px; height:46px; flex:0 0 46px; border-radius:14px; display:grid; place-items:center;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
}
.ci svg{ width:20px; height:20px; fill:var(--gold-light); }
.contact-list strong{
  display:block; font-size:.7rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:.15em;
}
.contact-list a, .contact-list div span{ color:#fff; font-weight:700; font-size:1.05rem; }
.contact-list a:hover{ color:var(--gold-light); }

.socials{ display:flex; gap:12px; }
.socials a{
  width:46px; height:46px; border-radius:14px; display:grid; place-items:center;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18);
  transition:background .3s, transform .3s var(--ease), border-color .3s;
}
.socials svg{ width:21px; height:21px; fill:#fff; }
.socials a:hover{ background:var(--pink); border-color:var(--pink); transform:translateY(-3px); }

.quote-form{
  background:#fff; border-radius:var(--r-lg); padding:clamp(26px,3vw,42px);
  box-shadow:var(--shadow-lg); display:grid; gap:1.05rem;
}
.field{ display:grid; gap:.4rem; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:1.05rem; }
.field label{ font-size:.82rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--navy); }
.field .opt{ font-weight:600; text-transform:none; letter-spacing:0; color:var(--navy-soft); }
.field input, .field select, .field textarea{
  font-family:var(--sans); font-size:1rem; color:var(--ink);
  padding:.9em 1.05em; border:1.5px solid rgba(22,23,63,.16); border-radius:12px;
  background:var(--cream); width:100%; transition:border-color .25s, box-shadow .25s, background .25s;
}
.field textarea{ resize:vertical; min-height:110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--pink); background:#fff;
  box-shadow:0 0 0 4px rgba(195,26,87,.12);
}
.field input:user-invalid, .field select:user-invalid{ border-color:#D64545; }
.form-note{ font-size:.84rem; color:var(--navy-soft); margin:.2em 0 0; text-align:center; line-height:1.55; }
.form-status{ margin:0; font-size:.9rem; font-weight:700; color:var(--pink); text-align:center; min-height:1.2em; }

/* ═══ Blog ════════════════════════════════════════════════ */

.crumbs{ font-size:.86rem; font-weight:600; color:var(--navy-soft); margin-bottom:1.4em; }
.crumbs a{ color:var(--navy-soft); }
.crumbs a:hover{ color:var(--pink); }
.crumbs span{ margin:0 .35em; }
.crumbs [aria-current]{ color:var(--navy); font-weight:700; margin:0; }

.blog-hero{
  background:linear-gradient(180deg,var(--cream) 0%, var(--pink-wash) 100%);
  padding-bottom:clamp(30px,4vw,48px);
}
.blog-hero h1{ font-size:clamp(2.3rem,5vw,3.7rem); max-width:16ch; margin-bottom:.35em; }
.blog-hero .lede{ font-size:1.1rem; max-width:60ch; margin:0; }

.blog-list{ background:var(--pink-wash); padding-top:clamp(30px,4vw,50px); }

.post-grid{ display:grid; grid-template-columns:1fr; gap:clamp(22px,2.6vw,32px); }
@media (min-width:700px){ .post-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1080px){ .post-grid{ grid-template-columns:repeat(3,1fr); } }

.post-card{
  background:#fff; border-radius:var(--r-lg); overflow:hidden;
  border:1px solid rgba(22,23,63,.06); box-shadow:var(--shadow);
  display:flex; flex-direction:column;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease);
}
.post-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.post-card-img{ display:block; aspect-ratio:16/9; overflow:hidden; background:var(--cream-deep); }
.post-card-img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.post-card:hover .post-card-img img{ transform:scale(1.06); }
.post-card-body{ padding:clamp(22px,2.2vw,28px); display:flex; flex-direction:column; flex:1; }
.post-card-body h2{ font-size:1.28rem; margin:.5em 0 .45em; }
.post-card-body h2 a{ color:var(--ink); }
.post-card-body h2 a:hover{ color:var(--pink); }
.post-card-body > p{ font-size:.95rem; margin-bottom:1.2em; }

.rel-cat{
  display:inline-block; font-size:.68rem; font-weight:800; letter-spacing:.16em;
  text-transform:uppercase; color:var(--pink);
  background:var(--pink-wash); padding:.42em 1em; border-radius:100px;
}
.post-meta{
  font-size:.84rem; font-weight:600; color:var(--navy-soft); margin:auto 0 0;
}
.post-meta span{ margin:0 .3em; }

/* ── Single post ─────────────────────────────────────────── */
.post{ background:var(--cream); padding-bottom:clamp(60px,7vw,100px); }
.post-head{ padding-top:clamp(34px,4.5vw,60px); max-width:820px; }
.post-head h1{
  font-size:clamp(2.1rem,4.4vw,3.3rem); margin-bottom:.4em; letter-spacing:-.02em;
}
.post-head .post-meta{ margin:0; }

.post-hero{
  width:100%; max-width:1000px; margin:clamp(26px,3vw,40px) auto clamp(30px,4vw,52px);
  aspect-ratio:16/9; object-fit:cover;
  border-radius:var(--r-lg); box-shadow:var(--shadow-lg);
}

.post-body{
  width:100%; max-width:720px; margin-inline:auto;
  padding-inline:clamp(20px,5vw,40px);
  font-size:1.06rem; line-height:1.78;
}
.post-body h2{
  font-size:clamp(1.5rem,2.4vw,1.95rem); margin:1.9em 0 .5em;
  padding-top:.5em; border-top:2px solid rgba(195,26,87,.16);
}
.post-body h3{ font-size:1.2rem; margin:1.6em 0 .35em; color:var(--pink); }
.post-body p{ margin:0 0 1.15em; }
.post-body ul{ margin:0 0 1.5em; padding-left:0; list-style:none; }
.post-body li{ position:relative; padding-left:1.7em; margin-bottom:.65em; }
.post-body li::before{
  content:''; position:absolute; left:.15em; top:.62em;
  width:7px; height:7px; border-radius:50%; background:var(--gold);
}
.post-body strong{ color:var(--navy); font-weight:800; }
.post-body em{ color:var(--pink); font-style:italic; }
.post-body a{ font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.post-body a:hover{ color:var(--pink-deep); }

.post-cta{
  max-width:900px; margin:clamp(46px,6vw,80px) auto 0;
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(195,26,87,.34) 0%, rgba(195,26,87,0) 62%),
    var(--navy);
  color:#fff; border-radius:var(--r-lg); padding:clamp(30px,4vw,52px);
  display:grid; gap:clamp(20px,3vw,36px); align-items:center;
}
@media (min-width:800px){ .post-cta{ grid-template-columns:1.4fr auto; } }
.post-cta h2{ color:#fff; font-size:clamp(1.5rem,2.4vw,2rem); margin:0 0 .4em; }
.post-cta p{ color:rgba(255,255,255,.8); margin:0; font-size:1rem; }
.post-cta-actions{ display:flex; flex-wrap:wrap; gap:12px; }

.related{ max-width:1000px; margin-top:clamp(50px,6vw,84px); }
.related-title{ font-size:1.6rem; margin-bottom:1em; }
.rel-grid{ display:grid; grid-template-columns:1fr; gap:20px; }
@media (min-width:640px){ .rel-grid{ grid-template-columns:repeat(3,1fr); } }
.rel-card{
  background:#fff; border-radius:var(--r); overflow:hidden;
  border:1px solid rgba(22,23,63,.06); box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rel-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); }
.rel-card img{ width:100%; aspect-ratio:16/9; object-fit:cover; }
.rel-body{ padding:16px 18px 20px; }
.rel-body h3{ font-size:1.02rem; margin:.6em 0 0; line-height:1.3; color:var(--ink); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.66); position:relative; }
.paint-rule-top{ position:absolute; inset:0 0 auto; }
.footer-inner{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:clamp(28px,4vw,52px);
  padding-top:clamp(56px,6vw,84px); padding-bottom:clamp(36px,4vw,54px);
}
.brand-footer .brand-deco{ color:#fff; }
.brand-footer .brand-by{ color:var(--gold); }
.brand-footer .brand-della{ color:var(--pink-soft); }
.footer-tag{ font-family:var(--script); font-size:1.4rem; color:var(--gold-light); margin:.6em 0 0; }
.site-footer h4{
  color:#fff; font-family:var(--sans); font-size:.74rem; font-weight:800;
  letter-spacing:.18em; text-transform:uppercase; margin:0 0 1.1em;
}
.footer-nav, .footer-contact{ display:grid; gap:.55em; align-content:start; }
.footer-nav a, .footer-contact a, .footer-nav span{ color:rgba(255,255,255,.66); font-size:.94rem; }
.footer-nav a:hover, .footer-contact a:hover{ color:var(--gold-light); }
.socials-sm{ margin-top:.7em; }
.socials-sm a{ width:40px; height:40px; border-radius:12px; }
.footer-base{
  display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:space-between;
  border-top:1px solid rgba(255,255,255,.12); padding-top:22px; padding-bottom:26px;
  font-size:.84rem;
}
.footer-base p{ margin:0; }

/* ── Sticky mobile call bar ──────────────────────────────── */
.call-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:90;
  display:none; gap:10px; padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(255,249,245,.94); backdrop-filter:blur(14px);
  box-shadow:0 -6px 26px -12px rgba(22,23,63,.35);
}
.call-bar .btn{ flex:1; padding:.92em 1em; font-size:.94rem; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ═══ Responsive ═══════════════════════════════════════════ */
@media (max-width:1000px){
  .about-grid{ grid-template-columns:1fr; }
  .about-media{ max-width:440px; }
  .about-media::before{ inset:18px -18px -18px 18px; }
  .quote-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; }
  .g1,.g2,.g5,.g6{ grid-column:span 2; }
  .g1{ grid-row:span 2; }
}

@media (max-width:820px){
  .header-phone{ display:none; }
  .burger{ display:block; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--cream); padding:8px 20px 22px;
    box-shadow:0 20px 30px -18px rgba(22,23,63,.4);
    clip-path:inset(0 0 100% 0); transition:clip-path .45s var(--ease);
  }
  .nav.open{ clip-path:inset(0 0 0 0); }
  .nav a{ padding:15px 0; border-bottom:1px solid rgba(22,23,63,.08); font-size:1.05rem; }
  .nav a:not(.nav-cta)::after{ display:none; }
  .nav-cta{ margin-top:16px; border-bottom:0; text-align:center; padding:1em; }
  .hero{ min-height:auto; }
  .hero-inner{ padding-bottom:clamp(96px,14vw,130px); }
  .hero-swatches span{ height:8px; }
  .call-bar{ display:flex; }
  body{ padding-bottom:0; }
  .site-footer{ padding-bottom:78px; }
}

@media (max-width:560px){
  .footer-inner{ grid-template-columns:1fr; }
  .field-row{ grid-template-columns:1fr; }
  .hero-badges{ gap:.55em 1.3em; }
  .hero-badges li{ font-size:.87rem; }
  .btn{ padding:1em 1.6em; font-size:.94rem; }
  .hero-actions .btn{ flex:1 1 100%; }
  .gallery{ grid-template-columns:1fr; grid-auto-rows:200px; }
  .g1,.g2,.g3,.g4,.g5,.g6{ grid-column:span 1; grid-row:span 1; }
  .about-seal{ right:-10px; bottom:12px; }
  .service-icon{ width:50px; height:50px; border-radius:15px; }
}

@media print{
  .site-header,.call-bar,.hero-media,.marquee,.quote-form{ display:none !important; }
  body{ background:#fff; }
}
