/* ============================================================
   CMA INTERNATIONAL — visual system
   "The drawing set": hairline rules, dimension lines, spec labels.
   Credible + contemporary + human.
   ============================================================ */

:root{
  --ink:#14120E;
  --ink-2:#2B261E;
  --ink-3:#4A4237;
  --bone:#F5F2EB;
  --bone-2:#EBE6DA;
  --line:#D8D1C1;
  --line-dk:rgba(245,242,235,.16);
  --rust:#B0522A;
  --rust-2:#D2743E;
  --sand:#877F70;
  --white:#FFFDF8;

  --f-display:"Instrument Serif",Georgia,"Times New Roman",serif;
  --f-sans:"Inter Tight","Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
  --f-ar:"Noto Kufi Arabic",var(--f-sans);

  --pad:clamp(1.25rem,4vw,3.5rem);
  --max:1440px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
body{
  margin:0;background:var(--bone);color:var(--ink);
  font-family:var(--f-sans);font-size:clamp(1rem,.96rem + .2vw,1.075rem);
  line-height:1.62;letter-spacing:-.006em;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img,svg,video{max-width:100%;display:block}
a{color:inherit}
button{font:inherit}

/* ---------- primitives ---------- */
.wrap{max-width:var(--max);margin-inline:auto;padding-inline:var(--pad)}
.rule{height:1px;background:var(--line);border:0;margin:0}
.dk .rule{background:var(--line-dk)}

.spec{
  font-family:var(--f-mono);font-size:.6875rem;font-weight:500;
  letter-spacing:.16em;text-transform:uppercase;color:var(--sand);
}
.dk .spec{color:rgba(245,242,235,.5)}
.spec-rust{color:var(--rust)}
.dk .spec-rust{color:var(--rust-2)}

/* numbered section marker with a dimension line */
.marker{display:flex;align-items:center;gap:.9rem;margin-bottom:1.75rem}
.marker::after{content:"";flex:1;height:1px;background:var(--line)}
.dk .marker::after{background:var(--line-dk)}
.marker .num{
  font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.12em;
  color:var(--rust);border:1px solid currentColor;border-radius:99px;
  padding:.2rem .55rem;flex:none;
}
.dk .marker .num{color:var(--rust-2)}

h1,h2,h3{margin:0;font-weight:400;letter-spacing:-.022em}
.display{font-family:var(--f-display);line-height:1.02;font-weight:400}
.h-xl{font-size:clamp(2.9rem,1.4rem + 6.4vw,6.6rem)}
.h-lg{font-size:clamp(2.1rem,1.2rem + 3.6vw,3.9rem);line-height:1.06}
.h-md{font-size:clamp(1.5rem,1.1rem + 1.6vw,2.15rem);line-height:1.14}
.lede{font-size:clamp(1.075rem,1rem + .5vw,1.375rem);line-height:1.5;color:var(--ink-3);max-width:62ch;letter-spacing:-.012em}
.dk .lede{color:rgba(245,242,235,.72)}
.ital{font-style:italic;color:var(--rust)}
.dk .ital{color:var(--rust-2)}

section{position:relative}
.pad-y{padding-block:clamp(4rem,3rem + 6vw,9rem)}
.dk{background:var(--ink);color:var(--bone)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:var(--f-mono);font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  padding:1rem 1.6rem;text-decoration:none;border:1px solid var(--ink);
  background:var(--ink);color:var(--bone);
  transition:background .35s var(--ease),color .35s var(--ease),transform .35s var(--ease);
}
.btn:hover{background:var(--rust);border-color:var(--rust);transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink)}
.btn-ghost:hover{background:var(--ink);border-color:var(--ink);color:var(--bone)}
.dk .btn{background:var(--bone);color:var(--ink);border-color:var(--bone)}
.dk .btn:hover{background:var(--rust-2);border-color:var(--rust-2);color:var(--ink)}
.dk .btn-ghost{background:transparent;color:var(--bone);border-color:var(--line-dk)}
.dk .btn-ghost:hover{background:var(--bone);color:var(--ink);border-color:var(--bone)}
.btn .arrow{transition:transform .35s var(--ease)}
.btn:hover .arrow{transform:translateX(4px)}

/* underline link */
.ulink{
  display:inline-flex;align-items:center;gap:.5rem;text-decoration:none;
  font-family:var(--f-mono);font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--rust);padding-bottom:.25rem;
  background-image:linear-gradient(currentColor,currentColor);
  background-size:100% 1px;background-repeat:no-repeat;background-position:0 100%;
  transition:background-size .4s var(--ease);
}
.ulink:hover{background-size:0% 1px}
.dk .ulink{color:var(--rust-2)}

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

/* ============================================================
   HEADER
   ============================================================ */
.hdr{
  position:fixed;inset-inline:0;top:0;z-index:60;
  background:rgba(245,242,235,.82);backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
  transition:background .4s var(--ease),border-color .4s var(--ease),color .4s var(--ease);
}
.hdr.on-dark{background:rgba(20,18,14,.78);border-color:var(--line-dk);color:var(--bone)}
.hdr-in{display:flex;align-items:center;justify-content:space-between;gap:1rem;height:66px}
.brandmark{display:flex;align-items:center;gap:.7rem;text-decoration:none;flex:none}
.brandmark .bm-sq{
  width:30px;height:30px;border:1.5px solid currentColor;position:relative;flex:none;
  display:grid;place-items:center;font-family:var(--f-mono);font-size:.6rem;letter-spacing:.02em;
}
.brandmark .bm-tx{line-height:1.05}
.brandmark b{font-family:var(--f-sans);font-weight:600;font-size:.9rem;letter-spacing:-.02em;display:block}
.brandmark span{font-family:var(--f-mono);font-size:.5625rem;letter-spacing:.18em;text-transform:uppercase;opacity:.55}
.nav{display:none;gap:.15rem;align-items:center}
@media (min-width:1060px){.nav{display:flex}}
.nav a{
  text-decoration:none;font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.13em;
  text-transform:uppercase;padding:.55rem .7rem;opacity:.66;transition:opacity .3s,color .3s;
}
.nav a:hover,.nav a.active{opacity:1;color:var(--rust)}
.hdr.on-dark .nav a:hover,.hdr.on-dark .nav a.active{color:var(--rust-2)}
.hdr .btn{padding:.7rem 1.05rem;font-size:.6875rem}
.hdr.on-dark .btn{background:var(--bone);color:var(--ink);border-color:var(--bone)}
.hdr.on-dark .btn:hover{background:var(--rust-2);border-color:var(--rust-2);color:var(--ink)}
.hdr-cta{display:none}
@media (min-width:620px){.hdr-cta{display:inline-flex}}
.burger{display:grid;place-items:center;width:40px;height:40px;background:none;border:1px solid currentColor;cursor:pointer;color:inherit}
@media (min-width:1060px){.burger{display:none}}
.burger span{display:block;width:16px;height:1px;background:currentColor;transition:transform .3s}
.burger span+span{margin-top:4px}
.mnav{position:fixed;inset:0;z-index:59;background:var(--ink);color:var(--bone);
  padding:6rem var(--pad) 2rem;display:flex;flex-direction:column;gap:.25rem;
  transform:translateY(-100%);transition:transform .5s var(--ease);overflow:auto}
.mnav.open{transform:none}
.mnav a{text-decoration:none;font-family:var(--f-display);font-size:2rem;padding:.35rem 0;
  border-bottom:1px solid var(--line-dk);display:flex;justify-content:space-between;align-items:baseline}
.mnav a i{font-family:var(--f-mono);font-size:.6875rem;font-style:normal;letter-spacing:.14em;opacity:.45}

/* scroll progress */
.prog{position:fixed;top:0;left:0;height:2px;background:var(--rust);z-index:70;width:0}

/* ============================================================
   HERO
   ============================================================ */
.hero{position:relative;background:var(--ink);color:var(--bone);padding-top:66px;overflow:hidden}
.hero-grid{
  position:absolute;inset:0;opacity:.5;pointer-events:none;
  background-image:linear-gradient(var(--line-dk) 1px,transparent 1px),linear-gradient(90deg,var(--line-dk) 1px,transparent 1px);
  background-size:clamp(48px,7vw,88px) clamp(48px,7vw,88px);
  mask-image:radial-gradient(120% 90% at 50% 0%,#000 20%,transparent 78%);
}
.hero-in{position:relative;display:grid;gap:clamp(2rem,4vw,3.5rem);
  padding-block:clamp(3rem,2rem + 6vw,6rem) clamp(2rem,4vw,3rem)}
@media (min-width:1000px){.hero-in{grid-template-columns:1fr 380px;align-items:end}}
.hero h1{max-width:16ch}
.hero h1 .l2{display:block;color:var(--rust-2)}
.eyebrow-row{display:flex;flex-wrap:wrap;align-items:center;gap:.6rem .9rem;margin-bottom:1.6rem}
.pill{
  font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.13em;text-transform:uppercase;
  border:1px solid var(--line-dk);border-radius:99px;padding:.35rem .8rem;color:rgba(245,242,235,.75);
}
.pill.live{display:inline-flex;align-items:center;gap:.45rem;border-color:rgba(210,116,62,.5);color:var(--rust-2)}
.pill.live::before{content:"";width:6px;height:6px;border-radius:99px;background:var(--rust-2);animation:pulse 2.2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.25}}
.hero-sub{margin-top:1.6rem;max-width:56ch;font-size:clamp(1.05rem,1rem + .45vw,1.3rem);
  line-height:1.5;color:rgba(245,242,235,.78);letter-spacing:-.012em}
.hero-cta{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:2.2rem}
.hero-shot{position:relative;border:1px solid var(--line-dk)}
.hero-shot img{width:100%;height:clamp(260px,38vw,420px);object-fit:cover;filter:saturate(.9) contrast(1.04)}
.hero-shot figcaption{position:absolute;inset-inline:0;bottom:0;padding:2.2rem .9rem .75rem;
  background:linear-gradient(to top,rgba(20,18,14,.92),transparent)}

/* answer bar — who / what / for whom / why trust */
.answer{border-top:1px solid var(--line-dk);border-bottom:1px solid var(--line-dk)}
.answer-in{display:grid;gap:0}
@media (min-width:760px){.answer-in{grid-template-columns:repeat(4,1fr)}}
.answer-cell{padding:1.4rem 0;border-bottom:1px solid var(--line-dk)}
@media (min-width:760px){
  .answer-cell{padding:1.6rem 1.6rem 1.6rem 0;border-bottom:0;border-right:1px solid var(--line-dk)}
  .answer-cell:last-child{border-right:0;padding-right:0}
}
.answer-cell dt{margin-bottom:.5rem}
.answer-cell dd{margin:0;font-size:.95rem;line-height:1.45;color:rgba(245,242,235,.86)}
.answer-cell dd b{font-weight:600}

/* logo marquee */
.marq{overflow:hidden;border-bottom:1px solid var(--line-dk);padding-block:1.15rem;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marq-track{display:flex;gap:clamp(2rem,4vw,4rem);width:max-content;animation:slide 38s linear infinite}
.marq:hover .marq-track{animation-play-state:paused}
@keyframes slide{to{transform:translateX(-50%)}}
.marq-item{display:flex;align-items:center;gap:.6rem;flex:none;
  font-family:var(--f-mono);font-size:.8125rem;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(245,242,235,.55);white-space:nowrap}
.marq-item img{height:22px;width:auto;object-fit:contain;filter:grayscale(1) invert(1);opacity:.72}
@media (prefers-reduced-motion:reduce){
  .marq{-webkit-mask-image:none;mask-image:none}
  .marq-track{animation:none;flex-wrap:wrap;width:auto;justify-content:center;row-gap:.6rem}
}

/* ============================================================
   GENERIC BLOCKS
   ============================================================ */
.sec-head{display:grid;gap:1.25rem;margin-bottom:clamp(2.25rem,4vw,3.5rem)}
@media (min-width:900px){.sec-head{grid-template-columns:1.15fr .85fr;align-items:end;gap:2.5rem}}

/* service cards */
.svc{display:grid;gap:0;border-top:1px solid var(--line)}
.dk .svc{border-color:var(--line-dk)}
.svc-row{
  display:grid;gap:1rem;padding-block:clamp(1.6rem,3vw,2.4rem);
  border-bottom:1px solid var(--line);position:relative;
}
.dk .svc-row{border-color:var(--line-dk)}
@media (min-width:860px){.svc-row{grid-template-columns:64px 1.05fr 1.3fr 190px;gap:2rem;align-items:start}}
.svc-row .idx{font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.12em;color:var(--rust);padding-top:.45rem}
.svc-row h3{font-family:var(--f-display);font-size:clamp(1.4rem,1.2rem + .9vw,2rem);line-height:1.1}
.svc-row p{margin:0;color:var(--ink-3);font-size:.975rem;line-height:1.55}
.dk .svc-row p{color:rgba(245,242,235,.68)}
.svc-row .tags{display:flex;flex-wrap:wrap;gap:.35rem;align-content:start}
.tag{font-family:var(--f-mono);font-size:.625rem;letter-spacing:.1em;text-transform:uppercase;
  border:1px solid var(--line);padding:.28rem .5rem;color:var(--sand)}
.dk .tag{border-color:var(--line-dk);color:rgba(245,242,235,.55)}
.svc-row::after{content:"";position:absolute;left:0;bottom:-1px;height:1px;width:0;background:var(--rust);transition:width .6s var(--ease)}
.svc-row:hover::after{width:100%}

/* audience cards */
.who{display:grid;gap:1px;background:var(--line)}
.dk .who{background:var(--line-dk)}
@media (min-width:700px){.who{grid-template-columns:1fr 1fr}}
@media (min-width:1080px){.who{grid-template-columns:repeat(4,1fr)}}
.who-card{background:var(--bone);padding:clamp(1.5rem,2.4vw,2.1rem);display:flex;flex-direction:column;gap:.9rem;
  transition:background .4s var(--ease),color .4s var(--ease)}
.dk .who-card{background:var(--ink)}
.who-card:hover{background:var(--ink);color:var(--bone)}
.who-card:hover .spec{color:var(--rust-2)}
.who-card:hover p{color:rgba(245,242,235,.75)}
.who-card:hover .who-ck li{color:rgba(245,242,235,.8)}
.who-card h3{font-family:var(--f-display);font-size:1.45rem;line-height:1.12}
.who-card p{margin:0;font-size:.925rem;color:var(--ink-3);line-height:1.55}
.who-ico{width:34px;height:34px;stroke:currentColor;fill:none;stroke-width:1.25;stroke-linecap:round;stroke-linejoin:round;color:var(--rust)}
.who-card:hover .who-ico{color:var(--rust-2)}
.who-ck{list-style:none;margin:.2rem 0 0;padding:0;display:grid;gap:.4rem;margin-top:auto}
.who-ck li{font-size:.85rem;line-height:1.4;color:var(--ink-3);padding-left:1.1rem;position:relative}
.who-ck li::before{content:"→";position:absolute;left:0;color:var(--rust);font-family:var(--f-mono);font-size:.75rem}

/* process */
.proc{display:grid;gap:0;counter-reset:step}
@media (min-width:900px){.proc{grid-template-columns:repeat(5,1fr);gap:1px;background:var(--line-dk)}}
.proc-step{position:relative;padding:clamp(1.4rem,2.5vw,1.9rem) 0;border-top:1px solid var(--line-dk);background:var(--ink)}
@media (min-width:900px){.proc-step{padding:1.9rem 1.4rem 1.9rem 0;border-top:0}}
.proc-step .dot{width:11px;height:11px;border-radius:99px;border:1.5px solid var(--rust-2);margin-bottom:1rem;position:relative}
.proc-step .dot::after{content:"";position:absolute;inset:2.5px;border-radius:99px;background:var(--rust-2);transform:scale(0);transition:transform .5s var(--ease)}
.proc-step.in .dot::after{transform:scale(1)}
.proc-step h3{font-size:1.05rem;font-weight:600;letter-spacing:-.015em;margin-bottom:.5rem}
.proc-step p{margin:0;font-size:.875rem;line-height:1.5;color:rgba(245,242,235,.62)}
.proc-line{height:1px;background:var(--line-dk);position:relative;margin-bottom:-1px}
.proc-line i{position:absolute;inset:0;background:var(--rust-2);width:0;transition:width 1.8s var(--ease)}
.proc-line.in i{width:100%}

/* capability matrix */
.cap{width:100%;min-width:620px;border-collapse:collapse;font-size:.925rem}
.cap th,.cap td{text-align:left;padding:.95rem .8rem;border-bottom:1px solid var(--line);vertical-align:top}
.cap th{font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.13em;text-transform:uppercase;color:var(--sand);font-weight:500}
.cap td:first-child{font-weight:600;width:26%}
.cap td:last-child{font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.1em;text-transform:uppercase;color:var(--rust);white-space:nowrap}
.cap tr:hover td{background:var(--bone-2)}
.cap-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin}

/* stats */
.stats{display:grid;gap:1px;background:var(--line-dk)}
@media (min-width:560px){.stats{grid-template-columns:1fr 1fr}}
@media (min-width:1000px){.stats{grid-template-columns:repeat(4,1fr)}}
.stat{background:var(--ink);padding:clamp(1.6rem,3vw,2.4rem) 0;padding-right:1.5rem}
.stat .n{font-family:var(--f-display);font-size:clamp(2.8rem,2rem + 3.4vw,4.6rem);line-height:1;color:var(--bone);letter-spacing:-.03em}
.stat .n em{font-style:normal;color:var(--rust-2)}
.stat .l{margin-top:.6rem;max-width:22ch}
.stat .s{margin:.35rem 0 0;font-size:.8125rem;color:rgba(245,242,235,.45);line-height:1.4}

/* case studies */
.cases{display:grid;gap:clamp(1.25rem,2.5vw,2rem)}
@media (min-width:820px){.cases{grid-template-columns:repeat(3,1fr)}}
.case{border:1px solid var(--line);background:var(--white);color:var(--ink);display:flex;flex-direction:column;
  transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.case:hover{transform:translateY(-4px);box-shadow:0 18px 40px -24px rgba(20,18,14,.4)}
.case-img{position:relative;overflow:hidden;aspect-ratio:4/3;background:var(--bone-2)}
.case-img img{width:100%;height:100%;object-fit:cover;transition:transform 1.1s var(--ease)}
.case:hover .case-img img{transform:scale(1.05)}
.case-img .badge{position:absolute;left:0;top:0;background:var(--ink);color:var(--bone);
  font-family:var(--f-mono);font-size:.625rem;letter-spacing:.13em;text-transform:uppercase;padding:.4rem .7rem}
.case-body{padding:1.4rem;display:flex;flex-direction:column;gap:.75rem;flex:1}
.case-body h3{font-family:var(--f-display);font-size:1.5rem;line-height:1.12}
.case-body p{margin:0;font-size:.9rem;color:var(--ink-3);line-height:1.55}
.case-meta{margin-top:auto;padding-top:.9rem;border-top:1px solid var(--line);display:grid;gap:.5rem}
.case-meta div{display:flex;justify-content:space-between;gap:1rem;font-size:.8125rem}
.case-meta dt{font-family:var(--f-mono);font-size:.625rem;letter-spacing:.11em;text-transform:uppercase;color:var(--sand)}
.case-meta dd{margin:0;font-weight:600;text-align:right}

/* needs-input chip — honest placeholder */
.tbc{font-family:var(--f-mono);font-size:.5625rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--rust);border:1px dashed currentColor;padding:.18rem .4rem;font-weight:500;white-space:nowrap}

/* project gallery strip */
.gallery{display:grid;gap:1px;background:var(--line-dk)}
@media (min-width:560px){.gallery{grid-template-columns:1fr 1fr}}
@media (min-width:900px){.gallery{grid-template-columns:repeat(4,1fr)}}
.gallery figure{margin:0;overflow:hidden;aspect-ratio:4/3;background:var(--ink-2)}
.gallery img{width:100%;height:100%;object-fit:cover;filter:grayscale(.35) contrast(1.03);
  transition:transform 1s var(--ease),filter .6s var(--ease)}
.gallery figure:hover img{transform:scale(1.06);filter:none}

/* logo wall */
.wall{display:grid;gap:1px;background:var(--line)}
@media (min-width:520px){.wall{grid-template-columns:repeat(2,1fr)}}
@media (min-width:820px){.wall{grid-template-columns:repeat(4,1fr)}}
.wall-cell{background:var(--bone);min-height:104px;display:grid;place-items:center;gap:.4rem;padding:1.2rem;
  transition:background .35s var(--ease)}
.wall-cell:hover{background:var(--white)}
.wall-cell img{height:30px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.72;transition:filter .35s,opacity .35s}
.wall-cell:hover img{filter:none;opacity:1}
.wall-cell span{font-family:var(--f-display);font-size:1.35rem;letter-spacing:-.01em;color:var(--ink-3);transition:color .35s}
.wall-cell:hover span{color:var(--ink)}

/* quote */
.quote{display:grid;gap:1.5rem}
@media (min-width:900px){.quote{grid-template-columns:200px 1fr;gap:2.5rem;align-items:start}}
.quote blockquote{margin:0;font-family:var(--f-display);font-size:clamp(1.5rem,1.2rem + 1.6vw,2.4rem);
  line-height:1.22;letter-spacing:-.02em}
.quote-por{border:1px solid var(--line-dk);aspect-ratio:3/4;overflow:hidden}
.quote-por img{width:100%;height:100%;object-fit:cover;object-position:center 18%}
.quote cite{display:block;margin-top:1.5rem;font-style:normal}

/* about / ventures */
.about{display:grid;gap:clamp(2rem,4vw,3.5rem)}
@media (min-width:960px){.about{grid-template-columns:.85fr 1.15fr;align-items:start}}
.about-por{position:relative;border:1px solid var(--line)}
.about-por img{width:100%;aspect-ratio:3/4;object-fit:cover}
.about-por figcaption{padding:.85rem;border-top:1px solid var(--line);background:var(--white)}
.story{display:grid;gap:1.5rem}
.story p{margin:0;color:var(--ink-3);max-width:60ch}
.story p strong{color:var(--ink);font-weight:600}
.vents{display:grid;gap:1px;background:var(--line);margin-top:1rem;overflow:hidden}
@media (min-width:640px){.vents{grid-template-columns:repeat(3,1fr)}}
.vent{background:var(--bone);padding:0 1.35rem 1.35rem;display:flex;flex-direction:column;gap:.6rem}
.vent h4{margin:0;font-family:var(--f-display);font-size:1.3rem;font-weight:400}
.vent p{margin:0;font-size:.85rem;color:var(--ink-3);line-height:1.5}
.vent .vphoto{width:100%;aspect-ratio:16/10;object-fit:cover;margin-bottom:.35rem;filter:grayscale(.55);transition:filter .5s var(--ease)}
.vent:hover .vphoto{filter:none}
.vent .vlogo{height:26px;width:auto;object-fit:contain;object-position:left;opacity:.9}

/* CTA strip between sections */
.nudge{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;
  margin-top:clamp(2rem,4vw,3rem);padding-top:1.5rem;border-top:1px solid var(--line)}
.dk .nudge{border-color:var(--line-dk)}
.nudge p{margin:0;font-family:var(--f-display);font-size:clamp(1.2rem,1rem + .9vw,1.7rem);max-width:34ch}

/* ============================================================
   CONTACT
   ============================================================ */
.contact{display:grid;gap:clamp(2rem,4vw,3.5rem)}
@media (min-width:960px){.contact{grid-template-columns:1.05fr .95fr}}
.form{display:grid;gap:1rem}
.field{display:grid;gap:.45rem}
.field label{font-family:var(--f-mono);font-size:.625rem;letter-spacing:.14em;text-transform:uppercase;color:rgba(245,242,235,.5)}
.field input,.field select,.field textarea{
  width:100%;background:transparent;border:0;border-bottom:1px solid var(--line-dk);
  color:var(--bone);font-family:var(--f-sans);font-size:1rem;padding:.75rem 0;
  transition:border-color .3s var(--ease);border-radius:0;
}
.field select{appearance:none;background-image:linear-gradient(45deg,transparent 50%,var(--rust-2) 50%),linear-gradient(135deg,var(--rust-2) 50%,transparent 50%);
  background-position:calc(100% - 12px) 55%,calc(100% - 7px) 55%;background-size:5px 5px;background-repeat:no-repeat}
.field select option{background:var(--ink);color:var(--bone)}
.field textarea{resize:vertical;min-height:96px}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--rust-2)}
.field input::placeholder,.field textarea::placeholder{color:rgba(245,242,235,.3)}
.form-row{display:grid;gap:1rem}
@media (min-width:560px){.form-row{grid-template-columns:1fr 1fr}}
.form .btn{justify-content:center;margin-top:.5rem}
.form-note{font-size:.75rem;color:rgba(245,242,235,.45);margin:0}

.lines{display:grid;gap:1px;background:var(--line-dk);border:1px solid var(--line-dk)}
.line-item{background:var(--ink);padding:1.15rem 1.25rem;display:flex;align-items:center;gap:1rem;
  text-decoration:none;transition:background .35s var(--ease)}
.line-item:hover{background:var(--ink-2)}
.line-item .li-ico{width:20px;height:20px;stroke:var(--rust-2);fill:none;stroke-width:1.4;stroke-linecap:round;stroke-linejoin:round;flex:none}
.line-item .li-tx{flex:1;min-width:0}
.line-item .li-tx b{display:block;font-size:.975rem;font-weight:600;letter-spacing:-.01em;overflow-wrap:anywhere}
.line-item .li-ar{font-family:var(--f-mono);font-size:.75rem;color:rgba(245,242,235,.35);flex:none}
.addr{margin-top:1.25rem;padding:1.25rem;border:1px solid var(--line-dk)}
.addr p{margin:.5rem 0 0;font-size:.9rem;line-height:1.5;color:rgba(245,242,235,.75)}
.addr .ar{font-family:var(--f-ar);font-size:1rem;color:var(--bone);margin-top:.35rem;direction:rtl}

/* footer */
.ftr{background:var(--ink);color:var(--bone);padding-block:clamp(2.5rem,4vw,4rem) 2rem;border-top:1px solid var(--line-dk)}
.ftr-top{display:grid;gap:2rem;padding-bottom:2.5rem;border-bottom:1px solid var(--line-dk)}
@media (min-width:880px){.ftr-top{grid-template-columns:1.4fr 1fr 1fr}}
.ftr h2{font-family:var(--f-display);font-size:clamp(2rem,1.4rem + 2.6vw,3.4rem);line-height:1.04;max-width:14ch}
.ftr-col{display:grid;gap:.55rem;align-content:start}
.ftr-col a{text-decoration:none;font-size:.9rem;color:rgba(245,242,235,.65);transition:color .3s}
.ftr-col a:hover{color:var(--rust-2)}
.ftr-bot{display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;padding-top:1.5rem}

/* handover note */
.note{border:1px dashed var(--rust);padding:clamp(1.25rem,2.5vw,2rem);background:rgba(176,82,42,.05)}
.note h3{font-family:var(--f-sans);font-size:1rem;font-weight:600;margin-bottom:.75rem}
.note ol{margin:0;padding-left:1.2rem;display:grid;gap:.45rem}
.note li{font-size:.9rem;line-height:1.5;color:var(--ink-3)}
.note li b{color:var(--ink)}

/* floating whatsapp */
.fab{position:fixed;right:clamp(1rem,3vw,2rem);bottom:clamp(1rem,3vw,2rem);z-index:55;
  display:flex;align-items:center;gap:.6rem;background:var(--rust);color:var(--white);
  text-decoration:none;padding:.85rem 1.15rem;border-radius:99px;
  box-shadow:0 12px 30px -12px rgba(20,18,14,.6);
  font-family:var(--f-mono);font-size:.6875rem;letter-spacing:.13em;text-transform:uppercase;
  transform:translateY(220%);transition:transform .5s var(--ease),background .3s}
.fab.show{transform:none}
.fab:hover{background:var(--ink)}
.fab svg{width:17px;height:17px;fill:currentColor}
