/* ProStructure s. r. o. — Košice
   Graphite-led: the primary colour is the anthracite metal they actually install.
   Warm sand (from the logo) is a thin accent only. The logo's brown appears
   exactly once on the page — in the logo mark itself. */

:root {
  /* primary action / structure */
  --brown: #242523;      /* was the logo brown; now graphite — kept as a name so
                            every button, band and rule moves together */
  --brown-dk: #101110;
  --ink-deep: #191A18;   /* footer, one step below the CTA band */

  --tan: #AA9677;        /* warm sand — decorative rules, labels on dark */
  --tan-lt: #C9B79E;
  --tan-txt: #6E7169;    /* small labels on light: warm grey, 5.2:1 */

  --graphite: #242523;
  --graphite-lt: #3A3C39;
  --metal: #5F625E;   /* 5.4:1 on --paper; #747773 measured 4.35:1 */
  --paper: #FCFAF6;
  --warm: #F4F0E9;
  --line: #E2DCD2;
  --white: #fff;

  --h: 'Manrope', system-ui, sans-serif;
  --b: 'Inter', system-ui, sans-serif;

  --wrap: 1240px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --r: 2px;
  --shadow: 0 1px 2px rgba(36,37,35,.04), 0 8px 24px -12px rgba(36,37,35,.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--b);
  color: var(--graphite);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* height:auto is load-bearing — without it the width/height attributes on <img>
   win over aspect-ratio and the tiles render at their intrinsic pixel height. */
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--h);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--graphite);
}
h1 { font-size: clamp(2.15rem, 5.2vw, 4.15rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--warm { background: var(--warm); }
.section--dark { background: var(--graphite); color: #E8E6E2; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--graphite);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--tan);
  flex: none;
}
.section--dark .eyebrow { color: var(--tan-lt); }
.lead { font-size: clamp(1.03rem, 1.5vw, 1.2rem); color: #55574F; max-width: 62ch; }
.section--dark .lead { color: #B9B7B1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--h);
  font-weight: 700;
  font-size: .95rem;
  padding: .95rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  text-align: center;
}
.btn--primary { background: var(--brown); color: #fff; }
.btn--primary:hover { background: var(--brown-dk); transform: translateY(-1px); }
.btn--ghost { border-color: currentColor; color: var(--graphite); }
.btn--ghost:hover { background: var(--graphite); color: #fff; border-color: var(--graphite); }
.btn--light { border-color: rgba(255,255,255,.8); color: #fff; }
.btn--light:hover { background: #fff; color: var(--graphite); border-color: #fff; }
.btn--white { background: #fff; color: var(--graphite); }
.btn--white:hover { background: var(--tan-lt); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,250,246,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; flex: none; }
.brand img { width: 34px; height: auto; }
.brand__txt {
  font-family: var(--h);
  font-size: 1.28rem;
  letter-spacing: -.02em;
  color: var(--graphite);
  line-height: 1;
}
.brand__txt b { font-weight: 800; }
.brand__txt span { font-weight: 300; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; gap: 1.7rem; list-style: none; }
.nav__links a {
  font-family: var(--h);
  font-weight: 600;
  font-size: .93rem;
  color: #4A4C48;
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.nav__links a:hover { color: var(--graphite); }
.nav__links a.is-active { color: var(--graphite); border-bottom-color: var(--brown); }
.hdr__cta { display: flex; align-items: center; gap: .9rem; }
.hdr__tel {
  font-family: var(--h);
  font-weight: 700;
  font-size: .95rem;
  color: var(--graphite);
  white-space: nowrap;
}
.hdr__tel:hover { color: var(--graphite); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  cursor: pointer;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  background: var(--graphite);
  transition: transform .25s, opacity .2s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 88vw);
  background: var(--paper);
  z-index: 200;
  padding: 1.6rem var(--gut) 2rem;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  overflow-y: auto;
  box-shadow: -20px 0 50px -20px rgba(0,0,0,.25);
}
.drawer.is-open { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; }
.drawer__close {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--r);
  color: var(--graphite);
}
.drawer ul { list-style: none; display: flex; flex-direction: column; }
.drawer ul a {
  display: block;
  font-family: var(--h);
  font-weight: 700;
  font-size: 1.16rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line);
}
.drawer ul a.is-active { color: var(--graphite); }
.drawer__foot { display: flex; flex-direction: column; gap: .7rem; margin-top: auto; }
.drawer__foot .btn { width: 100%; }
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(36,37,35,.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.scrim.is-open { opacity: 1; visibility: visible; }

@media (max-width: 1000px) {
  .nav__links, .hdr__tel { display: none; }
  .burger { display: block; }
  .hdr__cta .btn { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--graphite); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,21,19,.72) 0%, rgba(20,21,19,.5) 45%, rgba(20,21,19,.82) 100%);
}
.hero__in {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 15vw, 10rem);
  display: grid;
  gap: 2.4rem;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 em { font-style: normal; color: var(--tan-lt); }
.hero__sub { color: #D6D3CD; font-size: clamp(1.03rem, 1.6vw, 1.22rem); max-width: 54ch; }
.hero .eyebrow { color: var(--tan-lt); }
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 1.6rem;
  margin-top: .4rem;
}
.hero__fact {
  padding-right: clamp(1.2rem, 3vw, 2.6rem);
  margin-right: clamp(1.2rem, 3vw, 2.6rem);
  border-right: 1px solid rgba(255,255,255,.16);
}
.hero__fact:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero__fact b {
  display: block;
  font-family: var(--h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.hero__fact span { font-size: .82rem; color: #ABA8A2; }

/* ---------- generic section head ---------- */
.shead { display: grid; gap: 1rem; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.shead--split {
  grid-template-columns: 1fr;
  align-items: end;
}
@media (min-width: 900px) {
  .shead--split { grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
}

/* ---------- services ---------- */
.svc-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  background: var(--paper);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: background .2s;
}
.svc:hover { background: #fff; }
.svc__n {
  font-family: var(--h);
  font-size: .74rem;
  font-weight: 700;
  color: var(--tan-txt);
  letter-spacing: .1em;
}
.svc h3 { font-size: 1.18rem; }
.svc p { font-size: .93rem; color: #5B5D57; }

/* ---------- image + text split ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split--rev > *:first-child { order: 0; }
@media (min-width: 900px) { .split--rev > *:first-child { order: 2; } }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }
.split__body { display: grid; gap: 1.2rem; }
.stamp {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background: var(--brown);
  color: #fff;
  font-family: var(--h);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .7rem 1.1rem;
}

/* ---------- ticks ---------- */
.ticks { list-style: none; display: grid; gap: .65rem; }
.ticks li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .97rem;
  color: #4E5049;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  background: var(--tan);
}
.section--dark .ticks li { color: #C3C1BB; }
.section--dark .ticks li::before { background: var(--tan); }

/* ---------- process ---------- */
.steps { display: grid; gap: 1px; background: rgba(255,255,255,.12); }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1050px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--graphite); padding: 2rem 1.6rem; display: grid; gap: .6rem; align-content: start; }
.step b {
  font-family: var(--h);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--tan);
  line-height: 1;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: .9rem; color: #A9A7A1; }

/* ---------- projects ---------- */
.proj-grid { display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); grid-template-columns: 1fr; }
@media (min-width: 720px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .proj-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.proj {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.proj:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.proj__media { position: relative; overflow: hidden; }
.proj__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .5s; }
.proj:hover .proj__media img { transform: scale(1.04); }
.proj__tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  background: rgba(36,37,35,.86);
  color: #fff;
  font-family: var(--h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .38rem .7rem;
  backdrop-filter: blur(4px);
}
.proj__tag--film { background: var(--brown); }
.proj__body { padding: 1.4rem 1.4rem 1.6rem; display: grid; gap: .8rem; }
.proj__body h3 { font-size: 1.16rem; }
.proj__meta { display: grid; gap: .35rem; }
.proj__meta div {
  display: flex;
  gap: .6rem;
  font-size: .84rem;
  border-top: 1px solid var(--line);
  padding-top: .35rem;
}
.proj__meta dt {
  font-family: var(--h);
  font-weight: 700;
  color: var(--metal);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .68rem;
  min-width: 74px;
  padding-top: .18rem;
  flex: none;
}
.proj__meta dd { color: #4E5049; }
.proj__count {
  font-family: var(--h);
  font-size: .8rem;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* project detail (realizacie page) */
.pblock { border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.pblock:first-of-type { border-top: 0; padding-top: 0; }
.pblock__head { display: grid; gap: 1rem; margin-bottom: 1.8rem; }
@media (min-width: 920px) {
  .pblock__head { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: start; }
}
.pblock__head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.pblock__side { display: grid; gap: .5rem; align-content: start; }
.pblock__side div {
  display: flex;
  gap: .8rem;
  border-top: 1px solid var(--line);
  padding-top: .5rem;
  font-size: .9rem;
}
.pblock__side dt {
  font-family: var(--h);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--metal);
  min-width: 96px;
  flex: none;
  padding-top: .2rem;
}
.pblock__side dd { color: #40423C; font-weight: 500; }

.gal { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gal { grid-template-columns: repeat(4, 1fr); } }
.gal__i {
  border: 0;
  padding: 0;
  background: var(--warm);
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
}
.gal__i img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .45s, filter .3s; }
.gal__i:hover img { transform: scale(1.06); }
.gal__i--wide { grid-column: span 2; }
@media (min-width: 700px) { .gal__i--wide { grid-column: span 2; } }

.vid-card {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--graphite);
  border-radius: var(--r);
  overflow: hidden;
  width: 100%;
}
.vid-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: .82; transition: opacity .3s, transform .5s; }
.vid-card:hover img { opacity: 1; transform: scale(1.04); }
.vid-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.vid-card__play i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.vid-card__play i::after {
  content: "";
  width: 0; height: 0;
  border-left: 16px solid var(--graphite);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.vid-card__lbl {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--brown);
  color: #fff;
  font-family: var(--h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .7rem;
}

/* ---------- lightbox ---------- */
.lb {
  position: fixed;
  inset: 0;
  background: rgba(18,19,17,.95);
  z-index: 300;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.lb.is-open { display: grid; }
.lb__stage { max-width: 1200px; width: 100%; display: grid; gap: .9rem; justify-items: center; }
.lb__stage img, .lb__stage video {
  max-height: 78vh;
  max-width: 100%;
  width: auto;
  border-radius: var(--r);
  object-fit: contain;
}
.lb__cap {
  color: #C9C7C1;
  font-size: .88rem;
  text-align: center;
  font-family: var(--h);
}
.lb__x, .lb__nav {
  position: absolute;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: background .2s;
}
.lb__x:hover, .lb__nav:hover { background: rgba(255,255,255,.28); }
.lb__x { top: 1.1rem; right: 1.1rem; }
.lb__prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb__next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lb__prev { left: .5rem; }
  .lb__next { right: .5rem; }
  .lb__x { top: .6rem; right: .6rem; }
}

/* ---------- materials ---------- */
.mats { display: flex; flex-wrap: wrap; gap: .55rem; }
.mat {
  font-family: var(--h);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  color: #40423C;
}
.section--dark .mat { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #DEDCD7; }

/* ---------- certificates ---------- */
.certs { display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .certs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .certs { grid-template-columns: repeat(4, 1fr); } }
.cert {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1rem 1rem 1.3rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.cert:hover, .cert:focus-within { border-color: var(--tan); box-shadow: var(--shadow); transform: translateY(-2px); }
.cert__shot {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
/* contain, not cover — a certificate cropped in half proves nothing */
.cert__shot img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: #fff;
  padding: .5rem;
}
.cert__zoom {
  position: absolute;
  inset-inline-end: .5rem;
  inset-block-end: .5rem;
  background: rgba(36,37,35,.82);
  color: #fff;
  font-family: var(--h);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .55rem;
  border-radius: var(--r);
}
.cert__b { display: grid; gap: .3rem; align-content: start; }
.cert__b h3 { font-size: 1.02rem; }
.cert__b p { font-size: .88rem; color: var(--metal); line-height: 1.55; }
.cert__b small {
  font-size: .76rem;
  color: var(--tan-txt);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--h);
  font-weight: 700;
  margin-top: .15rem;
}

/* ---------- trade licences ---------- */
.trades { display: flex; flex-wrap: wrap; gap: .55rem; }
.trade {
  font-family: var(--h);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem .95rem .5rem .8rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #DEDCD7;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.trade::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--tan); flex: none; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--h);
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--graphite);
  padding: 1.35rem 2.5rem 1.35rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq__q::after {
  content: "+";
  position: absolute;
  right: .3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--graphite);
  transition: transform .25s;
}
.faq__i.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a[hidden] { display: none; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.35rem; color: #55574F; font-size: .96rem; max-width: 72ch; }

/* ---------- form ---------- */
.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; }
@media (min-width: 620px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--metal);
}
.field input, .field select, .field textarea {
  font-family: var(--b);
  font-size: 1rem;
  color: var(--graphite);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(85,57,22,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--metal); }
/* Status box. Visibility is driven by the [hidden] attribute (JS toggles it) —
   the attribute selector must out-specify the class or the box can never show. */
.form__ok {
  background: #EDF3EC;
  border: 1px solid #C6DCC2;
  color: #2E5427;
  padding: 1rem 1.2rem;
  border-radius: var(--r);
  font-size: .93rem;
}
.form__ok[hidden] { display: none; }
.form__ok.is-err {
  background: #FBEDEC;
  border-color: #E4C3C0;
  color: #7A2A22;
}

/* honeypot — must stay in the layout for bots, invisible to people */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- contact cards ---------- */
.ccards { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .ccards { grid-template-columns: repeat(3, 1fr); } }
.ccard { background: var(--paper); padding: 1.8rem 1.5rem; display: grid; gap: .35rem; align-content: start; }
.ccard h3 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--metal); font-weight: 700; }
.ccard a, .ccard p { font-family: var(--h); font-weight: 700; font-size: 1.06rem; color: var(--graphite); line-height: 1.45; }
.ccard a:hover { color: var(--graphite); }
.ccard small { font-family: var(--b); font-weight: 400; font-size: .85rem; color: var(--metal); display: block; margin-top: .2rem; }

/* ---------- cta band ---------- */
.cta { background: var(--graphite); color: #fff; border-top: 3px solid var(--tan); }
.cta h2 { color: #fff; }
.cta__in { display: grid; gap: 1.8rem; align-items: center; }
@media (min-width: 900px) { .cta__in { grid-template-columns: 1.2fr .8fr; } }
.cta p { color: #B9B7B1; max-width: 52ch; }
.cta .btn-row { justify-content: flex-start; }
@media (min-width: 900px) { .cta .btn-row { justify-content: flex-end; } }

/* ---------- footer ---------- */
.ftr { background: var(--ink-deep); color: #9C9A94; border-top: 3px solid var(--tan); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .9rem; }
.ftr__grid { display: grid; gap: 2.4rem; }
@media (min-width: 800px) { .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.ftr__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.ftr__brand img { width: 32px; }
.ftr__brand .brand__txt { color: #fff; }
.ftr h4 {
  font-family: var(--h);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .9rem;
}
.ftr ul { list-style: none; display: grid; gap: .5rem; }
.ftr a:hover { color: #fff; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .8rem;
  color: #77756F;
}
.ftr__bot a { color: #9C9A94; }

/* ---------- sticky mobile bar ---------- */
.mbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  background: rgba(252,250,246,.97);
  border-top: 1px solid var(--line);
  padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .55rem;
  backdrop-filter: blur(10px);
}
.mbar .btn { flex: 1; padding: .85rem .6rem; font-size: .88rem; }
@media (max-width: 760px) {
  .mbar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- page head ---------- */
.phead { background: var(--warm); border-bottom: 1px solid var(--line); padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.phead__in { display: grid; gap: 1rem; max-width: 70ch; }
.crumb { font-size: .82rem; color: var(--metal); }
.crumb a:hover { color: var(--graphite); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } }

/* ============================================================
   v2 — layout revision.
   Motifs: standing-seam rules (1px dark + 3px light highlight) and
   folded-sheet corners on technical panels — both echo folded metal.
   ============================================================ */

.seam { position: relative; height: 4px; }
.seam::before, .seam::after { content: ""; position: absolute; inset-inline: 0; }
.seam::before { top: 0; height: 1px; background: var(--graphite); opacity: .22; }
.seam::after { top: 1px; height: 3px; background: var(--tan); opacity: .28; }

.folded { position: relative; }
.folded::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 22px; height: 22px;
  background: linear-gradient(225deg, var(--paper) 0 50%, transparent 50%);
  border-left: 1px solid rgba(36,37,35,.16);
  border-bottom: 1px solid rgba(36,37,35,.16);
}

/* ---------- video hero ---------- */
.vhero { position: relative; background: var(--graphite); overflow: hidden; }
.vhero__media { position: absolute; inset: 0; }
.vhero__media video, .vhero__media > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}
.vhero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20,21,19,.92) 0%, rgba(20,21,19,.72) 28%, rgba(20,21,19,.2) 62%, transparent 100%),
    linear-gradient(to top right, rgba(20,21,19,.85) 0%, rgba(20,21,19,.35) 50%, transparent 100%),
    rgba(36,37,35,.16);
}
.vhero__in {
  position: relative;
  z-index: 2;
  min-height: min(82svh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(5rem, 12vw, 7rem) clamp(3.5rem, 8vw, 5.5rem);
}
.vhero__body { max-width: 760px; display: grid; gap: 1.4rem; }
.vhero h1 { color: #fff; }
.vhero h1 em { font-style: normal; display: block; color: var(--tan-lt); }
.vhero .eyebrow { color: var(--tan-lt); margin-bottom: 0; }
.vhero__sub { color: #D3D0CA; font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 56ch; }
.vhero__acts { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.tlink {
  font-family: var(--h);
  font-weight: 700;
  font-size: .95rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 2px solid rgba(255,255,255,.35);
  padding-bottom: .2rem;
  transition: border-color .2s, gap .2s;
}
.tlink:hover { border-color: var(--tan); gap: .8rem; }
.vhero__proof {
  font-family: var(--h);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: #A5A29C;
  margin-top: .2rem;
}
.vhero__proof b { color: #fff; font-weight: 700; }

.vhero__play { display: none; }
@media (max-width: 767px) {
  .vhero__in { min-height: 0; padding-block: 4rem 2.8rem; }
  .vhero__media video { display: none; }
  .vhero__play { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .vhero__media video { display: none; }
}

/* ---------- full-bleed triptych ---------- */
.tript { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.tript__i { position: relative; overflow: hidden; }
.tript__i img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.tript__strip {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 56px;
  background: var(--brown);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
}
.tript__strip span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--h);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tript__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.1rem .9rem;
  background: linear-gradient(to top, rgba(20,21,19,.88), transparent);
  color: #fff;
  font-family: var(--h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.tript__i:first-child .tript__cap { padding-left: calc(56px + 1.1rem); }
@media (max-width: 720px) {
  .tript { grid-template-columns: 1fr; }
  .tript__i img { aspect-ratio: 3/2; }
  .tript__i:not(:first-child) .tript__strip { display: none; }
  .tript__i:not(:first-child) .tript__cap { padding-left: 1.1rem; }
}

/* ---------- 7/5 split — the image column sets the row height ---------- */
.split7 { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 960px) { .split7 { grid-template-columns: 7fr 5fr; } }
.split7--rev > *:first-child { order: 0; }
@media (min-width: 960px) { .split7--rev > *:first-child { order: 2; } }
.split7__media { position: relative; overflow: hidden; }
.split7__media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
@media (min-width: 960px) {
  .split7__media img { aspect-ratio: auto; height: 100%; min-height: 100%; }
}
.split7__panel {
  background: var(--warm);
  display: grid;
  align-content: center;
  gap: 1.05rem;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 3.5vw, 3.4rem);
}
.split7__panel.is-dark { background: var(--graphite); }
.split7__panel.is-dark h2 { color: #fff; }
.split7__panel.is-dark .lead, .split7__panel.is-dark p { color: #B9B7B1; }
.split7__panel.is-dark .ticks li { color: #C3C1BB; }
.split7__panel.is-dark .eyebrow { color: var(--tan-lt); }

/* ---------- editorial project composition ---------- */
.edit { display: grid; gap: 12px; }
@media (min-width: 960px) { .edit { grid-template-columns: 8fr 4fr; } }
.edit__side { display: grid; gap: 12px; }
@media (min-width: 960px) { .edit__side { grid-template-rows: 1fr 1fr; } }
.eproj { position: relative; display: block; overflow: hidden; border-radius: var(--r); background: var(--graphite); }
.eproj img { width: 100%; object-fit: cover; transition: transform .6s; aspect-ratio: 3/2; }
@media (min-width: 960px) { .eproj--sm img { aspect-ratio: auto; height: 100%; min-height: 100%; } }
.eproj:hover img { transform: scale(1.04); }
.eproj__ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1.3rem 1.15rem;
  background: linear-gradient(to top, rgba(20,21,19,.95) 0%, rgba(20,21,19,.8) 40%, transparent 100%);
  color: #fff;
  display: grid;
  gap: .3rem;
}
.eproj__ov h3 { color: #fff; font-size: clamp(1.02rem, 1.5vw, 1.3rem); }
.eproj__ov p {
  font-family: var(--h);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: #C6C3BD;
  text-transform: uppercase;
}
.eproj__ov p b { color: var(--tan-lt); font-weight: 700; }

/* ---------- flagship service (2/3 visual + numbered list 1/3) ---------- */
.flag { display: grid; gap: 0; }
@media (min-width: 980px) { .flag { grid-template-columns: 2fr 1fr; } }
.flag__main { position: relative; background: var(--graphite); overflow: hidden; }
.flag__main img { width: 100%; height: 100%; aspect-ratio: 3/2; object-fit: cover; opacity: .92; }
.flag__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.4rem, 3vw, 2.6rem) clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(to top, rgba(20,21,19,.93) 25%, transparent);
  color: #fff;
  display: grid;
  gap: .7rem;
}
.flag__cap h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.flag__cap p { color: #C6C3BD; max-width: 48ch; font-size: .95rem; }
.flag__list { background: var(--warm); padding: clamp(1.8rem, 3vw, 2.4rem); display: grid; align-content: start; }
.flag__list h3 { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--metal); margin-bottom: 1rem; }
.flag__list ol { list-style: none; display: grid; }
.flag__list li {
  display: flex;
  gap: .9rem;
  align-items: baseline;
  padding: .72rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--h);
  font-weight: 600;
  font-size: .94rem;
  color: #3C3E39;
}
.flag__list li span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--tan-txt);
  min-width: 20px;
  flex: none;
}

/* ---------- roof-pitch process ---------- */
.pitch { display: grid; gap: 1px; background: transparent; }
@media (min-width: 800px) { .pitch { grid-template-columns: repeat(4, 1fr); align-items: end; } }
.pstep { background: var(--graphite); display: grid; align-content: start;
         border-top: 3px solid var(--tan); }
.pstep__img { overflow: hidden; }
.pstep__img img { width: 100%; aspect-ratio: 2/3; object-fit: cover; opacity: .72; transition: opacity .35s, transform .6s; display: block; }
.pstep:hover .pstep__img img { opacity: 1; transform: scale(1.04); }
.pstep__b { padding: 1.4rem 1.25rem 1.7rem; display: grid; gap: .45rem; }
.pstep__n {
  font-family: var(--h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--tan);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.pstep__n::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.16); }
.pstep h3 { font-size: 1.03rem; }
.pstep p { font-size: .86rem; color: #A5A39D; }
/* the rising roof line — each stage sits a little higher than the last */
@media (min-width: 800px) {
  .pstep:nth-child(1) { margin-top: 54px; }
  .pstep:nth-child(2) { margin-top: 36px; }
  .pstep:nth-child(3) { margin-top: 18px; }
  .pstep:nth-child(4) { margin-top: 0; }
}

/* ---------- about closer (panel overlaps the photo) ---------- */
.closer { position: relative; }
.closer__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
@media (max-width: 900px) { .closer__img img { aspect-ratio: 4/3; } }
.closer__panel {
  background: var(--paper);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: grid;
  gap: 1rem;
  border-top: 3px solid var(--brown);
}
@media (min-width: 900px) {
  .closer { margin-bottom: 3.5rem; }
  .closer__panel {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    bottom: -3.5rem;
    width: min(500px, 48%);
    box-shadow: 0 30px 60px -30px rgba(20,21,19,.5);
  }
}

/* ---------- realizacie: navigator ---------- */
.navi { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 880px) { .navi { grid-template-columns: repeat(3, 1fr); } }
.navi__i { position: relative; overflow: hidden; border-radius: var(--r); background: var(--graphite); display: block; }
.navi__i img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s; display: block; }
.navi__i:hover img { transform: scale(1.05); }
.navi__ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem .9rem .8rem;
  background: linear-gradient(to top, rgba(20,21,19,.95) 0%, rgba(20,21,19,.82) 45%, transparent 100%);
  color: #fff;
}
.navi__ov b { display: block; font-family: var(--h); font-size: .9rem; font-weight: 700; line-height: 1.3; }
.navi__ov span {
  font-family: var(--h);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tan-lt);
}

/* ---------- realizacie: project chapter ---------- */
.chap { border-top: 1px solid var(--line); padding-block: clamp(3rem, 7vw, 5.5rem); }
.chap:first-of-type { border-top: 0; padding-top: 0; }
.chap__grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (min-width: 960px) { .chap__grid { grid-template-columns: 3fr 9fr; } }
.chap__side { display: grid; gap: 1rem; align-content: start; }
.chap__num {
  font-family: var(--h);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--tan-txt);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.chap__num::after {
  content: "";
  flex: 1;
  height: 3px;
  background: var(--tan);
  opacity: .35;
  box-shadow: 0 -2px 0 rgba(36,37,35,.16);
}
.chap__side h2 { font-size: clamp(1.3rem, 2.1vw, 1.8rem); }
.chap__side p { font-size: .95rem; color: #55574F; }
.chap__spec { background: var(--warm); padding: 1.15rem 1.2rem 1.25rem; display: grid; gap: .5rem; }
.chap__spec div { display: grid; gap: .1rem; border-top: 1px solid rgba(36,37,35,.1); padding-top: .5rem; }
.chap__spec div:first-child { border-top: 0; padding-top: 0; }
.chap__spec dt {
  font-family: var(--h);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--metal);
}
.chap__spec dd { font-family: var(--h); font-weight: 600; font-size: .9rem; color: var(--graphite); }
.chap__main { display: grid; gap: 10px; align-content: start; }
.chap__hero { overflow: hidden; border-radius: var(--r); border: 0; padding: 0; background: none; cursor: zoom-in; display: block; }
.chap__hero img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s; display: block; }
.chap__hero:hover img { transform: scale(1.03); }
.chap__mosaic { display: grid; gap: 10px; grid-template-columns: 2fr 1fr; }
.chap__mosaic .gal__i { height: 100%; }
.chap__mosaic .gal__i img { height: 100%; aspect-ratio: 3/2; }
.chap__mstack { display: grid; gap: 10px; grid-template-rows: 1fr 1fr; }
.chap__mstack .gal__i img { aspect-ratio: 4/3; height: 100%; }
@media (max-width: 620px) {
  .chap__mosaic { grid-template-columns: 1fr; }
  .chap__mstack { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
}
.chap__more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--h);
  font-weight: 700;
  font-size: .88rem;
  color: var(--brown);
  background: none;
  border: 0;
  border-bottom: 2px solid var(--tan);
  padding: .3rem 0;
  cursor: pointer;
  justify-self: start;
  margin-top: .5rem;
}
.chap__more:hover { color: var(--brown-dk); border-color: var(--brown); }

/* inline project video — 16:9, real poster + play button, never buried in a lightbox */
.pvid { position: relative; overflow: hidden; border-radius: var(--r); background: var(--graphite); }
.pvid video { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.pvid__poster { position: absolute; inset: 0; }
.pvid__poster img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.pvid__btn { position: absolute; inset: 0; border: 0; background: none; cursor: pointer; display: grid; place-items: center; }
.pvid__btn i {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  transition: transform .2s;
}
.pvid__btn:hover i { transform: scale(1.07); }
.pvid__btn i::after {
  content: "";
  border-left: 18px solid var(--graphite);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.pvid__lbl {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--brown);
  color: #fff;
  font-family: var(--h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem .75rem;
}
.pvid.is-playing .pvid__poster,
.pvid.is-playing .pvid__btn,
.pvid.is-playing .pvid__lbl { display: none; }

/* enquiry break between chapters */
.brk {
  background: var(--graphite);
  color: #fff;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
  align-items: center;
  border-radius: var(--r);
}
@media (min-width: 800px) { .brk { grid-template-columns: 1fr auto; } }
.brk h3 { color: #fff; font-size: clamp(1.12rem, 2vw, 1.45rem); }
.brk p { color: #A9A7A1; font-size: .93rem; margin-top: .3rem; }


/* ---------- focus ---------- */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--graphite);
  outline-offset: 2px;
  border-radius: 1px;
}
.vhero :focus-visible, .section--dark :focus-visible, .lb :focus-visible,
.eproj:focus-visible, .navi__i:focus-visible { outline-color: var(--tan-lt); }

/* ---------- hero play/pause ---------- */
.vhero__toggle {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(20,21,19,.45);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.vhero__toggle:hover { background: rgba(20,21,19,.7); }
.vhero__toggle::before {
  content: "";
  width: 12px;
  height: 13px;
  background: #fff;
  /* pause bars */
  clip-path: polygon(0 0, 35% 0, 35% 100%, 0 100%, 0 0, 65% 0, 100% 0, 100% 100%, 65% 100%, 65% 0);
}
.vhero__toggle.is-paused::before {
  /* play triangle */
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 767px) { .vhero__toggle { display: none; } }

/* ---------- show-all toggle ---------- */
.chap__hidden[hidden] { display: none; }
.chap__more .chap__more-i { transition: transform .25s; display: inline-block; }
.chap__more.is-open .chap__more-i { transform: rotate(180deg); }

/* The mobile hero button sits on the poster photo, which is bright in places —
   a transparent button left white text on a white roof. Give it its own scrim. */
.vhero__play {
  background: rgba(20,21,19,.68);
  border-color: rgba(255,255,255,.8);
  color: #fff;
  backdrop-filter: blur(6px);
}
.vhero__play:hover { background: #fff; color: var(--graphite); border-color: #fff; }
