/* ============================================================
   LA CAPELA — SERVICII FUNERARE MEDIAȘ · taste.css
   Design system: sober premium / editorial
   Serif: EB Garamond · Sans: Manrope
   ============================================================ */

:root {
  /* palette — deep cinema: near-black + antique gold */
  --bg:        #0b0d10;
  --bg-2:      #101318;
  --surface:   #161a20;
  --ink:       #e9e7e1;
  --ink-2:     #c9ccd1;
  --muted:     #959ba4;
  --line:      rgba(233, 231, 225, 0.08);
  --line-2:    rgba(233, 231, 225, 0.17);
  --dark:      #08090b;
  --dark-2:    #0d1014;
  --dark-3:    #1b2026;
  --gold:      #b58f4e;
  --gold-2:    #d6b06a;
  --gold-deep: #dcb96f;
  --gold-line: rgba(214, 176, 106, 0.32);
  --white:     #ffffff;
  --shadow-sm: 0 14px 34px -18px rgba(0, 0, 0, 0.65);
  --shadow-md: 0 34px 70px -30px rgba(0, 0, 0, 0.8);

  --serif: "EB Garamond", "Georgia", "Times New Roman", serif;
  --sans:  "Manrope", "Segoe UI", system-ui, sans-serif;

  --r: 4px;
  --wrap: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 320ms;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(181, 143, 78, 0.055), transparent 60%),
    radial-gradient(900px 600px at -10% 28%, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--bg);
  color: var(--ink);
  font: 400 16.5px/1.72 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p, figure, blockquote { margin: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 2px; }
::selection { background: rgba(174, 135, 64, 0.22); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--dark); color: #fff; padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- typography ---------- */
.font-serif { font-family: var(--serif); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.display-1 { font-size: clamp(2.7rem, 6.2vw, 4.7rem); line-height: 1.02; }
.display-2 { font-size: clamp(2.05rem, 4vw, 3.15rem); }
.display-3 { font-size: clamp(1.6rem, 2.6vw, 2.15rem); }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.19rem); color: var(--ink-2); line-height: 1.68; max-width: 62ch; }
p { max-width: 72ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 11.5px/1 var(--sans);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.kicker--center::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.serif-i { font-style: italic; }

.text-muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }
em, .em { font-family: var(--serif); font-style: italic; }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 4.5vw, 48px); }
.section { padding-block: clamp(78px, 9.5vw, 132px); }
.section--soft { background: var(--bg-2); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: #f3f4f2; }
.section--dark .lead { color: #c9ccd2; }
.section--dark .text-muted { color: #a9adb4; }
.section--flush { padding-top: 0; }
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.g-12 { grid-template-columns: repeat(12, 1fr); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.span-6 { grid-column: span 6; }
.span-5 { grid-column: span 5; }
.span-7 { grid-column: span 7; }
.span-12 { grid-column: span 12; }
.sec-head { max-width: 780px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 18px; }
.sec-head p { color: var(--muted); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: 700 14px/1 var(--sans);
  letter-spacing: 0.02em;
  padding: 17px 30px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background-color var(--speed), border-color var(--speed), color var(--speed);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn--gold { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff; box-shadow: 0 14px 30px -14px rgba(150, 110, 40, 0.55); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 36px -14px rgba(150, 110, 40, 0.6); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--ghost-d { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost-d:hover { background: var(--ink); color: #fff; }
.btn--ghost-l { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--ghost-l:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 700 13.5px/1 var(--sans);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-2);
  transition: color var(--speed), border-color var(--speed), gap var(--speed);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform var(--speed) var(--ease); }
.link-arrow:hover { color: var(--gold-deep); border-color: var(--gold); gap: 15px; }
.link-arrow:hover svg { transform: translateX(2px); }
.link-arrow--light { color: #fff; border-color: rgba(255,255,255,0.3); }
.link-arrow--light:hover { color: var(--gold-2); border-color: var(--gold-2); }

.tel-link { color: inherit; font-weight: 700; }
.tel-link:hover { color: var(--gold-deep); }

/* ---------- topbar ---------- */
.site-top {
  background: var(--dark);
  color: #b9bdc4;
  font: 600 11.5px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.site-top__left { display: flex; align-items: center; gap: 26px; }
.site-top__item { display: inline-flex; align-items: center; gap: 9px; }
.site-top__item svg { width: 13px; height: 13px; color: var(--gold-2); flex: none; }
.site-top a:hover { color: #fff; }
.site-top__badge { color: var(--gold-2); display: inline-flex; align-items: center; gap: 9px; }
.site-top__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); box-shadow: 0 0 0 0 rgba(198,161,89,.5); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198,161,89,.45); }
  70% { box-shadow: 0 0 0 9px rgba(198,161,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,161,89,0); }
}

/* ---------- header / nav ---------- */
.site-head {
  position: sticky; top: 0; z-index: 90;
  background: rgba(244,245,242,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--speed);
}
.site-head.is-stuck { box-shadow: 0 18px 40px -30px rgba(16,17,19,.3); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand__logo { height: 40px; width: auto; }
.brand__name { font-family: var(--serif); font-size: 22px; letter-spacing: 0.02em; line-height: 1; }
.brand__tag { font: 700 9.5px/1 var(--sans); letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep); margin-top: 7px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  font: 600 13px/1 var(--sans);
  letter-spacing: 0.02em;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 3px;
  position: relative;
  transition: color var(--speed);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--speed) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 14px; }
.nav__cta .btn { padding: 13px 20px; }
.nav__cta svg { width: 15px; height: 15px; }

.burger { display: none; background: none; border: 0; width: 46px; height: 46px; position: relative; z-index: 130; }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px auto; border-radius: 2px; transition: transform var(--speed), opacity var(--speed);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 120;
  background: var(--bg);
  padding: 110px 28px 40px;
  display: none;
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; animation: fadeIn .35s var(--ease); }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.mobile-nav a.mnav {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--serif); font-size: 30px; line-height: 1.2;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav a.mnav small { font: 700 11px var(--sans); color: var(--gold-deep); letter-spacing: .2em; }
.mobile-nav a.mnav:hover { color: var(--gold-deep); }
.mobile-nav__cta { margin-top: 34px; display: grid; gap: 14px; }
body.locked { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--dark); color: #fff; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(78deg, rgba(10,11,13,.97) 0%, rgba(10,11,13,.82) 42%, rgba(10,11,13,.34) 74%, rgba(10,11,13,.2) 100%);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 78% 12%, rgba(174,135,64,.14), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; min-height: min(660px, 88svh); display: flex; flex-direction: column; justify-content: center; padding-block: clamp(96px, 12vw, 150px) clamp(70px, 9vw, 110px); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 700 11.5px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold-2); }
.hero__title { max-width: 15ch; margin-bottom: 28px; }
.hero__title .serif-i { color: var(--gold-2); }
.hero__sub { max-width: 56ch; color: #c9ccd2; font-size: 18px; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__note { margin-top: 26px; font: 600 12px/1.6 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: #9aa0a8; display: flex; gap: 22px; flex-wrap: wrap; }
.hero__note span { display: inline-flex; align-items: center; gap: 8px; }
.hero__note svg { width: 13px; height: 13px; color: var(--gold-2); }
.hero__scroll { display: none; }

/* entry animation */
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero__eyebrow { animation: rise .8s var(--ease) both; }
.hero__title { animation: rise .9s .12s var(--ease) both; }
.hero__sub { animation: rise .9s .24s var(--ease) both; }
.hero__cta { animation: rise .9s .36s var(--ease) both; }
.hero__note { animation: rise .9s .48s var(--ease) both; }
@media (prefers-reduced-motion: reduce) { .hero__eyebrow, .hero__title, .hero__sub, .hero__cta, .hero__note { animation: none; } }

/* ---------- facts band ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: var(--surface); }
.fact { padding: 34px 30px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: 0; }
.fact__ic { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--gold-line); color: var(--gold-deep); border-radius: 50%; margin-bottom: 18px; }
.fact__ic svg { width: 21px; height: 21px; }
.fact h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; letter-spacing: .01em; margin-bottom: 6px; }
.fact p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- inner page hero ---------- */
.page-hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(84px, 11vw, 140px) clamp(64px, 8vw, 104px); }
.crumbs { display: flex; gap: 10px; align-items: center; font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #9aa0a8; margin-bottom: 26px; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 11px; height: 11px; }
.crumbs .on { color: var(--gold-2); }
.page-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); max-width: 17ch; margin-bottom: 22px; }
.page-hero .lead { color: #c9ccd2; }
.page-hero--alt::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background:
    radial-gradient(90% 140% at 85% 0%, rgba(174,135,64,.22), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,.03) 0 50%, transparent 50%);
}

/* ---------- split (image+text) ---------- */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(36px, 6vw, 84px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__body { grid-column: 1 / span 6; }
.split__media { grid-column: 7 / span 6; }
.split--rev .split__body { grid-column: 7 / span 6; }
.split--rev .split__media { grid-column: 1 / span 6; }
.split h2 { margin-bottom: 24px; }
.split p + p { margin-top: 16px; }
.split .lead { margin-bottom: 26px; }
.stack { display: grid; gap: 26px; margin: 30px 0 34px; }
.stack__item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.stack__ic { width: 32px; height: 32px; margin-top: 2px; color: var(--gold-deep); }
.stack__ic svg { width: 26px; height: 26px; }
.stack h4 { font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: .01em; margin-bottom: 4px; }
.stack p { font-size: 14.5px; color: var(--muted); }

/* media compositions */
.media { position: relative; }
.media__frame { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); background: #e4e6e2; }
.media__frame img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; transition: transform 1.1s var(--ease); }
.media:hover .media__frame img { transform: scale(1.03); }
.media__frame--sq img { aspect-ratio: 1 / 1; }
.media__frame--wide img { aspect-ratio: 16 / 9; }
.media__frame--port img { aspect-ratio: 3 / 4; }
.media__frame--auto img { aspect-ratio: auto; }
.media__off { position: absolute; z-index: 2; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); border: 6px solid var(--bg); }
.media__off img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.media__off--br { right: -4%; bottom: -8%; width: min(46%, 250px); }
.media__off--bl { left: -6%; bottom: -9%; width: min(44%, 230px); }
.media__off--tl { left: -5%; top: -7%; width: min(42%, 220px); }
.media__off--tr { right: -5%; top: -6%; width: min(42%, 230px); }
.media__badge {
  position: absolute; z-index: 3; left: 50%; bottom: -22px; transform: translateX(-50%);
  background: var(--dark); color: #fff; border-radius: var(--r);
  padding: 13px 22px; font: 600 13px/1.4 var(--sans); letter-spacing: .04em; white-space: nowrap;
  box-shadow: var(--shadow-md); display: flex; gap: 10px; align-items: center;
}
.media__badge svg { width: 16px; height: 16px; color: var(--gold-2); }
.media__cap { margin-top: 14px; font: 600 11.5px/1.5 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.media__cap::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

/* ---------- service index rows ---------- */
.index { border-top: 1px solid var(--line); }
.index__row {
  display: grid; grid-template-columns: 74px 1.15fr 1fr auto; gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 38px) 6px;
  border-bottom: 1px solid var(--line);
  transition: background-color var(--speed);
}
.index__row:hover { background: rgba(255,255,255,.55); }
.index__num { font-family: var(--serif); font-style: italic; font-size: 27px; color: var(--gold); line-height: 1; }
.index__title h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin-bottom: 8px; }
.index__title p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 56ch; }
.index__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font: 600 11.5px/1 var(--sans); letter-spacing: .02em;
  border: 1px solid var(--line-2); border-radius: 100px; padding: 9px 14px;
  color: var(--ink-2); background: var(--surface);
}
.chip--dark { border-color: rgba(255,255,255,.18); color: #c9ccd2; background: transparent; }
.index__thumb { width: 118px; height: 118px; border-radius: var(--r); overflow: hidden; position: relative; }
.index__thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); transition: transform .8s var(--ease); }
.index__row:hover .index__thumb img { transform: scale(1.06); }
.index__thumb::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(16,17,19,.08); border-radius: var(--r); }
.index__go { width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; color: var(--ink); transition: all var(--speed) var(--ease); }
.index__go svg { width: 19px; height: 19px; }
.index__row:hover .index__go { background: var(--ink); border-color: var(--ink); color: var(--gold-2); transform: translateX(4px); }

/* dark variant of index */
.index--dark { border-top-color: rgba(255,255,255,.14); }
.index--dark .index__row { border-bottom-color: rgba(255,255,255,.14); }
.index--dark .index__row:hover { background: rgba(255,255,255,.03); }
.index--dark .index__title p { color: #a9adb4; }

/* ---------- band (dark full statement) ---------- */
.band { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(36px, 6vw, 90px); align-items: center; }
.band__body { grid-column: 1 / span 6; }
.band__media { grid-column: 7 / span 6; }
.band--rev .band__body { grid-column: 7 / span 6; }
.band--rev .band__media { grid-column: 1 / span 6; }
.band--rev .band__media { order: -1; }
.band__body h2 { color: #fff; margin-bottom: 26px; }
.band__body p { color: #c9ccd2; }
.band__body p + p { margin-top: 16px; }
.band__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin: 28px 0 34px; }
.band__list li { color: #e8e9e6; font-size: 15px; display: flex; gap: 11px; align-items: baseline; line-height: 1.5; }
.band__list svg { width: 14px; height: 14px; color: var(--gold-2); flex: none; transform: translateY(1px); }

/* ---------- gallery thumbs ---------- */
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 22px; }
.thumbs a { position: relative; overflow: hidden; border-radius: var(--r); display: block; aspect-ratio: 4/5; background: #e4e6e2; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .5s; }
.thumbs a:hover img { transform: scale(1.07); }
.thumbs a::after { content: "+"; position: absolute; inset: 0; display: grid; place-items: center; font: 300 40px var(--serif); color: #fff; background: rgba(16,17,19,.35); opacity: 0; transition: opacity var(--speed); }
.thumbs a:hover::after { opacity: 1; }

/* ---------- CTA band ---------- */
.cta-dark { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 12% 0%, rgba(174,135,64,.16), transparent 60%), radial-gradient(50% 90% at 95% 100%, rgba(255,255,255,.05), transparent 55%); }
.cta-dark .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.cta-dark h2 { color: #fff; margin-bottom: 18px; }
.cta-dark p { color: #c9ccd2; }
.cta-dark__phone { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: #fff; letter-spacing: .01em; display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.cta-dark__phone:hover { color: var(--gold-2); }
.cta-dark__phone svg { width: 30px; height: 30px; color: var(--gold-2); }
.cta-dark__right { border-left: 1px solid rgba(255,255,255,.14); padding-left: clamp(24px, 3vw, 48px); display: grid; gap: 16px; }
.cta-row { display: flex; align-items: center; gap: 16px; }
.cta-row__ic { width: 46px; height: 46px; border: 1px solid var(--gold-line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-2); flex: none; }
.cta-row__ic svg { width: 19px; height: 19px; }
.cta-row b { display: block; font: 700 15.5px/1.3 var(--sans); color: #fff; }
.cta-row span { font-size: 13.5px; color: #a9adb4; line-height: 1.4; display: block; }
.cta-row a:hover b { color: var(--gold-2); }

/* ---------- map ---------- */
.map-sec { padding: 0; }
.map-head { padding: clamp(64px, 7vw, 96px) 0 clamp(34px, 4vw, 54px); text-align: center; }
.map-frame { position: relative; }
.map-frame iframe { display: block; width: 100%; height: 480px; border: 0; filter: grayscale(1) contrast(1.04) opacity(.92); transition: filter .8s; }
.map-frame:hover iframe { filter: none; }
.map-frame .map-tag {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%, -50%);
  pointer-events: none; background: var(--surface); border-radius: var(--r); box-shadow: var(--shadow-md);
  padding: 14px 22px; text-align: center; border: 1px solid var(--line);
}
.map-tag b { display: block; font: 700 13.5px/1.3 var(--sans); }
.map-tag small { color: var(--muted); font-size: 12px; }
.map-frame .map-tag { display: none; }

/* ---------- product / card grids ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(262px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.pcard__img { position: relative; background: #fff; overflow: hidden; }
.pcard__img img { width: 100%; aspect-ratio: 2 / 1; object-fit: contain; padding: 6px 10px; transition: transform .9s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.045); }
.pcard__body { padding: 20px 22px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard__code { font: 700 10.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); }
.pcard h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; }
.pcard p { font-size: 13.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.pcard__note { font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.pcard__note svg { width: 13px; height: 13px; color: var(--gold); flex: none; }

/* filter tabs for galleries */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(34px, 4vw, 50px); }
.tab {
  font: 700 12.5px/1 var(--sans); letter-spacing: .06em;
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--line-2);
  background: transparent; color: var(--ink-2); transition: all var(--speed);
}
.tab:hover { border-color: var(--ink); }
.tab.is-on { background: var(--ink); border-color: var(--ink); color: var(--gold-2); }
.tab .cnt { opacity: .6; font-weight: 600; margin-left: 4px; }

/* masonry-ish monument gallery */
.masonry { columns: 3; column-gap: 16px; }
.masonry > a, .masonry > figure { break-inside: avoid; margin: 0 0 16px; display: block; position: relative; border-radius: var(--r); overflow: hidden; background: #e6e7e3; }
.masonry img { width: 100%; transition: transform .9s var(--ease); }
.masonry a:hover img { transform: scale(1.045); }
.masonry > figure { cursor: zoom-in; }
.masonry__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; background: linear-gradient(transparent, rgba(16,17,19,.72)); color: #fff; font: 600 12px var(--sans); letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: all var(--speed); }
.masonry > figure:hover .masonry__cap, .masonry > a:hover .masonry__cap { opacity: 1; transform: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(10,11,13,.94); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.is-open { display: flex; animation: fadeIn .3s; }
.lightbox img { max-width: min(1180px, 92vw); max-height: 84vh; object-fit: contain; box-shadow: var(--shadow-md); }
.lightbox button { position: absolute; top: 26px; right: 30px; background: none; border: 0; color: #fff; font-size: 34px; line-height: 1; width: 46px; height: 46px; }
.lightbox .lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #a9adb4; font: 600 13px var(--sans); letter-spacing: .2em; }
.lightbox .lb-prev, .lightbox .lb-next { position: absolute; top: 50%; transform: translateY(-50%); border: 0; background: none; color: #fff; font-size: 40px; width: 60px; height: 90px; line-height: 90px; }
.lightbox .lb-prev { left: 12px; }
.lightbox .lb-next { right: 12px; }

/* ---------- numbered service rows (servicii page) ---------- */
.serv { display: grid; grid-template-columns: 92px 1fr 1.2fr; gap: clamp(20px, 3vw, 40px); align-items: center; padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--line); }
.serv:first-of-type { border-top: 1px solid var(--line); }
.serv__num { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 4vw, 3.4rem); color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1; }
.serv__body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 10px; }
.serv__body p { color: var(--muted); font-size: 15px; }
.serv__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
.serv--has-img { align-items: center; }
.serv--has-img .serv__pic { border-radius: var(--r); overflow: hidden; grid-column: 3; }
.serv--has-img .serv__pic img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ---------- document list (info utile) ---------- */
.doc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 4vw, 48px); }
.doc-card + .doc-card { margin-top: 26px; }
.doc-card h2 { margin-bottom: 26px; }
.doc-card h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; margin: 30px 0 14px; }
.doc-card h3:first-of-type { margin-top: 0; }
.doc-list { list-style: none; display: grid; gap: 13px; }
.doc-list li { display: flex; gap: 15px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); padding: 13px 18px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); line-height: 1.5; }
.doc-list li svg { width: 19px; height: 19px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.doc-list--cols { grid-template-columns: 1fr 1fr; }
.note {
  border-left: 3px solid var(--gold); background: rgba(174,135,64,.07);
  padding: 20px 24px; border-radius: 0 var(--r) var(--r) 0; font-size: 15px; color: var(--ink-2); line-height: 1.65;
}
.note b { color: var(--ink); }
.note--dark { border-left-color: var(--gold-2); background: rgba(255,255,255,.045); color: #c9ccd2; }
.note p + p { margin-top: 8px; }

/* ---------- contact ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.icard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(28px, 3.4vw, 40px); display: grid; gap: 14px; justify-items: start; transition: transform var(--speed) var(--ease), box-shadow var(--speed); }
.icard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icard__ic { width: 52px; height: 52px; border: 1px solid var(--gold-line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); }
.icard__ic svg { width: 22px; height: 22px; }
.icard h3 { font-family: var(--sans); font-weight: 700; font-size: 17px; }
.icard p { font-size: 15px; color: var(--muted); }
.icard a.big { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--ink); }
.icard a.big:hover { color: var(--gold-deep); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(26px, 3.6vw, 46px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font: 700 12.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: 400 15px/1.5 var(--sans); color: var(--ink);
  border: 1px solid var(--line-2); background: var(--bg);
  border-radius: var(--r); padding: 14px 16px; width: 100%;
  transition: border-color var(--speed), background var(--speed);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 12px; color: var(--muted); }
.form-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); }

/* ---------- legal pages ---------- */
.legal { max-width: 880px; margin-inline: auto; }
.legal .doc { font-size: 15.5px; color: var(--ink-2); line-height: 1.8; }
.legal .doc h2 { font-size: 1.5rem; margin: 44px 0 14px; color: var(--ink); }
.legal .doc h2:first-child { margin-top: 0; }
.legal .doc h3 { font-family: var(--sans); font-weight: 700; font-size: 16px; margin: 30px 0 10px; color: var(--ink); }
.legal .doc p { margin-bottom: 14px; color: var(--ink-2); }
.legal .doc ul, .legal .doc ol { padding-left: 22px; margin-bottom: 14px; }
.legal .doc li { margin-bottom: 6px; }
.legal .doc a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tag-legal { font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); border: 1px solid var(--line-2); padding: 9px 14px; border-radius: 100px; }

/* ---------- footer ---------- */
.site-foot { background: var(--dark); color: #b9bdc4; }
.site-foot__main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: clamp(30px, 4vw, 60px); padding: clamp(64px, 8vw, 100px) 0 56px; }
.foot-brand img { height: 38px; width: auto; margin-bottom: 22px; }
.foot-brand p { font-size: 14.5px; line-height: 1.75; color: #a9adb4; max-width: 40ch; }
.foot-h { font: 700 11.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 24px; }
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col a { font-size: 14.5px; color: #c2c6cc; transition: color var(--speed), padding-left var(--speed); }
.foot-col a:hover { color: #fff; padding-left: 4px; }
.foot-contact { display: grid; gap: 16px; }
.foot-contact div { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; }
.foot-contact svg { width: 17px; height: 17px; color: var(--gold-2); flex: none; margin-top: 3px; }
.foot-contact a { color: #fff; font-weight: 600; }
.foot-contact a:hover { color: var(--gold-2); }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; display: grid; place-items: center; color: #fff; transition: all var(--speed); }
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.foot-social svg { width: 17px; height: 17px; }
.site-foot__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.site-foot__bottom .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #8b9098; }
.site-foot__bottom a { color: #c2c6cc; }
.site-foot__bottom a:hover { color: #fff; }
.site-foot__bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.to-top { display: inline-flex; align-items: center; gap: 8px; font: 700 11px var(--sans); letter-spacing: .18em; text-transform: uppercase; color: #c2c6cc; }
.to-top:hover { color: var(--gold-2); }
.to-top svg { width: 13px; height: 13px; }

/* ---------- hero image choice on light pages ---------- */
.section + .section { /* spacing guard */ }
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { border-left: 0; border-top: 1px solid var(--line); }
  .fact:nth-child(-n+2) { border-top: 0; }
  .index__row { grid-template-columns: 60px 1fr auto; }
  .index__tags { grid-column: 2 / -1; }
  .index__thumb { display: none; }
  .site-foot__main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .g-3, .g-4 { grid-template-columns: 1fr 1fr; }
  .split, .band, .cta-dark .wrap { grid-template-columns: 1fr; }
  .split__body, .split__media, .band__body, .band__media { grid-column: auto; }
  .split--rev .split__media { order: -1; }
  .serv { grid-template-columns: 60px 1fr; }
  .serv__num { font-size: 2rem; }
  .serv--has-img .serv__pic { grid-column: 1 / -1; order: 3; margin-top: 6px; }
  .serv--has-img .serv__pic img { aspect-ratio: 16/9; }
  .masonry { columns: 2; }
  .info-grid { grid-template-columns: 1fr; }
  .doc-list--cols, .form-grid, .band__list { grid-template-columns: 1fr; }
  .site-top__left .site-top__item--hide { display: none; }
  .site-top__badge { margin-inline: auto; }
  .site-top .wrap { justify-content: center; }
}
@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .site-foot__main { grid-template-columns: 1fr; }
  .index__row { grid-template-columns: 1fr; gap: 14px; }
  .index__num { font-size: 22px; }
  .index__go { display: none; }
  .cards { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 1; }
  .btn { width: 100%; }
  .hero__cta .btn { width: auto; }
  .brand__tag { display: none; }
  .crumb-hide { display: none; }
}

/* ---------- refinements ---------- */
@media (max-width: 820px) {
  .cta-dark__right { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-top: 30px; }
  .index__row { align-items: start; }
  .band__list li { font-size: 14.5px; }
}
.legal .doc h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.page-hero .crumbs { position: relative; z-index: 2; }
.masonry a { cursor: zoom-in; }
.masonry figure { cursor: zoom-in; }
.doc-card h2.display-3 { font-size: clamp(1.5rem, 2.4vw, 1.95rem); }
.note a { text-decoration: underline; text-underline-offset: 3px; }
.form-card .btn svg { width: 16px; height: 16px; }
.site-head .wrap { min-height: 78px; }
@media (min-width: 1081px) {
  .nav__link { font-size: 13.5px; letter-spacing: .01em; padding-inline: 12px; }
}
/* image hover handled by JS-free CSS where possible */
@media (hover: hover) {
  .index__thumb::after { box-shadow: inset 0 0 0 1px rgba(16,17,19,.08); }
}

/* ============================================================
   DARK CINEMA THEME — component refinements
   ============================================================ */

/* sections rhythm on dark */
.section--soft  { background: var(--bg-2); }
.section--surface { background: #101318; }
.section--dark {
  background:
    radial-gradient(120% 130% at 18% 0%, rgba(190, 150, 82, 0.10), transparent 46%),
    linear-gradient(180deg, #0a0c0f, #07080a);
  border-block: 1px solid rgba(233,231,225,0.05);
}
.cta-dark {
  background:
    radial-gradient(95% 150% at 88% 12%, rgba(210, 170, 96, 0.14), transparent 55%),
    radial-gradient(70% 120% at 0% 100%, rgba(255,255,255,0.03), transparent 50%),
    linear-gradient(180deg, #0c0e11, #08090b);
}

/* gold buttons — dark label for AA contrast on gold */
.btn--gold {
  background: linear-gradient(135deg, #d3ab63, #a9843f);
  color: #191309;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 42px -16px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.3); }

/* transparent ghost (was for light paper) now over dark */
.btn--ghost-d { border-color: rgba(233,231,225,.35); color: #e9e7e1; }
.btn--ghost-d:hover { background: #e9e7e1; color: #101216; }

/* hero / inner heroes get richer vignette */
.hero__bg::after {
  background:
    linear-gradient(80deg, rgba(5,6,8,.96) 0%, rgba(7,8,10,.86) 40%, rgba(7,8,10,.55) 72%, rgba(7,8,10,.34) 100%);
}
.page-hero { background: linear-gradient(150deg, #0d1014, #07080a); }
.page-hero--alt::before { opacity: .8; }

/* index list over dark */
.index__row:hover { background: rgba(233,231,225,.028); }
.chip { background: rgba(22,26,32,.6); color: #d6d8da; border-color: rgba(233,231,225,.14); }
.chip--dark { border-color: rgba(255,255,255,.2); color: #d6d8da; }
.index__go { border-color: rgba(233,231,225,.25); color: #e9e7e1; }
.index__row:hover .index__go { background: var(--gold-2); border-color: var(--gold-2); color: #171309; transform: translateX(4px); }

/* active gallery tabs */
.tab { border-color: rgba(233,231,225,.22); color: #d6d8da; background: transparent; }
.tab:hover { border-color: var(--gold-2); color: #fff; }
.tab.is-on { background: var(--gold-2); border-color: var(--gold-2); color: #191309; }

/* media frames on dark */
.media__frame { background: #1c2128; box-shadow: 0 34px 70px -30px rgba(0,0,0,.75); }
.media__off { border-color: #0b0d10; }
.media__badge { background: #14181d; border: 1px solid rgba(214,176,106,.28); box-shadow: 0 18px 40px -18px rgba(0,0,0,.8); }
.thumbs a { background: #1c2128; }
.thumbs a::after { background: rgba(5,6,8,.55); }

/* masonry */
.masonry > a, .masonry > figure { background: #1b2027; }
.masonry__cap { background: linear-gradient(transparent, rgba(4,5,7,.85)); }

/* cards / documents / info cards */
.pcard { background: #13161b; border-color: rgba(233,231,225,.09); }
.pcard:hover { border-color: rgba(214,176,106,.35); box-shadow: 0 34px 70px -30px rgba(0,0,0,.8); }
.pcard__img { background: linear-gradient(180deg, #f4f3ef, #e7e5de); }
.pcard__body { border-top-color: rgba(233,231,225,.08); }
.pcard p { color: var(--muted); }
.doc-card { background: #13161b; border-color: rgba(233,231,225,.09); }
.icard { background: #13161b; border-color: rgba(233,231,225,.09); }
.icard a.big { color: #fff; }
.icard a.big:hover { color: var(--gold-2); }
.icard__ic { color: var(--gold-2); }

/* lists & notes */
.doc-list li { background: #101318; border-color: rgba(233,231,225,.08); color: #d6d8da; }
.note { background: rgba(214,176,106,.06); color: #d6d8da; border-left-color: var(--gold-2); }
.serv { border-bottom-color: rgba(233,231,225,.08); }
.serv:first-of-type { border-top-color: rgba(233,231,225,.08); }
.stack p { color: var(--muted); }
.index__title p { color: var(--muted); }

/* forms on dark */
.form-card { background: #13161b; border-color: rgba(233,231,225,.09); }
.field label { color: #d6d8da; }
.field input, .field select, .field textarea {
  background: #0e1115; color: #e9e7e1;
  border-color: rgba(233,231,225,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #7d848d; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-2); background: #10151b; }

/* facts band */
.facts { background: #101318; border-block-color: rgba(233,231,225,.07); }
.fact { border-left-color: rgba(233,231,225,.07); }
.fact__ic { color: var(--gold-2); }
.fact p { color: var(--muted); }

/* header / footer */
.site-head { background: rgba(11,13,16,.8); border-bottom-color: rgba(233,231,225,.07); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.site-head.is-stuck { box-shadow: 0 22px 44px -28px rgba(0,0,0,.8); }
.nav__link { color: #c2c6cc; }
.nav__link:hover, .nav__link.is-active { color: #fff; }
.brand__tag { color: var(--gold-2); }
.burger span { background: #e9e7e1; }
.mobile-nav { background: #0b0d10; }
.mobile-nav a.mnav { border-bottom-color: rgba(233,231,225,.08); }
.site-foot { background: #07080a; }
.site-foot__bottom { border-top-color: rgba(233,231,225,.08); }

/* legal */
.legal .doc a { color: var(--gold-2); }
.tag-legal { color: #d6d8da; border-color: rgba(233,231,225,.18); }

/* split media side images inherit */
.text-muted { color: var(--muted); }
.lead { color: #d9dbd6; }
p { color: #c6c9c7; }
h1, h2, h3, h4 { color: #f4f2ec; }
.section p, .section--soft p { color: #c6c9c7; }

/* map tiles feel darker while interactive */
.map-frame iframe { filter: grayscale(1) brightness(.82) contrast(1.06); }
.map-frame:hover iframe { filter: grayscale(.2) brightness(.95) contrast(1.03); }

/* scrollbar-ish details */
.link-arrow { color: #f1efe9; border-bottom-color: rgba(233,231,225,.22); }
.link-arrow:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }

/* selection / focus accents */
::selection { background: rgba(214,176,106,.28); }
:focus-visible { outline-color: var(--gold-2); }

/* index numbering & serif numerals */
.index__num { color: var(--gold-2); }
.serv__num { -webkit-text-stroke: 1px var(--gold-2); }

/* ---------- hardening: vertical centering (header + icon glyphs) ---------- */
.site-head .wrap > * { align-self: center; }
.nav, .nav__links, .nav__links li { display: flex; align-items: center; }
.nav__link { display: inline-flex; align-items: center; }
.nav__cta { display: flex; align-items: center; }
.icard__ic, .cta-row__ic, .fact__ic, .stack__ic, .media__badge, .foot-social a, .icard__ic, .hero__orn {
  display: flex; align-items: center; justify-content: center;
}
.icard__ic svg, .cta-row__ic svg, .fact__ic svg, .stack__ic svg, .foot-social svg, .media__badge svg { flex: none; }

/* ---------- bulletproof centering (v4) ---------- */
.site-head .wrap { align-items: center !important; }
.brand, .nav, .nav__cta { align-self: center !important; }
.nav__links li a { display: inline-flex; align-items: center; }
.icard__ic, .cta-row__ic {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.icard__ic svg, .cta-row__ic svg { flex: none !important; margin: auto !important; }
