/* ==========================================================================
   TENDER CONSULTANT — Tenderconsultant.eu
   Premium editorial system · Poland & Ireland public procurement support
   Palette: off-white #EDEBE6 · ink #1C1C1A · deep brown #3B2A2A
            burgundy #765B55 · beige #C6B8A8 · light grey #D8D6D0
   Type: Playfair Display (display serif) · Inter (utility sans)
   ========================================================================== */

:root {
  --bg: #EDEBE6;
  --bg-2: #E6E3DC;
  --line: #D8D6D0;
  --line-dark: rgba(28, 28, 26, 0.14);
  --ink: #1C1C1A;
  --brown: #16273F;
  --navy: #0D2241;
  --gold: #C9A227;
  --burg: #765B55;
  --beige: #C6B8A8;
  --white: #FFFFFF;
  --soft: #8E8E86;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --pad: clamp(20px, 4.5vw, 72px);
  --fs-hero: clamp(42px, 6.6vw, 100px);
  --fs-h2: clamp(32px, 4.4vw, 60px);
  --fs-h3: clamp(24px, 2.6vw, 34px);
  --fs-statement: clamp(30px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--brown); color: var(--bg); }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em, .statement em { font-style: italic; font-weight: 400; color: var(--burg); }

.wrap { max-width: 1440px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* --------------------------------------------------------------------------
   Micro components
   -------------------------------------------------------------------------- */
.label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--soft);
}
.label::before { content: ""; width: 34px; height: 1px; background: var(--burg); }
.label.no-rule::before { display: none; }
.label.on-dark { color: var(--beige); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px; border: 1px solid var(--ink);
  font-family: var(--sans); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: transparent; cursor: pointer;
  position: relative; overflow: hidden; transition: color 0.45s var(--ease), border-color 0.45s var(--ease);
  will-change: transform;
}
.btn::after { content: "→"; font-size: 13px; letter-spacing: 0; transition: transform 0.45s var(--ease); }
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.45s var(--ease); z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: scaleY(1); }
.btn:hover::after { transform: translateX(5px); }
.btn:focus-visible { outline: 2px solid var(--burg); outline-offset: 3px; }

.btn.solid { background: var(--ink); color: var(--bg); }
.btn.solid::before { background: var(--burg); transform-origin: top; }
.btn.solid:hover { color: var(--white); border-color: var(--burg); }

.btn.on-dark { border-color: rgba(237, 235, 230, 0.4); color: var(--bg); }
.btn.on-dark::before { background: var(--bg); }
.btn.on-dark:hover { color: var(--ink); border-color: var(--bg); }
.btn.on-dark.solid { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.btn.on-dark.solid::before { background: var(--beige); }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-dark); padding-bottom: 6px; transition: border-color 0.3s, gap 0.3s;
}
.text-link::after { content: "→"; }
.text-link:hover { border-color: var(--ink); gap: 16px; }

/* --------------------------------------------------------------------------
   Page transitions
   -------------------------------------------------------------------------- */
@keyframes pagein { from { opacity: 0; } to { opacity: 1; } }
body { animation: pagein 0.5s ease; }
body.leaving { opacity: 0; transition: opacity 0.24s ease; }
@media (prefers-reduced-motion: reduce) { body { animation: none; } body.leaving { opacity: 1; } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(237, 235, 230, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.header.hide { transform: translateY(-101%); }
.header-in {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 12px; line-height: 1; }
.logo img { height: 40px; width: auto; display: block; }
.logo .logo-txt { display: flex; flex-direction: column; gap: 3px; }
.logo strong { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.22em; }
.logo span { font-size: 8px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--soft); }

.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--burg); transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--burg); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { padding: 13px 24px; }

/* Language switch */
.lang-switch { display: flex; align-items: center; border: 1px solid var(--line-dark); }
.lang-switch button {
  background: none; border: 0; cursor: pointer; padding: 8px 11px;
  font: 600 10.5px var(--sans); letter-spacing: 0.14em; color: var(--soft);
  transition: color 0.3s, background 0.3s;
}
.lang-switch button[aria-pressed="true"] { color: var(--bg); background: var(--navy); }
.lang-switch button:focus-visible { outline: 2px solid var(--burg); outline-offset: 2px; }

/* Floating WhatsApp — small icon-only circle, fixed bottom-right */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; padding: 0; border-radius: 50%; overflow: hidden;
  background: var(--navy); color: var(--bg); text-decoration: none;
  box-shadow: 0 10px 30px rgba(13, 34, 65, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(13, 34, 65, 0.4); }
.wa-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wa-float svg, .wa-float .wa-ic { width: 26px; height: 26px; fill: #7FBA76; flex: none; }

/* Cookie banner */
.cookie {
  position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 95;
  max-width: 520px; background: var(--white); border: 1px solid var(--line-dark);
  padding: 22px 24px; display: none; gap: 16px; align-items: flex-start;
  box-shadow: 0 18px 50px rgba(28, 28, 26, 0.14);
}
.cookie.show { display: flex; }
.cookie p { font-size: 12.5px; line-height: 1.55; color: var(--soft); }
.cookie p a { text-decoration: underline; color: var(--ink); }
.cookie .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-direction: column; }
.cookie button {
  cursor: pointer; font: 600 11px var(--sans); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 16px; border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  transition: opacity 0.3s;
}
.cookie button.ghost { background: none; color: var(--ink); }
.cookie button:hover { opacity: 0.82; }
@media (max-width: 560px) { .cookie { flex-direction: column; } .cookie .cookie-actions { flex-direction: row; } }

.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
}
.burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(28, 28, 26, 0.45); z-index: 98;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 86vw); z-index: 99;
  background: var(--brown); color: var(--bg);
  padding: 96px 44px 44px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(102%); transition: transform 0.5s var(--ease); overflow-y: auto;
}
.mobile-menu a {
  font-family: var(--serif); font-size: 27px; padding: 9px 0;
  border-bottom: 1px solid rgba(237, 235, 230, 0.12);
  display: flex; justify-content: space-between; align-items: baseline;
  opacity: 0; transform: translateY(14px); transition: opacity 0.4s, transform 0.5s var(--ease);
}
.mobile-menu a small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--beige); }
.mobile-menu .mm-cta { margin-top: 28px; border: 0; }
.mobile-close {
  position: absolute; top: 24px; right: 24px; background: none; border: 0; color: var(--bg);
  font-size: 26px; cursor: pointer; width: 44px; height: 44px; line-height: 1;
}
body.menu-open { overflow: hidden; }
body.menu-open .mobile-overlay { opacity: 1; pointer-events: auto; }
body.menu-open .mobile-menu { transform: translateX(0); }
body.menu-open .mobile-menu a { opacity: 1; transform: translateY(0); }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.08s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.11s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.14s; }
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.17s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: 0.2s; }
body.menu-open .mobile-menu a:nth-child(8) { transition-delay: 0.23s; }
body.menu-open .mobile-menu a:nth-child(9) { transition-delay: 0.26s; }
body.menu-open .mobile-menu a:nth-child(10) { transition-delay: 0.29s; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-bgword {
  position: absolute; right: -0.06em; bottom: -0.18em; z-index: 0;
  font-family: var(--serif); font-size: clamp(120px, 24vw, 380px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(28, 28, 26, 0.07);
  letter-spacing: 0.02em; pointer-events: none; user-select: none;
  opacity: 0; transition: opacity 2.4s ease 0.9s;
}
.hero-bgword.in { opacity: 1; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 88px); align-items: end;
  padding-top: clamp(48px, 7vh, 96px);
}
.hero-copy { padding-bottom: clamp(80px, 15vh, 200px); }
.hero-copy h1 { max-width: 16ch; }
.hero-copy .label { margin-bottom: 34px; }
.hero h1 { font-size: var(--fs-hero); }
.hero-sub {
  max-width: 52ch; margin-top: 34px; color: var(--soft);
  font-size: 16.5px; font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.hero-media { position: relative; align-self: stretch; min-height: 480px; }
.hero-media figure {
  position: absolute; inset: 0; overflow: hidden;
  clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease) 0.35s;
}
.hero-media.in figure { clip-path: inset(0 0 0 0); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08); transition: transform 1.8s var(--ease) 0.35s;
}
.hero-media.in img { transform: scale(1); }
.hero-media figcaption {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bg);
  background: rgba(28, 28, 26, 0.55); padding: 9px 14px; backdrop-filter: blur(6px);
}

/* Line-mask reveal for display headings */
.mask-line { display: block; overflow: hidden; }
.mask-line > span { display: block; transform: translateY(112%); transition: transform 1.05s var(--ease); }
.in .mask-line > span, .mask-line.in > span { transform: translateY(0); }
.mask-line:nth-child(2) > span { transition-delay: 0.12s; }
.mask-line:nth-child(3) > span { transition-delay: 0.24s; }
.mask-line:nth-child(4) > span { transition-delay: 0.36s; }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s ease, transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .mask-line > span, .hero-media figure, .hero-media img { transition: none !important; transform: none !important; opacity: 1 !important; clip-path: none !important; }
  .hero-bgword { transition: none; }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: clamp(72px, 11vh, 140px) 0; }
.section-head { display: flex; flex-direction: column; gap: 26px; margin-bottom: clamp(40px, 6vh, 72px); }
.section-head h2 { font-size: var(--fs-h2); max-width: 18ch; }
.section-head .lede { max-width: 58ch; color: var(--soft); font-size: 16.5px; }
.section-head.split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.section-head.split > div { display: flex; flex-direction: column; gap: 26px; }

/* Stats grid — thin line grid */
.stats { border-top: 1px solid var(--line); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
}
.stat {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(28px, 3.5vw, 52px) clamp(20px, 2.6vw, 40px);
  display: flex; flex-direction: column; gap: 14px; min-height: 190px; justify-content: space-between;
  transition: background 0.5s;
}
.stat:hover { background: rgba(216, 214, 208, 0.25); }
.stat .num { font-family: var(--serif); font-size: clamp(38px, 4.2vw, 64px); line-height: 1; }
.stat .num sup { font-size: 0.5em; color: var(--burg); }
.stat p { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); }
.disclaimer {
  font-size: 12px; color: var(--soft); max-width: 74ch; line-height: 1.7;
  padding-top: 22px; display: flex; gap: 12px;
}
.disclaimer::before { content: "*"; color: var(--burg); font-family: var(--serif); font-size: 18px; }

/* Navy editorial block */
.block-brown { background: var(--navy); color: var(--bg); }
.block-brown .label { color: var(--beige); }
.block-brown h2 em { color: var(--beige); }
.block-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.block-grid .body { color: rgba(237, 235, 230, 0.75); font-size: 16.5px; max-width: 54ch; }
.block-grid h2 { font-size: var(--fs-h2); margin: 26px 0 28px; }
.img-frame { position: relative; overflow: hidden; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(237, 235, 230, 0.28); pointer-events: none;
}
.parallax-img { overflow: hidden; }
.parallax-img img { will-change: transform; transform: scale(1.12); }

/* Statement */
.statement {
  font-family: var(--serif); font-size: var(--fs-statement); line-height: 1.08;
  text-transform: uppercase; letter-spacing: 0.01em; max-width: 24ch;
}
.statement-sub { max-width: 52ch; color: var(--soft); font-size: 16.5px; margin-top: 34px; }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card { position: relative; overflow: hidden; background: var(--brown); min-height: 380px; display: flex; align-items: flex-end; color: var(--bg); }
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.82; transition: transform 1.1s var(--ease), opacity 0.7s;
}
.svc-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 26, 0.05) 30%, rgba(28, 28, 26, 0.82) 100%);
  transition: background 0.6s;
}
.svc-card:hover img { transform: scale(1.07); opacity: 0.95; }
.svc-in { position: relative; z-index: 2; padding: 30px 28px; width: 100%; }
.svc-in .idx { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--beige); display: block; margin-bottom: 12px; }
.svc-in h3 { font-family: var(--sans); font-size: 13.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.5; }
.svc-in p { font-size: 13px; color: rgba(237, 235, 230, 0.72); margin-top: 10px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--ease), opacity 0.5s 0.1s; }
.svc-card:hover .svc-in p { max-height: 110px; opacity: 1; }
.svc-arrow { position: absolute; top: 24px; right: 24px; z-index: 2; font-size: 18px; color: var(--bg); opacity: 0.5; transition: opacity 0.4s, transform 0.5s var(--ease); }
.svc-card:hover .svc-arrow { opacity: 1; transform: translate(4px, -4px); }

/* Two-column editorial (team etc.) */
.duo { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 100px); align-items: center; }
.duo h2 { font-size: var(--fs-h2); margin: 26px 0 28px; }
.duo .body { color: var(--soft); font-size: 16.5px; max-width: 56ch; }
.duo-list { margin-top: 34px; border-top: 1px solid var(--line); }
.duo-list li { display: flex; gap: 20px; align-items: baseline; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.duo-list li span:first-child { font-family: var(--serif); font-style: italic; color: var(--burg); font-size: 15px; min-width: 30px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line-dark);
  padding: 11px 2px; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  border-radius: 0; transition: border-color 0.35s; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--burg); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%233B2A2A' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 4px center; cursor: pointer; }
.on-dark-form .field label { color: var(--beige); }
.on-dark-form .field input, .on-dark-form .field select, .on-dark-form .field textarea { color: var(--bg); border-bottom-color: rgba(237, 235, 230, 0.3); }
.on-dark-form .field input:focus, .on-dark-form .field select:focus, .on-dark-form .field textarea:focus { border-bottom-color: var(--beige); }
.on-dark-form .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23C6B8A8' fill='none'/%3E%3C/svg%3E"); }
.on-dark-form ::placeholder { color: rgba(237, 235, 230, 0.4); }
.form-note { font-size: 12px; color: var(--soft); }
.on-dark-form .form-note { color: rgba(237, 235, 230, 0.55); }

.form-success { display: none; text-align: center; padding: clamp(40px, 6vh, 80px) 20px; }
.form-success .tick {
  width: 64px; height: 64px; border: 1px solid var(--burg); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 26px;
  font-family: var(--serif); font-size: 26px; color: var(--burg);
  animation: pop 0.7s var(--ease);
}
.form-success h3 { font-size: var(--fs-h3); margin-bottom: 12px; }
.form-success p { color: var(--soft); font-size: 15px; max-width: 44ch; margin: 0 auto; }
form.done { display: none; }
form.done + .form-success { display: block; animation: fadeup 0.7s var(--ease); }
@keyframes pop { 0% { transform: scale(0.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Reviews */
.rating { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); }
.rating .stars { color: var(--burg); font-size: 15px; letter-spacing: 0.3em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.review { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(28px, 3vw, 48px); display: flex; flex-direction: column; gap: 26px; }
.review blockquote { font-family: var(--serif); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; font-style: italic; }
.review blockquote::before { content: "“"; display: block; font-size: 54px; line-height: 0.6; color: var(--beige); margin-bottom: 18px; }
.review cite { font-style: normal; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); margin-top: auto; }

/* Process preview grid */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pcell { background: var(--bg); padding: 26px 24px 32px; display: flex; flex-direction: column; gap: 40px; transition: background 0.5s; }
.pcell:hover { background: var(--white); }
.pcell .no { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--burg); }
.pcell .t { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.6; }

/* Steps */
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 110px minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 60px); padding: clamp(26px, 3.4vh, 44px) 0;
  border-bottom: 1px solid var(--line); align-items: baseline;
}
.step .no { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.4vw, 34px); color: var(--burg); }
.step h3 { font-size: clamp(20px, 2vw, 27px); }
.step p { color: var(--soft); font-size: 15.5px; max-width: 58ch; }

/* Countries */
.country-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.country { background: var(--bg); padding: clamp(32px, 4vw, 60px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; transition: background 0.5s; }
.country:hover { background: var(--white); }
.country h3 { font-size: var(--fs-h3); margin-bottom: 6px; }
.country .sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--burg); font-weight: 600; }
.country ul { margin-top: 26px; }
.country li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; display: flex; gap: 12px; align-items: baseline; }
.country li::before { content: "—"; color: var(--burg); }
.country-glyph { font-family: var(--serif); font-style: italic; font-size: clamp(64px, 7vw, 110px); line-height: 0.9; color: transparent; -webkit-text-stroke: 1px var(--burg); align-self: start; user-select: none; }

/* Industries */
.industries { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line-dark); padding: 13px 24px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.4s, color 0.4s, border-color 0.4s; cursor: default;
}
.chip:hover { background: var(--brown); color: var(--bg); border-color: var(--brown); }

/* Journal */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.j-card { display: flex; flex-direction: column; gap: 20px; }
.j-card .img-frame { aspect-ratio: 4 / 3; }
.j-card .img-frame::after { inset: 12px; border-color: rgba(237, 235, 230, 0.35); }
.j-card img { transition: transform 1s var(--ease); }
.j-card:hover img { transform: scale(1.05); }
.j-card .meta { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); display: flex; gap: 16px; }
.j-card h3 { font-size: clamp(20px, 1.8vw, 25px); line-height: 1.25; }
.j-card p { color: var(--soft); font-size: 14.5px; }
.j-card .text-link { align-self: flex-start; margin-top: 4px; }

/* Final CTA */
.cta-final { background: var(--navy); color: var(--bg); position: relative; overflow: hidden; }
.cta-final .hero-bgword { color: transparent; -webkit-text-stroke: 1px rgba(237, 235, 230, 0.08); bottom: auto; top: -0.14em; }
.cta-final h2 { font-size: clamp(36px, 5.4vw, 84px); max-width: 16ch; }
.cta-final .label { color: var(--beige); }
.cta-final .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 48px; }

/* Footer */
.footer { background: var(--brown); color: var(--bg); }
.footer .logo img { height: 44px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.8fr)); gap: clamp(32px, 4vw, 72px); padding: clamp(56px, 8vh, 96px) 0 56px; }
.footer h4 { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--beige); margin-bottom: 22px; }
.footer a, .footer p { font-size: 14px; color: rgba(237, 235, 230, 0.75); }
.footer li { padding: 5px 0; }
.footer a:hover { color: var(--bg); }
.footer .logo strong { color: var(--bg); }
.footer .logo span { color: var(--beige); }
.footer .f-mail { font-family: var(--serif); font-size: clamp(20px, 2vw, 27px); color: var(--bg); display: inline-block; margin-top: 18px; border-bottom: 1px solid rgba(237, 235, 230, 0.3); padding-bottom: 4px; }
.footer .f-mail:hover { border-color: var(--beige); }
.footer-word {
  font-family: var(--serif); font-size: clamp(64px, 12.5vw, 210px); line-height: 0.85; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(237, 235, 230, 0.16); user-select: none; letter-spacing: 0.02em;
}
.footer-bottom {
  border-top: 1px solid rgba(237, 235, 230, 0.14); margin-top: -10px;
  padding: 26px 0 34px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.08em; color: rgba(237, 235, 230, 0.5);
}
.footer-bottom .f-disclaimer { max-width: 68ch; line-height: 1.7; }
.footer-bottom nav { display: flex; gap: 22px; }

/* --------------------------------------------------------------------------
   Inner-page hero
   -------------------------------------------------------------------------- */
.page-hero { border-bottom: 1px solid var(--line); padding: clamp(56px, 9vh, 110px) 0 clamp(44px, 7vh, 88px); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(38px, 5.6vw, 84px); max-width: 14ch; }
.page-hero .lede { max-width: 56ch; color: var(--soft); font-size: 16.5px; margin-top: 30px; }
.page-hero .label { margin-bottom: 30px; }
.crumb { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--soft); display: flex; gap: 10px; margin-bottom: 46px; }
.crumb a:hover { color: var(--burg); }

/* Service detail rows */
.svc-row {
  display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1fr) 220px;
  gap: clamp(20px, 3vw, 56px); align-items: center;
  padding: clamp(30px, 4vh, 52px) 0; border-bottom: 1px solid var(--line);
}
.svc-row .no { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--burg); }
.svc-row h3 { font-size: clamp(21px, 2.1vw, 29px); }
.svc-row p { color: var(--soft); font-size: 15px; }
.svc-row .img-frame { aspect-ratio: 4 / 3; display: none; }
.svc-row .btn { justify-self: end; white-space: nowrap; }

/* Consultation options */
.consult-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.consult { background: var(--bg); padding: clamp(28px, 3.2vw, 48px); display: flex; flex-direction: column; gap: 20px; transition: background 0.5s; }
.consult:hover { background: var(--white); }
.consult .dur { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--burg); }
.consult h3 { font-size: clamp(20px, 1.9vw, 26px); }
.consult p { color: var(--soft); font-size: 14.5px; flex: 1; }
.consult .tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soft); }

/* Values strip (about) */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--bg); padding: 30px 26px 40px; transition: background 0.5s; }
.value:hover { background: var(--white); }
.value .no { font-family: var(--serif); font-style: italic; color: var(--burg); font-size: 15px; display: block; margin-bottom: 40px; }
.value h3 { font-size: 19px; margin-bottom: 8px; }
.value p { font-size: 13.5px; color: var(--soft); }
.values.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Prose (privacy) */
.prose { max-width: 76ch; }
.prose h2 { font-size: clamp(24px, 2.4vw, 34px); margin: 52px 0 18px; }
.prose p, .prose li { color: #4c4c48; font-size: 15.5px; margin-bottom: 14px; }
.prose ul { list-style: none; padding-left: 0; }
.prose li { padding-left: 24px; position: relative; }
.prose li::before { content: "—"; position: absolute; left: 0; color: var(--burg); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 110px); }
.contact-meta { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.contact-meta div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-meta h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--soft); margin-bottom: 8px; }
.contact-meta p, .contact-meta a { font-family: var(--serif); font-size: clamp(18px, 1.8vw, 24px); }
.contact-meta a:hover { color: var(--burg); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header-cta .btn { display: none; }
  .svc-grid, .reviews-grid, .journal-grid, .consult-grid { grid-template-columns: repeat(2, 1fr); }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .values, .values.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 60px minmax(0, 1fr) 190px; }
  .svc-row p { grid-column: 2; }
  .svc-row .btn { grid-column: 3; grid-row: 1; }
}
@media (max-width: 820px) {
  .hero-grid, .block-grid, .duo, .country-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 420px; }
  .hero-copy { padding-bottom: 0; }
  .hero-grid { padding-bottom: 56px; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 56px 1fr; }
  .step p { grid-column: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; }
  .svc-row .no { font-size: 20px; }
  .svc-row .btn, .svc-row p { grid-column: 1; }
  .svc-row .btn { justify-self: start; }
  .country-glyph { font-size: 54px; }
}
@media (max-width: 560px) {
  .svc-grid, .svc-ico-grid, .reviews-grid, .journal-grid, .consult-grid, .pgrid, .stats-grid, .values, .values.cols-3, .footer-top, .copt-grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; gap: 8px; }
  .btn { width: 100%; }
  .hero-actions .btn, .actions .btn { width: 100%; }
  .header-in { height: 72px; }
}

/* ==========================================================================
   v3 additions — top contact bar · icon service cards · dashboard panel ·
   founder section · contact options · design-block mocks · WhatsApp
   ========================================================================== */

/* Lucide inline icons default */
[data-lucide] { width: 18px; height: 18px; stroke-width: 1.6; vertical-align: middle; }

/* Top contact bar (scrolls away; nav below stays sticky) */
.topbar { background: var(--navy); color: rgba(237, 235, 230, 0.8); }
.topbar-in { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); min-height: 40px; }
.tb-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.03em; transition: color 0.3s; padding: 8px 0; }
.tb-item:hover { color: var(--bg); }
.tb-item [data-lucide] { width: 15px; height: 15px; }
.tb-item .wa-ic { width: 16px; height: 16px; fill: #7FBA76; }
.tb-item:first-child { margin-right: auto; }
@media (max-width: 720px) {
  .topbar-in { gap: 18px; justify-content: center; }
  .tb-item:first-child { margin-right: 0; }
  .tb-item.wa-link span, .tb-item:last-child span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

/* Hero dashboard panel (vector, always sharp) */
.hero-media.panel-host { min-height: 0; align-self: center; display: flex; align-items: center; }
.hero-panel {
  width: 100%; background: var(--white); border: 1px solid var(--line-dark); border-radius: 12px;
  box-shadow: 0 20px 60px rgba(13, 34, 65, 0.1); overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .hero-panel { animation: none; } }
.hp-head { display: flex; align-items: center; gap: 8px; padding: 16px 22px; border-bottom: 1px solid var(--line); background: var(--bg); }
.hp-head .hp-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.hp-head strong { margin-left: 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; }
.hp-head [data-lucide] { margin-left: auto; width: 16px; height: 16px; color: var(--soft); }
.hp-body { padding: 10px 22px 8px; }
.hp-row { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(10px); }
.hero-media.in .hp-row { animation: hpin 0.6s var(--ease) forwards; }
.hero-media.in .hp-row:nth-child(1) { animation-delay: 0.5s; }
.hero-media.in .hp-row:nth-child(2) { animation-delay: 0.66s; }
.hero-media.in .hp-row:nth-child(3) { animation-delay: 0.82s; }
@keyframes hpin { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hp-row { opacity: 1 !important; transform: none !important; } }
.hp-row > div { flex: 1; }
.hp-row b { display: block; font-size: 14px; font-weight: 600; }
.hp-row span { font-size: 11.5px; color: var(--soft); letter-spacing: 0.02em; }
.hp-match { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--gold); }
.hp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.hp-stat { background: var(--white); padding: 18px 14px; text-align: center; }
.hp-stat b { display: block; font-family: var(--serif); font-size: 26px; color: var(--navy); line-height: 1; }
.hp-stat span { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); }

/* Icon service cards */
.svc-ico-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-ico {
  background: var(--bg); padding: clamp(28px, 3vw, 44px); display: flex; flex-direction: column; gap: 16px;
  transition: background 0.5s; position: relative;
}
.svc-ico:hover { background: var(--white); }
.svc-ico .ic {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--line-dark);
  display: grid; place-items: center; color: var(--navy); transition: background 0.45s var(--ease), color 0.45s, border-color 0.45s;
}
.svc-ico .ic [data-lucide] { width: 23px; height: 23px; stroke-width: 1.5; }
.svc-ico:hover .ic { background: var(--navy); color: var(--bg); border-color: var(--navy); }
.svc-ico .idx { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--burg); position: absolute; top: clamp(24px, 3vw, 40px); right: clamp(24px, 3vw, 40px); }
.svc-ico h3 { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.45; margin-top: 6px; }
.svc-ico p { font-size: 14px; color: var(--soft); line-height: 1.6; }
.svc-ico .text-link { margin-top: auto; align-self: flex-start; font-size: 10.5px; }

/* Design-block mock (replaces photos where a clean vector card is better) */
.mock { background: var(--white); border: 1px solid var(--line-dark); border-radius: 12px; padding: 26px 28px; box-shadow: 0 12px 40px rgba(13, 34, 65, 0.07); }
.mock-title { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); padding-bottom: 8px; }
.mock-title [data-lucide] { width: 17px; height: 17px; color: var(--burg); }
.mock-row { display: flex; align-items: center; gap: 14px; padding: 15px 2px; border-top: 1px solid var(--line); font-size: 14.5px; }
.mock-row [data-lucide] { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }
.mock-row span.tag { margin-left: auto; font-size: 11px; letter-spacing: 0.06em; color: var(--soft); }
.block-brown .mock { background: rgba(255, 255, 255, 0.05); border-color: rgba(237, 235, 230, 0.2); box-shadow: none; backdrop-filter: blur(2px); }
.block-brown .mock-title { color: var(--bg); }
.block-brown .mock-title [data-lucide] { color: var(--beige); }
.block-brown .mock-row { border-color: rgba(237, 235, 230, 0.16); color: rgba(237, 235, 230, 0.9); }
.block-brown .mock-row [data-lucide] { color: var(--gold); }
.block-brown .mock-row span.tag { color: rgba(237, 235, 230, 0.55); }

/* Founder section */
.founder { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(36px, 5vw, 84px); align-items: center; }
.founder-photo { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 4 / 5; max-width: 460px; box-shadow: 0 24px 60px rgba(13, 34, 65, 0.16); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px 18px; background: linear-gradient(to top, rgba(13, 34, 65, 0.86), transparent); color: var(--bg); }
.founder-photo figcaption b { font-family: var(--serif); font-size: 20px; font-weight: 500; display: block; }
.founder-photo figcaption span { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--beige); }
.founder h2 { font-size: var(--fs-h2); margin: 24px 0 24px; }
.founder .body { color: var(--soft); font-size: 16.5px; max-width: 56ch; }
.founder .sig { margin-top: 30px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--navy); }
.founder .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Contact options (Email / WhatsApp / Form) */
.copt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-bottom: clamp(40px, 6vh, 72px); }
.copt { background: var(--bg); padding: clamp(30px, 3.4vw, 48px); display: flex; flex-direction: column; gap: 16px; transition: background 0.5s; }
.copt:hover { background: var(--white); }
.copt .ic { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--navy); }
.copt .ic [data-lucide] { width: 22px; height: 22px; }
.copt .ic .wa-ic { width: 24px; height: 24px; fill: #1F8A5B; }
.copt h3 { font-size: 19px; }
.copt p { font-size: 14px; color: var(--soft); flex: 1; }
.copt .text-link { align-self: flex-start; }

/* Footer contacts + mobile-menu contacts */
.f-contacts { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.f-contacts a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: clamp(17px, 1.6vw, 21px); color: var(--bg); }
.f-contacts a [data-lucide] { width: 17px; height: 17px; }
.f-contacts a .wa-ic { width: 18px; height: 18px; fill: #7FBA76; }
.f-contacts a:hover { color: var(--beige); }
.mm-contact { margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(237, 235, 230, 0.14); display: flex; flex-direction: column; gap: 14px; }
.mm-contact a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 14px; color: rgba(237, 235, 230, 0.82); border: 0; opacity: 1; transform: none; padding: 0; }
.mm-contact a [data-lucide] { width: 16px; height: 16px; }
.mm-contact a .wa-ic { width: 17px; height: 17px; fill: #7FBA76; }

@media (max-width: 1100px) {
  .svc-ico-grid, .copt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 380px; margin: 0 auto; }
  .hero-media.panel-host { order: -1; margin-bottom: 8px; }
}

/* ==========================================================================
   GLOBAL SAFETY NET — logo + WhatsApp sizing (highest priority, all pages)
   Guarantees the logo image and WhatsApp icon can NEVER render oversized,
   even if other CSS is overridden, cached stale, or slow to apply.
   ========================================================================== */
.logo img {
  max-height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
.footer .logo img { max-height: 70px !important; }

/* Every inline WhatsApp glyph is bounded so it stays an icon, never a block */
.wa-ic { width: 22px; height: 22px; flex: none; }
svg.wa-ic { max-width: 28px; max-height: 28px; }

/* Floating WhatsApp button — fixed small circle, bottom-right, above content */
.wa-float {
  position: fixed !important;
  right: 20px !important; bottom: 20px !important;
  width: 56px !important; height: 56px !important;
  max-width: 56px !important; max-height: 56px !important;
  border-radius: 50% !important;
  z-index: 9999 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  overflow: hidden !important; padding: 0 !important;
}
.wa-float .wa-ic, .wa-float svg { width: 26px !important; height: 26px !important; max-width: 26px !important; max-height: 26px !important; }

@media (max-width: 768px) {
  .logo img { max-height: 34px !important; max-width: 150px !important; }
  .footer .logo img { max-height: 60px !important; }
  .wa-float {
    width: 48px !important; height: 48px !important;
    max-width: 48px !important; max-height: 48px !important;
    right: 14px !important; bottom: 14px !important;
  }
  .wa-float .wa-ic, .wa-float svg { width: 23px !important; height: 23px !important; max-width: 23px !important; max-height: 23px !important; }
}

/* Form error message + optional-field hint */
.form-err {
  margin-top: 16px; font-size: 13.5px; line-height: 1.5; color: #9B2C2C;
  border-left: 2px solid #9B2C2C; padding: 4px 0 4px 14px; display: none;
}
.on-dark-form .form-err { color: #F0B8B8; border-color: #F0B8B8; }
.field label .opt { color: var(--soft); text-transform: none; letter-spacing: 0; font-weight: 400; }
.on-dark-form .field label .opt { color: rgba(237, 235, 230, 0.5); }
