/* ══════════════════════════════════════════════════════════════════════
   SAVVY AV GROUP — main.css
   White-label AV design & engineering consultancy.
   Design system: black + gold, Cormorant Garamond + Jost.
   ══════════════════════════════════════════════════════════════════════ */

/* ─── RESET ────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}

/* ─── TOKENS ───────────────────────────────────────────────────────── */
:root{
  --white:   #f0f4f8;   /* headings + primary text (cool white) */
  --char:    #12141d;   /* deepest navy */
  --bg:      #1b2030;   /* page background (navy) */
  --frost:   #202637;   /* subtle navy panels */
  --mist:    #283044;   /* card backgrounds (navy) */
  --mist-lt: #323b54;   /* card hover */
  --border:  #39435d;   /* borders + dividers (navy) */
  --silver:  #5d6884;   /* muted / faint text (blue-grey) */
  --slate:   #99a5bd;   /* secondary body text (light blue-grey) */
  --btn:     #c9a96e;   /* gold CTA */
  --accent:  #c9a96e;   /* gold accent */
  --gold-lt: #ddc489;   /* lighter gold (hover) */
  --line:    rgba(255,255,255,.07);
}

/* ─── BASE ─────────────────────────────────────────────────────────── */
body{
  background:var(--bg);
  color:var(--slate);
  font-family:'Jost',sans-serif;
  font-weight:300;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Cormorant Garamond',serif;font-weight:300;line-height:1.1;color:var(--white)}
em{font-style:italic}
a{color:inherit}
img{max-width:100%}

.label{
  display:inline-block;
  font-family:'Jost',sans-serif;
  font-size:.63rem;font-weight:500;
  letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent);
}

/* ─── LAYOUT ───────────────────────────────────────────────────────── */
.container{width:90%;max-width:1240px;margin:0 auto}
.container--wide{width:92%;max-width:1440px;margin:0 auto}
.container--narrow{width:90%;max-width:880px;margin:0 auto}
section{padding:clamp(5rem,10vw,10rem) 0}

/* ─── ANIMATIONS ───────────────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .85s cubic-bezier(.16,1,.3,1),transform .85s cubic-bezier(.16,1,.3,1)}
.reveal.in{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}
.d4{transition-delay:.32s}.d5{transition-delay:.4s}.d6{transition-delay:.48s}
@keyframes pulse{0%,100%{opacity:.3}50%{opacity:1}}

/* immersive load-in — hero & page-hero content rises in sequence */
@keyframes riseIn{from{opacity:0;transform:translateY(38px)}to{opacity:1;transform:none}}
.hero-content>*,.page-hero-inner>*{opacity:0;animation:riseIn 1.1s cubic-bezier(.16,1,.3,1) forwards}
.hero-content>:nth-child(1),.page-hero-inner>:nth-child(1){animation-delay:.15s}
.hero-content>:nth-child(2),.page-hero-inner>:nth-child(2){animation-delay:.32s}
.hero-content>:nth-child(3),.page-hero-inner>:nth-child(3){animation-delay:.5s}
.hero-content>:nth-child(4),.page-hero-inner>:nth-child(4){animation-delay:.66s}
.hero-content>:nth-child(5){animation-delay:.8s}
.hero-scroll-hint{opacity:0;animation:riseIn 1s ease 1s forwards}
/* headings clip-rise as they reveal on scroll */
.reveal h2,.reveal h3{}
@media(prefers-reduced-motion:reduce){
  .hero-content>*,.page-hero-inner>*,.hero-scroll-hint{animation:none;opacity:1}
  .reveal{transition:none;opacity:1;transform:none}
}

/* ─── NAV ──────────────────────────────────────────────────────────── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  padding:1.5rem 0;
  transition:background .4s,padding .4s,box-shadow .4s;
}
nav.solid{
  background:rgba(15,19,30,.93);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  padding:1rem 0;
  box-shadow:0 1px 0 var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;width:92%;max-width:1440px;margin:0 auto}
.logo{text-decoration:none;display:flex;align-items:center;gap:1.1rem}
/* The mark is sized to match the WORDMARK BLOCK beside it exactly, so its top and bottom
   line up with the text rather than sitting proud of it. Every line-height in the wordmark
   is 1 and the gap is .28rem, so the block height is simply:
       name font-size + .28rem + sub font-size
   Keep --mark-h in step with .logo-name / .logo-sub whenever either is re-sized. */
.logo{--mark-h:2.98rem}                     /* 1.7rem + .28rem + 1rem */
/* the image is used EXACTLY as supplied — no rounding, no filter, no overlay.
   object-fit:contain only guards a future non-square file against distortion. */
.logo-mark{height:var(--mark-h);width:var(--mark-h);flex-shrink:0;display:block;object-fit:contain}
.logo-text{display:flex;flex-direction:column;gap:.28rem}
.logo-name{font-family:'Jost',sans-serif;font-size:1.7rem;font-weight:400;letter-spacing:.22em;text-transform:uppercase;color:var(--white);line-height:1;white-space:nowrap}
.logo-sub{font-size:1rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--silver);line-height:1;white-space:nowrap}

.nav-links{display:flex;align-items:center;gap:2.4rem;list-style:none}
.nav-links a{font-size:.68rem;font-weight:400;letter-spacing:.14em;text-transform:uppercase;text-decoration:none;color:var(--slate);transition:color .25s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--white)}
.nav-cta{
  background:var(--btn) !important;border:1px solid var(--btn);
  color:#12141d !important;padding:.6rem 1.4rem;
  transition:background .25s,border-color .25s !important;
}
.nav-cta:hover{background:var(--gold-lt) !important;border-color:var(--gold-lt)}

.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px}
.hamburger span{display:block;width:22px;height:1px;background:var(--white);transition:background .3s}

/* ─── MOBILE NAV ───────────────────────────────────────────────────── */
.mobile-nav{
  position:fixed;inset:0;background:var(--char);z-index:300;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;
  transform:translateX(100%);transition:transform .5s cubic-bezier(.16,1,.3,1);
}
.mobile-nav.open{transform:none}
.mobile-nav a{font-family:'Cormorant Garamond',serif;font-size:2.3rem;font-weight:300;color:var(--white);text-decoration:none;transition:color .25s}
.mobile-nav a:hover{color:var(--accent)}
.mobile-close{position:absolute;top:1.5rem;right:5%;background:none;border:none;font-size:1.4rem;color:var(--slate);cursor:pointer;padding:.5rem}

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn-solid{
  display:inline-block;background:var(--btn);color:#12141d;text-decoration:none;
  font-size:.68rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;
  padding:1.05rem 2.2rem;border:none;cursor:pointer;font-family:'Jost',sans-serif;
  transition:background .25s,color .25s,transform .2s;
}
.btn-solid:hover{background:var(--gold-lt);transform:translateY(-1px)}
.btn-outline{
  display:inline-flex;align-items:center;gap:.75rem;text-decoration:none;
  font-size:.68rem;font-weight:400;letter-spacing:.14em;text-transform:uppercase;
  color:var(--slate);background:none;border:none;cursor:pointer;font-family:'Jost',sans-serif;
  transition:color .25s;
}
.btn-outline::after{content:'';width:2.5rem;height:1px;background:currentColor;transition:width .3s}
.btn-outline:hover{color:var(--white)}
.btn-outline:hover::after{width:3.5rem}

/* ─── SECTION HEADER ───────────────────────────────────────────────── */
.section-label{margin-bottom:.8rem}
.section-header{max-width:none;margin:0 auto clamp(3rem,5vw,5rem);text-align:center}
.section-header h2{font-size:clamp(2.6rem,5vw,4.6rem);margin-top:.5rem;margin-bottom:1.1rem}
.section-header p{font-size:clamp(1.05rem,1.4vw,1.25rem);color:var(--slate);line-height:1.75;max-width:820px;margin-left:auto;margin-right:auto}
.section-header--left{text-align:left}
.section-header--left p{margin-left:0;max-width:760px}
.section-header--center{text-align:center}

/* ─── HERO (HOME) ──────────────────────────────────────────────────── */
.hero{position:relative;height:100svh;min-height:680px;display:flex;align-items:flex-end;overflow:hidden}
.hero-img{position:absolute;inset:0;background:center/cover no-repeat;transform:scale(1.05);transition:transform 10s ease}
.hero-img.loaded{transform:scale(1)}
.hero-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(to top, rgba(20,25,38,.92) 0%, rgba(20,25,38,.45) 55%, rgba(20,25,38,.2) 100%),
    linear-gradient(100deg, rgba(20,25,38,.7) 0%, transparent 60%);
}
.hero-content{position:relative;z-index:2;width:92%;max-width:1440px;margin:0 auto;padding-bottom:clamp(4rem,8vh,7rem)}
.hero-eyebrow{display:flex;align-items:center;gap:1rem;margin-bottom:1.6rem}
.hero-eyebrow::before{content:'';width:2.5rem;height:1px;background:rgba(255,255,255,.4)}
.hero-eyebrow .label{color:rgba(255,255,255,.6)}
.hero h1{font-size:clamp(3rem,6.5vw,6.4rem);max-width:16ch;margin-bottom:1.8rem}
.hero-desc{font-size:clamp(1.1rem,1.5vw,1.3rem);color:rgba(255,255,255,.82);max-width:68ch;line-height:1.7;margin-bottom:3rem}
.hero-btns{display:flex;align-items:center;gap:2rem;flex-wrap:wrap}
.hero-scroll-hint{
  position:absolute;right:4%;bottom:2.5rem;z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
  writing-mode:vertical-rl;font-size:.55rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.35);
}
.hero-scroll-hint::after{content:'';width:1px;height:3.5rem;background:linear-gradient(to bottom,rgba(255,255,255,.4),transparent);animation:pulse 2.5s ease-in-out infinite}

/* ─── PAGE HERO (INNER) ────────────────────────────────────────────── */
.page-hero{position:relative;padding:clamp(9rem,16vw,14rem) 0 clamp(4rem,7vw,7rem);overflow:hidden;border-bottom:1px solid var(--border)}
.page-hero-img{position:absolute;inset:0;background:center/cover no-repeat;opacity:1}
.page-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg, rgba(20,25,38,.93) 0%, rgba(20,25,38,.8) 38%, rgba(20,25,38,.5) 64%, rgba(20,25,38,.12) 100%)}
.page-hero-inner{position:relative;z-index:2}
.page-hero h1{font-size:clamp(2.6rem,5.5vw,5rem);max-width:18ch;margin:1.4rem 0 1.5rem}
.page-hero .lead{font-size:clamp(1.15rem,1.55vw,1.4rem);color:var(--slate);max-width:72ch;line-height:1.75}
.breadcrumb{display:flex;gap:.6rem;align-items:center;font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;color:var(--silver)}
.breadcrumb a{color:var(--silver);text-decoration:none;transition:color .25s}
.breadcrumb a:hover{color:var(--accent)}

/* ─── MARQUEE ──────────────────────────────────────────────────────── */
.marquee-strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--frost);overflow:hidden;padding:.85rem 0}
.marquee-track{display:flex;gap:4rem;animation:marquee 72s linear infinite;width:max-content}
.marquee-track:hover{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-item{display:flex;align-items:center;gap:.8rem;font-size:.62rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--slate);white-space:nowrap}
.marquee-item::before{content:'';width:4px;height:4px;background:var(--accent);opacity:.55;flex-shrink:0;transform:rotate(45deg)}

/* ─── STATS ────────────────────────────────────────────────────────── */
.stats{background:var(--char);padding:3.5rem 0}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);border-left:1px solid var(--line)}
.stat-item{padding:1.5rem 2.5rem;border-right:1px solid var(--line);text-align:center}
.stat-num{font-family:"Cormorant Garamond",serif;font-size:clamp(2.2rem,3.6vw,3.1rem);font-weight:300;color:var(--btn);line-height:1;height:clamp(2.8rem,4.4vw,3.8rem);display:flex;align-items:center;justify-content:center;font-variant-numeric:lining-nums;font-feature-settings:"lnum" 1}
.stat-label{font-size:.6rem;font-weight:400;letter-spacing:.18em;text-transform:uppercase;color:var(--silver);display:block;margin-top:.45rem}

/* ─── PILLARS (three service pillars) ──────────────────────────────── */
.pillars{background:#202739}
.pillars-grid{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--border)}
.pillar{
  padding:clamp(2rem,3.5vw,3.5rem);border-right:1px solid var(--border);
  position:relative;overflow:hidden;background:var(--mist);transition:background .4s;
  display:flex;flex-direction:column;text-decoration:none;
}
.pillar:last-child{border-right:none}
.pillar::before{content:'';position:absolute;inset:0;background:var(--mist-lt);transform:translateY(100%);transition:transform .55s cubic-bezier(.16,1,.3,1)}
.pillar:hover::before{transform:none}
.pillar>*{position:relative;z-index:1}
.pillar-num{font-family:'Cormorant Garamond',serif;font-size:3.5rem;font-weight:300;color:rgba(201,169,110,.18);line-height:1;margin-bottom:1.3rem;transition:color .4s}
.pillar:hover .pillar-num{color:rgba(201,169,110,.32)}
.pillar-tag{font-size:.58rem;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--accent);display:block;margin-bottom:.7rem}
.pillar h3{font-size:clamp(1.6rem,2.2vw,2.1rem);color:var(--white);margin-bottom:.9rem}
.pillar p{font-size:.97rem;color:var(--slate);line-height:1.75;margin-bottom:1.6rem}
.pillar-list{list-style:none;margin-bottom:2rem;display:flex;flex-direction:column;gap:.55rem}
.pillar-list li{font-size:.8rem;color:var(--silver);padding-left:1.1rem;position:relative}
.pillar-list li::before{content:'';position:absolute;left:0;top:.6rem;width:.45rem;height:1px;background:var(--accent)}
.pillar-link{margin-top:auto;display:inline-flex;align-items:center;gap:.6rem;font-size:.62rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--accent)}
.pillar-link::after{content:'';width:1.5rem;height:1px;background:currentColor;transition:width .3s}
.pillar:hover .pillar-link::after{width:2.5rem}

/* ─── AUDIENCE SPLIT (who we work with) ────────────────────────────── */
.audience{background:var(--frost)}
.audience-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border);margin-top:3rem}
.aud-card{background:var(--bg);padding:clamp(2rem,3vw,3rem);transition:background .35s}
.aud-card:hover{background:var(--mist)}
.aud-icon{width:40px;height:40px;color:var(--accent);margin-bottom:1.4rem}
.aud-card h3{font-size:1.5rem;color:var(--white);margin-bottom:.7rem}
.aud-card p{font-size:.94rem;color:var(--slate);line-height:1.75}

/* ─── PHILOSOPHY ───────────────────────────────────────────────────── */
.philosophy{background:var(--frost)}
.phil-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(3rem,6vw,7rem);align-items:center}
.phil-img-wrap{position:relative}
.phil-img{width:100%;aspect-ratio:4/5;object-fit:cover;display:block;filter:saturate(.85)}
.phil-badge{position:absolute;bottom:2rem;right:-1.5rem;background:var(--btn);color:#12141d;padding:1.2rem 1.5rem;text-align:center}
.phil-badge-num{font-family:'Cormorant Garamond',serif;font-size:2.2rem;font-weight:300;display:block;line-height:1}
.phil-badge-txt{font-size:.52rem;letter-spacing:.15em;text-transform:uppercase;display:block;margin-top:.25rem}
.phil-content h2{font-size:clamp(1.9rem,3.2vw,3.2rem);margin:.7rem 0 1.4rem}
.phil-content p{font-size:1.05rem;color:var(--slate);line-height:1.8;margin-bottom:1.1rem}
.phil-list{list-style:none;margin-top:2rem;display:flex;flex-direction:column;gap:.85rem}
.phil-list li{display:flex;align-items:flex-start;gap:.9rem;font-size:.97rem;color:var(--slate)}
.phil-list li::before{content:'';display:block;width:1.5rem;height:1px;background:var(--accent);flex-shrink:0;margin-top:.75rem}

/* ─── VALUE PROPS ──────────────────────────────────────────────────── */
.vprops{background:var(--bg)}
.vprop-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border)}
.vprop{background:var(--mist);padding:clamp(2rem,3vw,3rem)}
.vprop-n{font-family:'Cormorant Garamond',serif;font-size:2.6rem;font-weight:300;color:rgba(201,169,110,.25);line-height:1;margin-bottom:1.2rem}
.vprop h3{font-size:1.45rem;color:var(--white);margin-bottom:.8rem}
.vprop p{font-size:.94rem;color:var(--slate);line-height:1.75}

/* ─── DELIVERABLES ─────────────────────────────────────────────────── */
.deliverables{background:var(--frost)}
.deliv-block{border:1px solid var(--border);margin-top:2.5rem;background:var(--mist)}
.deliv-head{display:flex;align-items:baseline;gap:1.2rem;padding:1.8rem clamp(1.5rem,3vw,2.5rem);border-bottom:1px solid var(--border)}
.deliv-head .deliv-n{font-family:'Cormorant Garamond',serif;font-size:1.6rem;color:var(--accent);line-height:1}
.deliv-head h3{font-size:clamp(1.4rem,2vw,1.9rem);color:var(--white)}
.deliv-head p{font-size:.92rem;color:var(--silver);margin-top:.3rem}
.deliv-list{list-style:none;display:grid;grid-template-columns:repeat(2,1fr);gap:0}
.deliv-list li{
  display:flex;align-items:flex-start;gap:.85rem;
  font-size:.94rem;color:var(--slate);line-height:1.6;
  padding:1.1rem clamp(1.5rem,3vw,2.5rem);
  border-bottom:1px solid var(--border);border-right:1px solid var(--border);
}
.deliv-list li:nth-child(2n){border-right:none}
.deliv-list li svg{flex-shrink:0;margin-top:.15rem;color:var(--accent)}
.deliv-list li strong{color:var(--white);font-weight:400}

/* ─── PROCESS ──────────────────────────────────────────────────────── */
.process-section{background:#202739}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--border);border-right:none;margin-top:4rem}
.process-step{padding:clamp(2rem,3.5vw,3.5rem) clamp(1.5rem,2.5vw,2.5rem);border-right:1px solid var(--border)}
.step-n{font-family:'Cormorant Garamond',serif;font-size:3rem;font-weight:300;color:rgba(201,169,110,.2);line-height:1;margin-bottom:1.5rem}
.process-step h3{font-size:1.35rem;color:var(--white);margin-bottom:.7rem}
.process-step p{font-size:.92rem;color:var(--slate);line-height:1.7}

/* 10-step ladder */
.process-10{margin:4rem auto 0;max-width:860px;border-top:1px solid var(--border)}
.pstep{display:grid;grid-template-columns:5rem 1fr;gap:clamp(1.5rem,4vw,4rem);padding:1.8rem 0;border-bottom:1px solid var(--border);align-items:start}
.pstep-n{font-family:'Cormorant Garamond',serif;font-size:2rem;color:var(--accent);line-height:1}
.pstep h3{font-size:1.35rem;color:var(--white);margin-bottom:.4rem}
.pstep p{font-size:.95rem;color:var(--slate);line-height:1.7;max-width:60ch}

/* ─── COMPARE (independence) ───────────────────────────────────────── */
.compare-section{background:var(--bg)}
.compare{display:grid;grid-template-columns:1fr 1fr;border:1px solid var(--border);margin-top:3rem}
.compare-col{padding:clamp(2rem,4vw,3.5rem)}
.compare-col:first-child{border-right:1px solid var(--border);background:var(--frost)}
.compare-col.savvy{background:var(--mist)}
.compare-col h3{font-size:1.5rem;margin-bottom:.4rem}
.compare-col:first-child h3{color:var(--slate)}
.compare-col.savvy h3{color:var(--accent)}
.compare-col .sub{font-size:.62rem;letter-spacing:.16em;text-transform:uppercase;color:var(--silver);margin-bottom:1.8rem;display:block}
.compare-list{list-style:none;display:flex;flex-direction:column;gap:1rem}
.compare-list li{display:flex;align-items:flex-start;gap:.8rem;font-size:.95rem;color:var(--slate);line-height:1.6}
.compare-list li svg{flex-shrink:0;margin-top:.15rem}
.compare-col:first-child .compare-list li svg{color:var(--silver)}
.compare-col.savvy .compare-list li svg{color:var(--accent)}

/* ─── PLATFORMS ────────────────────────────────────────────────────── */
.platforms{background:var(--frost)}
.platforms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1px solid var(--border);margin-top:3rem}
.platform{background:var(--bg);padding:1.8rem 1rem;text-align:center;font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;color:var(--slate);transition:background .3s,color .3s}
.platform:hover{background:var(--mist);color:var(--white)}

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq-section{background:var(--bg)}
.faq-list{margin-top:3rem;border-top:1px solid var(--border)}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{
  width:100%;background:none;border:none;cursor:pointer;text-align:left;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;
  padding:1.6rem 0;font-family:'Cormorant Garamond',serif;font-size:clamp(1.1rem,1.6vw,1.4rem);
  color:var(--white);font-weight:300;transition:color .25s;
}
.faq-q:hover{color:var(--accent)}
.faq-icon{flex-shrink:0;width:1rem;height:1rem;position:relative}
.faq-icon::before,.faq-icon::after{content:'';position:absolute;background:var(--accent);transition:transform .3s}
.faq-icon::before{top:50%;left:0;width:100%;height:1px;transform:translateY(-50%)}
.faq-icon::after{left:50%;top:0;width:1px;height:100%;transform:translateX(-50%)}
.faq-item.open .faq-icon::after{transform:translateX(-50%) scaleY(0)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-a p{font-size:1rem;color:var(--slate);line-height:1.8;padding:0 0 1.6rem;max-width:75ch}

/* ─── FULL-BLEED FEATURE (image + overlaid text) ───────────────────── */
.cinema-section{position:relative;min-height:90vh;display:flex;align-items:center;overflow:hidden;background:var(--char) center/cover no-repeat}
.cinema-section::before{content:'';position:absolute;inset:0;z-index:0;
  background:linear-gradient(90deg, rgba(20,25,38,.95) 0%, rgba(20,25,38,.85) 36%, rgba(20,25,38,.45) 66%, rgba(20,25,38,.08) 100%)}
.cinema-section.right::before{
  background:linear-gradient(270deg, rgba(20,25,38,.95) 0%, rgba(20,25,38,.85) 36%, rgba(20,25,38,.45) 66%, rgba(20,25,38,.08) 100%)}
.cinema-inner{position:relative;z-index:1;width:92%;max-width:1440px;margin:0 auto;display:flex}
.cinema-section.right .cinema-inner{justify-content:flex-end}
.cinema-section.compact{min-height:64vh}
.cinema-content-side{width:min(580px,54%);display:flex;flex-direction:column;justify-content:center;padding:clamp(4rem,8vw,8rem) 0}
.cinema-content-side .label{color:var(--accent)}
.cinema-content-side h2{font-size:clamp(2.2rem,4.2vw,4.2rem);color:var(--white);margin:.8rem 0 1.5rem}
.cinema-content-side p{font-size:1.12rem;color:rgba(255,255,255,.72);line-height:1.8;margin-bottom:1rem}
.cinema-list{list-style:none;margin:1.8rem 0 3rem;display:flex;flex-direction:column;gap:.75rem}
.cinema-list li{font-size:.94rem;color:rgba(255,255,255,.5);padding-left:1.2rem;position:relative}
.cinema-list li::before{content:'—';position:absolute;left:0;color:rgba(255,255,255,.25)}
.btn-solid-inv{display:inline-block;background:var(--btn);color:#12141d;text-decoration:none;font-size:.68rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;padding:1.05rem 2.2rem;align-self:flex-start;transition:background .25s}
.btn-solid-inv:hover{background:var(--gold-lt)}

/* ─── GALLERY STRIP ────────────────────────────────────────────────── */
.gallery-strip{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1.4fr;height:clamp(220px,32vw,420px);overflow:hidden}
.gallery-strip img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.75)brightness(.9);transition:filter .5s,transform .6s cubic-bezier(.16,1,.3,1);transform:scale(1.03)}
.gallery-strip img:hover{filter:saturate(1)brightness(1.02);transform:scale(1)}

/* ─── TESTIMONIALS ─────────────────────────────────────────────────── */
.testimonials-section{background:var(--frost)}
.review-rating{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1.8rem;flex-wrap:wrap}
.rr-score{font-family:'Cormorant Garamond',serif;font-size:2.2rem;color:var(--white);line-height:1}
.rr-stars{color:var(--accent);letter-spacing:.15em;font-size:1.05rem}
.review-rating a{color:var(--slate);font-size:.78rem;letter-spacing:.05em;text-decoration:none;border-bottom:1px solid var(--border);padding-bottom:2px}
.review-rating a:hover{color:var(--accent);border-color:var(--accent)}
.testi-masonry{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start;margin-top:3.5rem}
@media(max-width:1024px){.testi-masonry{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.testi-masonry{grid-template-columns:1fr}}
.testi-card{display:flex;flex-direction:column;border:1px solid var(--border);background:var(--mist);padding:1.7rem 1.6rem;margin:0;border-radius:2px}
.testi-stars{color:var(--accent);letter-spacing:.18em;font-size:.8rem;margin-bottom:.9rem}
.testi-q{font-family:'Cormorant Garamond',serif;font-size:clamp(1.02rem,1.3vw,1.18rem);font-style:italic;font-weight:300;color:var(--white);line-height:1.55;margin-bottom:.9rem;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:6;overflow:hidden;min-height:9.3em}
.testi-q::before{content:'\201C';font-size:2.5rem;color:var(--accent);line-height:0;vertical-align:-.4rem;margin-right:.15rem}
.testi-card.open .testi-q{-webkit-line-clamp:unset;display:block;overflow:visible;min-height:0}
.testi-more{align-self:flex-start;background:none;border:none;cursor:pointer;font-family:'Jost',sans-serif;font-size:.62rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);padding:0;margin:0 0 1.1rem;transition:color .2s}
.testi-more:hover{color:var(--gold-lt)}
.testi-more.is-empty{visibility:hidden;pointer-events:none}
.testi-author{display:flex;align-items:center;gap:1rem;margin-top:auto;padding-top:1.5rem;border-top:1px solid var(--border)}
.author-init{width:2.5rem;height:2.5rem;border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Cormorant Garamond',serif;font-size:1rem;color:var(--accent);flex-shrink:0}
.author-name{font-size:.75rem;font-weight:500;letter-spacing:.04em;color:var(--white)}
.author-role{font-size:.65rem;color:var(--silver);margin-top:.1rem}

/* ─── PARTNERS ─────────────────────────────────────────────────────── */
.partners{background:#202739;border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 0}
.partners-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:2rem}
.partners-logos{display:flex;align-items:center;gap:2.5rem;flex-wrap:wrap}
.p-logo{font-size:.68rem;font-weight:400;letter-spacing:.14em;text-transform:uppercase;color:var(--silver)}
.cedia{display:flex;align-items:center;gap:.6rem;border:1px solid var(--border);padding:.6rem 1.2rem;font-size:.6rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:var(--slate)}

/* ─── CTA ──────────────────────────────────────────────────────────── */
.cta-section{background:var(--btn);padding:clamp(6rem,12vw,12rem) 0;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:60rem;height:60rem;background:radial-gradient(circle,rgba(255,255,255,.05) 0%,transparent 65%);pointer-events:none}
.cta-section .label{color:rgba(0,0,0,.45)}
.cta-section h2{font-size:clamp(2.5rem,5vw,5rem);color:#12141d;max-width:20ch;margin:1rem auto 1.5rem}
.cta-section p{font-size:1.05rem;color:rgba(20,25,38,.65);max-width:46ch;margin:0 auto 3rem;line-height:1.8}
.cta-btns{display:flex;align-items:center;justify-content:center;gap:2rem;flex-wrap:wrap}
.cta-section .btn-solid{background:#12141d;color:var(--white)}
.cta-section .btn-solid:hover{background:#232c42}
.cta-section .btn-outline{color:rgba(20,25,38,.55)}
.cta-detail{margin-top:2.5rem;display:flex;flex-direction:column;align-items:center;gap:.6rem}
.cta-detail span,.cta-detail a{font-size:.75rem;color:rgba(20,25,38,.5);letter-spacing:.06em}
.cta-detail a{color:rgba(20,25,38,.7);text-decoration:none;transition:color .25s}
.cta-detail a:hover{color:#12141d}

/* ─── FORMS ────────────────────────────────────────────────────────── */
.form-section{background:var(--frost)}
.form-wrap{border:1px solid var(--border);background:var(--mist);margin-top:3rem}
.form-steps{display:flex;border-bottom:1px solid var(--border)}
.form-step-tab{flex:1;padding:1.1rem 1rem;text-align:center;font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;color:var(--silver);border-right:1px solid var(--border);transition:color .3s,background .3s}
.form-step-tab:last-child{border-right:none}
.form-step-tab.active{color:var(--accent);background:var(--frost)}
.form-step-tab.done{color:var(--slate)}
.form-body{padding:clamp(2rem,4vw,3.5rem)}
/* Spam honeypot — visually hidden off-screen (not display:none, which bots skip). Humans never fill it. */
.hp-field{position:absolute!important;left:-9999px!important;top:auto;width:1px;height:1px;overflow:hidden}
.form-panel{display:none}
.form-panel.active{display:block;animation:fadeIn .4s ease}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem;margin-bottom:1.4rem}
.fld{display:flex;flex-direction:column;gap:.5rem}
.fld.full{grid-column:1/-1}
.fld label{font-size:.62rem;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--silver)}
.fld input,.fld select,.fld textarea{
  background:var(--bg);border:1px solid var(--border);color:var(--white);
  font-family:'Jost',sans-serif;font-size:1rem;font-weight:300;padding:.85rem 1rem;
  outline:none;transition:border-color .25s;width:100%;-webkit-appearance:none;appearance:none;
}
.fld input:focus,.fld select:focus,.fld textarea:focus{border-color:var(--accent)}
.fld textarea{min-height:120px;resize:vertical}
.fld select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238fa5be' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem}
.fld input::placeholder,.fld textarea::placeholder{color:var(--silver)}
.checks{display:grid;grid-template-columns:repeat(2,1fr);gap:.7rem}
.check{display:flex;align-items:center;gap:.7rem;font-size:.92rem;color:var(--slate);cursor:pointer;padding:.85rem 1rem;border:1px solid var(--border);background:var(--bg);transition:border-color .25s,color .25s}
.check:hover{border-color:var(--silver)}
.check input{width:1rem;height:1rem;accent-color:var(--accent);flex-shrink:0}
.check input:checked+span{color:var(--white)}
.form-nav{display:flex;align-items:center;justify-content:space-between;margin-top:2rem;gap:1rem}
.form-note{font-size:.7rem;color:var(--silver);margin-top:1.2rem}
.form-success{display:none;text-align:center;padding:clamp(3rem,6vw,5rem)}
.form-success.show{display:block}
.form-success h3{font-size:2rem;color:var(--white);margin-bottom:1rem}
.form-success p{font-size:1rem;color:var(--slate)}

/* ─── CONTACT ROUTING CARDS ────────────────────────────────────────── */
.routing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:3rem}
.route-card{border:1px solid var(--border);background:var(--mist);padding:clamp(2rem,3.5vw,3rem);text-decoration:none;display:block;transition:background .35s,border-color .35s}
.route-card:hover{background:var(--mist-lt);border-color:var(--silver)}
.route-card .label{margin-bottom:1rem}
.route-card h3{font-size:1.7rem;color:var(--white);margin-bottom:.7rem}
.route-card p{font-size:.95rem;color:var(--slate);line-height:1.7;margin-bottom:1.5rem}
.route-link{display:inline-flex;align-items:center;gap:.6rem;font-size:.62rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--accent)}
.route-link::after{content:'';width:1.5rem;height:1px;background:currentColor;transition:width .3s}
.route-card:hover .route-link::after{width:2.5rem}

/* ─── FOOTER ───────────────────────────────────────────────────────── */
footer{background:var(--char);border-top:1px solid var(--line);padding:clamp(3rem,5vw,4.5rem) 0 2.5rem}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:3rem;border-bottom:1px solid var(--line)}
.footer-brand .logo{margin-bottom:1.2rem}
.footer-brand p{font-size:.92rem;color:var(--silver);line-height:1.75;max-width:34ch}
.footer-col h4{font-family:'Jost',sans-serif;font-size:.72rem;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--slate);margin-bottom:1.2rem}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:.8rem}
.footer-col a{font-size:.92rem;color:var(--silver);text-decoration:none;transition:color .25s}
.footer-col a:hover{color:var(--white)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1.2rem;padding-top:2rem}
.footer-copy{font-size:.82rem;color:rgba(255,255,255,.4);letter-spacing:.04em}
.footer-meta{font-size:.72rem;color:rgba(255,255,255,.3);letter-spacing:.12em;text-transform:uppercase}
.footer-credit{
  display:flex;align-items:center;justify-content:center;gap:.7rem;
  margin-top:2rem;padding-top:1.8rem;border-top:1px solid var(--line);
  font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;color:var(--silver);
}
.footer-credit a{display:inline-flex;align-items:center;gap:.5rem;color:var(--slate);text-decoration:none;transition:color .25s}
.footer-credit a:hover{color:var(--accent)}
.footer-credit .create-mark{height:24px;width:auto;display:inline-block;color:var(--accent);transition:color .25s}
.footer-credit a:hover .create-mark{color:var(--gold-lt)}

/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
/* ─── NAV BREAKPOINTS ──────────────────────────────────────────────
   Measured 2026-07-29: the full desktop nav (logo 326px + links 768px + CTA 117px)
   needs roughly a 1415px viewport to sit on one line. It was only collapsing to the
   hamburger at 768px, so every iPad (744-1194) — and 1280/1366 laptops — rendered a
   wrapped, broken nav. Two tiers now: burger below 1200, tightened desktop above it. */
@media(max-width:1200px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .logo{--mark-h:2.43rem}                   /* 1.35rem + .28rem + .8rem */
  .logo-name{font-size:1.35rem}
  .logo-sub{font-size:.8rem}
}
@media(min-width:1201px) and (max-width:1460px){
  /* laptop tier: tighten rather than wrap */
  .nav-links{gap:1.5rem}
  .logo{gap:.8rem}
  .logo-name{font-size:1.45rem;letter-spacing:.18em}
  .logo-sub{font-size:.85rem;letter-spacing:.16em}
  .logo{--mark-h:2.58rem}                   /* 1.45rem + .28rem + .85rem */
}
@media(max-width:1024px){
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr);border-right:1px solid var(--border)}
  .platforms-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  .pillars-grid,.audience-grid,.vprop-grid,.compare,.routing-grid{grid-template-columns:1fr}
  .pillar{border-right:none;border-bottom:1px solid var(--border)}
  .pillar:last-child{border-bottom:none}
  .compare-col:first-child{border-right:none;border-bottom:1px solid var(--border)}
  .phil-grid{grid-template-columns:1fr}
  .phil-badge{display:none}
  .cinema-section{min-height:0;padding:clamp(4rem,12vw,7rem) 0}
  .cinema-section::before,.cinema-section.right::before{background:linear-gradient(180deg, rgba(20,25,38,.55) 0%, rgba(20,25,38,.8) 45%, rgba(20,25,38,.92) 100%)}
  .cinema-content-side{width:100%}
  .cinema-section.right .cinema-inner{justify-content:flex-start}
  .deliv-list{grid-template-columns:1fr}
  .deliv-list li:nth-child(2n){border-right:1px solid var(--border)}
  .deliv-list li{border-right:none}
}
@media(max-width:768px){
  .footer-bottom{justify-content:center}
  .partners-inner{flex-direction:column;text-align:center}
  .partners-logos{flex-direction:column;align-items:center;gap:.7rem}
  .partners-logos span:not(.p-logo){display:none}   /* hide the · separators in the stacked list */
  .partners .cedia-member img{height:16px}            /* shrink CEDIA badge to ~label size (more specific than base .cedia-member img) */
  /* stop the tall hero content overflowing up under the fixed nav (the eyebrow/logo overlap) */
  .hero{height:auto;min-height:100svh;padding-top:7rem}
  .hero-content{padding-bottom:3rem}
  .footer-top{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .form-row{grid-template-columns:1fr}
  .checks{grid-template-columns:1fr}
  .pstep{grid-template-columns:3rem 1fr;gap:1.2rem}
  .gallery-strip{grid-template-columns:repeat(3,1fr)}
  .gallery-strip img:nth-child(4),.gallery-strip img:nth-child(5){display:none}
}
@media(max-width:540px){
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:1fr;border-right:1px solid var(--border)}
  .platforms-grid{grid-template-columns:1fr}
  .hero-scroll-hint{display:none}
}

/* ─── CARD CENTRING (icon/number + title centred, paragraph left) ──── */
.aud-card{text-align:center}
.aud-icon{display:block;margin:0 auto 1.4rem}
.aud-card p{text-align:left}
.vprop{text-align:center}
.vprop-n{margin-left:auto;margin-right:auto}
.vprop p{text-align:left}
.process-step{text-align:center}
.process-step p{text-align:left}

/* ─── MOBILE: page-hero scrim goes vertical so text stays readable ── */
@media(max-width:768px){
  .page-hero-overlay{background:linear-gradient(180deg, rgba(20,25,38,.45) 0%, rgba(20,25,38,.7) 50%, rgba(20,25,38,.9) 100%)}
}

/* ─── WHATSAPP FLOATING BUTTON ─────────────────────────────────────── */
.wa-float{position:fixed;right:1.5rem;bottom:1.5rem;z-index:250;width:58px;height:58px;border-radius:50%;background:var(--btn);display:flex;align-items:center;justify-content:center;box-shadow:0 6px 22px rgba(0,0,0,.45);transition:transform .2s ease,box-shadow .2s ease}
.wa-float:hover{transform:scale(1.07);background:var(--gold-lt);box-shadow:0 10px 28px rgba(0,0,0,.55)}
.wa-float svg{width:32px;height:32px;fill:#12141d;display:block}
@media(max-width:768px){.wa-float{width:52px;height:52px;right:1rem;bottom:1rem}.wa-float svg{width:28px;height:28px}}

/* ─── MASONRY GALLERY ──────────────────────────────────────────────── */
.masonry{column-count:3;column-gap:1rem;margin-top:clamp(2.5rem,4vw,4rem)}
.masonry figure{break-inside:avoid;margin:0 0 1rem;position:relative;overflow:hidden;border:1px solid var(--border)}
.masonry img{width:100%;display:block;filter:saturate(.92)brightness(.95);transition:filter .5s,transform .7s cubic-bezier(.16,1,.3,1);transform:scale(1.02)}
.masonry figure:hover img{filter:saturate(1.05)brightness(1.03);transform:scale(1)}
.masonry figcaption{position:absolute;left:0;right:0;bottom:0;padding:1.4rem 1.2rem .9rem;font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:var(--white);background:linear-gradient(to top,rgba(0,0,0,.8),transparent);opacity:0;transition:opacity .35s}
.masonry figure:hover figcaption{opacity:1}
@media(max-width:900px){.masonry{column-count:2}}
@media(max-width:560px){.masonry{column-count:1}}

/* ─── TRIO IMAGE ROW ───────────────────────────────────────────────── */
.trio{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:clamp(2.5rem,4vw,3.5rem)}
.trio img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;cursor:zoom-in;border:1px solid var(--border);filter:saturate(.92)brightness(.95);transition:filter .4s,transform .5s cubic-bezier(.16,1,.3,1)}
.trio img:hover{filter:saturate(1.05)brightness(1.04);transform:scale(1.01)}
@media(max-width:640px){.trio{grid-template-columns:1fr}}
.masonry img,.gallery-strip img{cursor:zoom-in}

/* ─── LIGHTBOX ─────────────────────────────────────────────────────── */
.lightbox{position:fixed;inset:0;z-index:400;background:rgba(0,0,0,.95);display:none;align-items:center;justify-content:center;opacity:0;transition:opacity .3s}
.lightbox.open{display:flex;opacity:1}
.lightbox img{max-width:92vw;max-height:86vh;object-fit:contain;box-shadow:0 24px 70px rgba(0,0,0,.7);transition:opacity .2s}
.lb-close{position:absolute;top:1.4rem;right:2rem;background:none;border:none;color:#fff;font-size:2.2rem;line-height:1;cursor:pointer;opacity:.75;transition:opacity .2s;z-index:2}
.lb-close:hover{opacity:1}
.lb-nav{position:absolute;top:50%;transform:translateY(-50%);background:none;border:none;color:#fff;font-family:'Cormorant Garamond',serif;font-size:3rem;line-height:1;cursor:pointer;opacity:.55;transition:opacity .2s;padding:1rem 1.4rem;z-index:2}
.lb-nav:hover{opacity:1}
.lb-prev{left:.5rem}.lb-next{right:.5rem}
.lb-caption{position:absolute;bottom:1.4rem;left:0;right:0;text-align:center;color:rgba(255,255,255,.7);font-size:.66rem;letter-spacing:.18em;text-transform:uppercase}
@media(max-width:640px){.lb-nav{font-size:2rem;padding:.6rem .8rem}}

/* ─── 10-STEP LADDER: tasteful slide-in as each step scrolls into view ─ */
.process-10 .pstep.reveal{transform:translateX(-34px)}
.process-10 .pstep.reveal.in{transform:none}
.process-10 .pstep.reveal .pstep-n{transition:color .6s ease}

/* ─── LOGO MARK ─────────────────────────────────────────────────────
   The gold shimmer sweep was removed 2026-08-05 with the new square mark: the sweep
   was a gradient masked to the OLD logo's silhouette, and the new mark is a solid
   full-colour tile, so the effect no longer applies. `.logo-mark-anim` is kept as a
   plain wrapper because the markup uses it on every page. */
.logo-mark-anim{position:relative;display:inline-block;line-height:0}

/* ─── 5-COLUMN AUDIENCE GRID (architects property types) — responsive ── */
.audience-grid.cols-5{grid-template-columns:repeat(5,1fr)}
@media(max-width:1024px){.audience-grid.cols-5{grid-template-columns:repeat(3,1fr)}}
@media(max-width:600px){.audience-grid.cols-5{grid-template-columns:1fr}}

/* ─── NATIONWIDE / AREAS COVERED (local SEO) ───────────────────────── */
.areas{background:var(--frost);border-top:1px solid var(--border)}
.areas .areas-intro{font-size:clamp(1rem,1.3vw,1.15rem);color:var(--slate);line-height:1.8;max-width:72ch;margin:0 auto;text-align:center}
.areas-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:.7rem;margin-top:clamp(2.2rem,3.5vw,3.2rem)}
.area{font-size:.8rem;color:var(--silver);letter-spacing:.03em;padding:.5rem 1rem;border:1px solid var(--border);background:var(--mist);transition:color .25s,border-color .25s,background .25s}
.area:hover{color:var(--accent);border-color:var(--silver);background:var(--mist-lt)}
@media(max-width:640px){.areas-grid{gap:.55rem}.area{font-size:.76rem;padding:.42rem .8rem}}

/* ─── GALLERY DISCLAIMER NOTE ───────────────────────────────────────── */
.gallery-note{text-align:center;font-style:italic;font-size:.82rem;color:var(--silver);letter-spacing:.02em;line-height:1.7;max-width:64ch;margin:clamp(2rem,3vw,2.6rem) auto 0}

/* ─── CEDIA MEMBER LOGO SLOT ─────────────────────────────────────────── */
.cedia-member{display:inline-flex;align-items:center;gap:.7rem;text-decoration:none;line-height:0}
.cedia-member img{height:24px;width:auto;display:block}
.cedia-member img + .cedia-fallback{display:none}            /* hide text once the real badge loads */
.cedia-fallback{border:1px solid var(--border);padding:.6rem 1.2rem;font-size:.6rem;font-weight:500;letter-spacing:.15em;text-transform:uppercase;color:var(--slate);line-height:1}

/* ─── SAMPLE DOCUMENTS (design page) ────────────────────────────────
   Deliberately NOT .gallery-strip: that band crops, darkens and zooms its images for a
   moody photo effect, which makes technical drawings unreadable. These are documents —
   shown whole, on a light backing, captioned, in an even grid. */
.samples-section{padding:clamp(4rem,9vw,7rem) 0}
.samples-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,1.8vw,1.7rem);margin-top:clamp(2rem,4vw,3.2rem)}
.sample-card{margin:0;background:var(--mist);border:1px solid var(--border);border-radius:3px;overflow:hidden;
  transition:border-color .3s ease,transform .45s cubic-bezier(.16,1,.3,1),box-shadow .45s ease}
.sample-card:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 18px 40px rgba(0,0,0,.35)}
.sample-shot{aspect-ratio:3/2;background:#f4f5f7;overflow:hidden}
.sample-shot img{width:100%;height:100%;object-fit:cover;display:block;cursor:zoom-in;
  transition:transform .6s cubic-bezier(.16,1,.3,1)}
.sample-card:hover .sample-shot img{transform:scale(1.03)}
.sample-card figcaption{padding:.95rem 1.15rem;font-size:.68rem;font-weight:500;letter-spacing:.16em;
  text-transform:uppercase;color:var(--slate);border-top:1px solid var(--border)}
.sample-card:hover figcaption{color:var(--accent)}
@media(max-width:900px){ .samples-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:560px){ .samples-grid{grid-template-columns:1fr} }
