/* ══════════════════════════════════════════════════════
   Nurbli — Public Site Stylesheet
   Brand: Roboto Condensed 700 (headings) + Open Sans (body)
   Colors: CSS vars from layout_v2.css :root
   ══════════════════════════════════════════════════════ */

:root {
  --shadow-rest: 0 2px 12px rgba(0,0,0,.04);
  --shadow-hover: 0 6px 20px rgba(0,0,0,.08);
  --shadow-modal: 0 20px 60px rgba(0,0,0,.2);
  --shadow-dark: 0 24px 60px -22px rgba(0,0,0,.55);
  --muted-light: rgba(255,255,255,.72);
  --hairline: rgba(255,255,255,.15);
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; scrollbar-width: none }
html::-webkit-scrollbar { display: none }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
h1, h2, h3, h4, .disp, .label {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
.wrap { max-width: 1400px; margin: 0 auto; padding: 0 40px }
.section { padding: 84px 0 }
.label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ── Badges ── */
.badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 20px; padding: 5px 11px;
  font-family: 'Roboto Condensed'; font-weight: 700;
  font-size: 10px; letter-spacing: .05em;
  text-transform: uppercase; line-height: 1;
}
.badge-info { background: var(--teal-soft); color: var(--teal-dark) }
.badge-success { background: var(--green-soft); color: var(--green) }

/* ── Buttons ── */
.btn-pub {
  display: inline-block; text-align: center;
  font-family: 'Roboto Condensed'; font-weight: 700;
  border-radius: 10px; text-decoration: none;
  cursor: pointer; border: none;
  transition: background .2s, transform .2s, border-color .2s, color .2s;
}
.btn-pub-primary {
  background: var(--teal); color: var(--white);
  padding: 14px 26px; font-size: 1rem; letter-spacing: .02em;
}
.btn-pub-primary:hover { background: var(--teal-mid); transform: translateY(-2px); color: var(--white); text-decoration: none }
.btn-pub-ghost {
  background: transparent; border: 1.5px solid var(--gray-light);
  color: var(--teal-dark); padding: 12px 22px; font-size: .95rem;
}
.btn-pub-ghost:hover { border-color: var(--teal); color: var(--teal); text-decoration: none }
.btn-pub-block { display: block; width: 100% }

/* ── Topbar ── */
.pub-topbar {
  background: var(--white);
  position: sticky; top: 0; z-index: 60; box-shadow: 0 1px 0 var(--gray-light), var(--shadow-rest);
  overflow: visible;
}
.pub-topbar nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px;
}
.pub-topbar .pub-logo { display: flex; align-items: center; text-decoration: none }
.pub-topbar .pub-logo img { height: 64px; width: auto }
.pub-nav-links { display: flex; gap: 28px; align-items: center; margin-left: auto }
.pub-nav-links a:not(.pub-login-btn) {
  color: var(--teal-dark); text-decoration: none; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: color .2s; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.pub-nav-links a:not(.pub-login-btn):hover { color: var(--teal) }
.pub-nav-links a.active:not(.pub-login-btn) { color: var(--teal); border-bottom-color: var(--teal) }

/* Dropdown */
.pub-dropdown { position: relative; display: flex; align-items: center }
.pub-dropdown-toggle {
  color: var(--teal-dark); font-size: 14px; font-weight: 600;
  cursor: pointer; background: none; border: none;
  font-family: inherit; padding: 0; padding-bottom: 2px;
  border-bottom: 2px solid transparent; transition: color .2s;
}
.pub-dropdown-toggle:hover { color: var(--teal) }
.pub-dropdown-toggle::after { content: ' \25BE'; font-size: .75rem }
.pub-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.12); border-radius: 8px;
  min-width: 180px; padding: .5rem 0; z-index: 30;
  padding-top: 12px;
}
.pub-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 12px;
}
.pub-dropdown-menu a {
  display: block; padding: .6rem 1.2rem; white-space: nowrap; font-size: .9rem;
  border-bottom: none;
}
.pub-dropdown-menu a:hover { background: var(--teal-soft) }
@media (min-width: 769px) {
  .pub-dropdown:hover .pub-dropdown-menu { display: block }
}
.pub-dropdown-menu.desktop-open { display: block }

/* ── Language toggle ── */
.pub-lang-toggle {
  display: flex; align-items: center;
  border: 1.5px solid var(--gray-light); border-radius: 8px; overflow: hidden;
}
.pub-lang-btn {
  padding: 6px 12px; font-size: 12px; font-weight: 700;
  font-family: 'Roboto Condensed'; color: var(--teal-dark);
  background: transparent; border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.pub-lang-btn.active { background: var(--teal-dark); color: var(--white) }
.pub-lang-btn:hover:not(.active) { background: var(--teal-soft) }
.pub-nav-links .pub-lang-toggle { display: flex; margin: 0 14px }

.pub-nav-right { display: flex; align-items: center; gap: 14px }
.pub-login-btn {
  color: var(--teal-dark); background: transparent;
  padding: 10px 32px; border-radius: 12px;
  font-family: 'Roboto Condensed'; font-weight: 700; font-size: 16px;
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block; line-height: 1.2;
  border: 2px solid var(--teal-dark);
}
.pub-login-btn:hover { border-color: var(--teal); color: var(--teal) }
.pub-mobile-close {
  display: none; position: absolute; top: 18px; right: 20px;
  background: none; border: none; font-size: 2rem; line-height: 1;
  color: var(--teal-dark); cursor: pointer; padding: 4px 8px;
}
.pub-mobile-close:hover { color: var(--teal) }
.pub-mobile-login {
  display: none; background: var(--teal); color: var(--white);
  font-family: 'Roboto Condensed'; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .02em;
  padding: 10px 20px; border-radius: 10px; text-decoration: none;
  transition: background .2s;
}
.pub-mobile-login:hover { background: var(--teal-mid); color: var(--white); text-decoration: none }
.pub-mobile-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--teal-dark); padding: .5rem; z-index: 20;
}

/* ── Announce bar ── */
.announce-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  background: var(--teal); color: var(--white);
  font-weight: 600; font-size: 16px; padding: 13px 24px; text-align: center;
}
.announce-bar b { font-family: 'Roboto Condensed' }
.announce-bar a {
  color: var(--white); font-weight: 700; text-decoration: none;
  cursor: pointer; border-bottom: 2px solid rgba(255,255,255,.5);
}

/* ── Hero ── */
.pub-hero { background: var(--teal-dark); padding: 60px 0 46px }
.pub-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px }
.pub-hero h1 {
  color: var(--white); font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.04; text-transform: uppercase; letter-spacing: .005em; max-width: none;
}
.pub-hero h1 .accent { color: var(--teal) }
.pub-tagline {
  margin-top: 14px; color: var(--yellow);
  font-family: 'Roboto Condensed'; font-weight: 400;
  font-size: 1.1rem; letter-spacing: .02em;
}
.lead-sub {
  margin-top: 16px; color: var(--teal); font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem); line-height: 1.3;
}
.pub-sub {
  margin-top: 16px; color: var(--muted-light);
  font-size: 1.08rem; line-height: 1.6; max-width: 48ch;
}
.pub-sub b { color: var(--white); font-weight: 700 }
.pub-sub-mobile { display: none }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .8fr;
  gap: 40px; align-items: start; margin-top: 40px;
}
.hero-text h1 { max-width: none }
.hero-photo {
  position: relative; border-radius: 14px; overflow: hidden;
  min-height: 340px; border: 1px solid var(--hairline);
  box-shadow: var(--shadow-dark); display: flex; align-items: flex-end;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero-photo .caption {
  position: relative; z-index: 2; width: 100%;
  background: linear-gradient(0deg, rgba(15,57,75,.95), transparent);
  padding: 26px 24px 20px; font-size: 14px; color: rgba(255,255,255,.85);
}
.hero-photo .caption b { color: var(--white); font-weight: 700 }
.photo-wide { margin-top: 40px; min-height: 300px }
.hero-card {
  background: var(--white); color: var(--teal-dark);
  border-radius: 14px; padding: 28px 26px; box-shadow: var(--shadow-dark);
}
.hero-card h3 {
  color: var(--teal-dark); font-size: 1.4rem; margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .01em;
}
.hero-card p.lead { color: var(--gray); font-size: 14px; margin-bottom: 18px }
.no-login { margin-top: 12px; text-align: center; color: var(--gray); font-size: 12px }
.lang-row { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--gray-light) }
.lang-label {
  font-family: 'Roboto Condensed'; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray); font-weight: 700; margin-bottom: 11px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px }

/* ── Trust bar ── */
.trust-bar {
  background: var(--teal-darker);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.trust-inner {
  max-width: 1400px; margin: 0 auto; padding: 28px 40px;
  display: grid; grid-template-columns: auto 1px repeat(3, 1fr);
  gap: 28px; align-items: center;
}
.seal { display: flex; align-items: center; gap: 15px }
.seal .ic {
  flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 0 0 6px rgba(38,174,206,.18);
}
.seal .ic svg { width: 28px; height: 28px }
.seal .txt b {
  display: block; font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--white); font-size: 1.05rem; line-height: 1.2; text-transform: uppercase;
}
.seal .txt span { color: var(--muted-light); font-size: 12px }
.v-div { height: 44px; background: var(--hairline) }
.stat b {
  display: block; font-family: 'Roboto Condensed'; font-weight: 700;
  font-size: 1.7rem; line-height: 1; color: var(--teal);
}
.stat.y b { color: var(--yellow) }
.stat span { color: var(--muted-light); font-size: 12px; margin-top: 5px; display: block }

/* ── Press bar ── */
.press-bar { background: var(--white); padding: 34px 0; text-align: center }
.press-bar .label { color: var(--teal-dark); margin-bottom: 16px; display: block }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap }
.press-logos a {
  font-family: 'Roboto Condensed'; font-weight: 700; font-size: 14px;
  color: var(--teal-dark); border: 1.5px solid var(--gray-light);
  border-radius: 10px; padding: 10px 18px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.press-logos a:hover {
  border-color: var(--teal); background: var(--teal-soft);
}

/* ── Motif divider ── */
.motif {
  height: 28px; background-repeat: repeat-x; background-position: center bottom; background-size: 64px 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='28' viewBox='0 0 64 28'%3E%3Cg fill='none' stroke-width='3'%3E%3Cpath d='M2 28 A30 30 0 0 1 62 28' stroke='%23ffffff'/%3E%3Cpath d='M10 28 A22 22 0 0 1 54 28' stroke='%2326aece'/%3E%3Cpath d='M18 28 A14 14 0 0 1 46 28' stroke='%23ffe363'/%3E%3Cpath d='M26 28 A6 6 0 0 1 38 28' stroke='%23f0a202'/%3E%3C/g%3E%3C/svg%3E");
}
.motif.on-dark { background-color: var(--teal-darker) }
.motif.on-teal { background-color: var(--teal-dark) }

/* ── Section backgrounds ── */
.sec-light { background: var(--white); color: var(--black) }
.sec-soft { background: var(--teal-soft); color: var(--black) }
.sec-warm { background: var(--amber-soft); color: var(--black) }
.sec-dark { background: var(--teal-dark); color: var(--white) }
.sec-light h2, .sec-soft h2, .sec-warm h2 { color: var(--teal-dark) }
.sec-head { text-align: center; margin-bottom: 14px }
h2.big {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  text-transform: uppercase; letter-spacing: .01em;
}
.sec-intro {
  text-align: center; color: var(--gray); font-size: 1.05rem;
  margin: 0 auto 40px; max-width: 46ch;
}

/* ── Three-column cards ── */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px }
.pcard {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-rest); padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.pcard:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px) }
.pcard h3 {
  color: var(--teal-dark); font-size: 1.3rem; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .01em;
}
.pcard p { color: var(--gray); font-size: 14px; line-height: 1.55 }
.closing-italic {
  text-align: center; font-style: italic; color: var(--teal-dark);
  font-size: 1.12rem; line-height: 1.55; max-width: 64ch;
  margin: 42px auto 0; font-weight: 600;
}

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 6px }
.svc { display: flex; flex-direction: column }
.svc h3 { color: var(--white); font-size: 1.8rem; text-transform: uppercase; letter-spacing: .01em }
.svc .tag {
  display: block; color: var(--teal); font-family: 'Roboto Condensed';
  font-weight: 700; font-size: 1.05rem; margin: 10px 0 14px;
}
.svc > p:not(.scap) { color: var(--muted-light); font-size: 15px; line-height: 1.6 }
.svc .sphoto {
  margin-top: auto; border-radius: 14px; overflow: hidden;
  height: 260px; border: 1px solid var(--hairline);
}
.svc .sphoto img { width: 100%; height: 100%; object-fit: cover }
.svc .scap { margin-top: 14px; font-style: italic; color: var(--teal); font-size: 15px; line-height: 1.5 }
.svc-closing {
  text-align: center; color: var(--muted-light); font-size: 1rem;
  line-height: 1.55; max-width: 62ch; margin: 50px auto 0;
}

/* ── Proof / testimonials ── */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center }
.bignum {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--teal); font-size: clamp(4rem, 8vw, 6rem); line-height: .85;
}
.bignum-label {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--teal-dark); font-size: 1.4rem; margin-top: 6px; text-transform: uppercase;
}
.proof-quote {
  color: var(--gray); font-style: italic; font-size: 1.02rem;
  line-height: 1.6; margin-top: 22px;
}
.proof-attr {
  color: var(--teal-dark); font-size: 14px; margin-top: 16px;
  line-height: 1.4; font-weight: 700; font-family: 'Roboto Condensed';
}
.proof-photo {
  border-radius: 14px; overflow: hidden; min-height: 350px;
  border: 1px solid var(--gray-light); box-shadow: var(--shadow-rest);
}
.proof-photo img { width: 100%; height: 100%; object-fit: cover }

/* ── Who / vetting ── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center }
.who h2 {
  color: var(--white); font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  max-width: 15ch; text-transform: uppercase; letter-spacing: .01em;
}
.who .intro { color: var(--muted-light); font-size: 1.05rem; margin: 18px 0 24px }
.vlist { list-style: none; display: grid; gap: 14px }
.vlist li { display: flex; gap: 13px; align-items: flex-start; color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.4 }
.vlist li .arr { color: var(--teal); font-weight: 700; flex-shrink: 0 }
.vlist a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px }
.pull {
  border-left: 4px solid var(--amber); padding: 4px 0 4px 20px;
  margin: 28px 0 20px; font-style: italic; color: var(--white);
  font-size: 1.1rem; line-height: 1.5; font-weight: 600;
}
.who-photo {
  border-radius: 14px; overflow: hidden; min-height: 390px;
  border: 1px solid var(--hairline); box-shadow: var(--shadow-dark);
}
.who-photo img { width: 100%; height: 100%; object-fit: cover }

/* ── Law card ── */
.law-card {
  background: var(--white); border-left: 6px solid var(--amber);
  border-radius: 14px; border: 1px solid rgba(0,0,0,.04);
  box-shadow: var(--shadow-rest); padding: 36px 40px; max-width: 880px; margin: 0 auto;
}
.law-card p { color: var(--teal-dark); font-size: 1rem; line-height: 1.6; margin-bottom: 16px }
.law-list { list-style: none; display: grid; gap: 13px; margin-top: 6px }
.law-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--black); font-size: 15px; font-weight: 600 }
.law-list li .ck { color: var(--teal); font-weight: 800; flex-shrink: 0 }

/* ── Final CTA ── */
.final-cta { text-align: center; padding: 84px 0; background: var(--teal-dark) }
.final-cta h2 {
  color: var(--white); font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  max-width: 20ch; margin: 0 auto; text-transform: uppercase; letter-spacing: .01em;
}
.final-cta .btn-pub-primary { margin-top: 26px; padding: 16px 40px; font-size: 1.1rem }
.final-cta .phone { margin-top: 32px; color: var(--muted-light); font-size: 1.1rem }
.final-cta .phone b { color: var(--white); font-family: 'Roboto Condensed'; font-weight: 700 }
.final-cta .hours { color: var(--muted-light); font-size: 14px; margin-top: 6px }
.final-cta .loc { margin-top: 22px; color: var(--muted-light); font-size: 14px }

/* ── Footer ── */
.pub-footer { background: var(--teal-darker); padding: 60px 0 34px }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px }
.foot-brand .pub-footer-logo { margin-bottom: 12px }
.foot-brand .pub-footer-logo img { height: 38px; width: auto }
.foot-brand .ftag { color: var(--yellow); font-family: 'Roboto Condensed'; font-size: 1rem; margin-bottom: 12px }
.foot-brand p { color: var(--muted-light); font-size: 14px; line-height: 1.5; max-width: 30ch }
.foot-col h4 {
  color: var(--white); font-size: 1rem; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: .02em;
}
.foot-col a {
  display: block; color: var(--muted-light); text-decoration: none;
  font-size: 14px; margin-bottom: 11px; cursor: pointer; transition: color .2s;
}
.foot-col a:hover { color: var(--white) }
.foot-lang { margin-top: 8px }
.foot-lang select {
  background: var(--teal-dark); color: rgba(255,255,255,.85);
  border: 1px solid var(--teal-mid); border-radius: 10px;
  padding: 8px 12px; font-size: 13px; font-family: 'Open Sans';
}
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 24px;
  text-align: center; color: rgba(255,255,255,.55); font-size: 13px;
}

/* ── Page hero (sub-pages) ── */
.page-hero { background: var(--teal-dark); text-align: center; padding: 70px 0 }
.page-hero h1 {
  color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 auto; max-width: 24ch;
}
.page-hero p {
  color: var(--muted-light); font-size: 1.05rem;
  max-width: 60ch; margin: 18px auto 0; line-height: 1.6;
}

/* ── Timeline (Our Story) ── */
.timeline { position: relative; max-width: 1080px; margin: 0 auto; padding: 10px 0 }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gray-light); transform: translateX(-50%);
}
.tl-item { position: relative; width: 50%; padding: 0 44px 34px }
.tl-item.left { left: 0; text-align: right }
.tl-item.right { left: 50% }
.tl-dot {
  position: absolute; top: 30px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--teal);
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--teal);
}
.tl-item.left .tl-dot { right: -7.5px }
.tl-item.right .tl-dot { left: -7.5px }
.tl-date {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--teal); text-transform: uppercase;
  font-size: 13px; letter-spacing: .06em; margin-bottom: 10px;
}
.tl-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-rest);
  padding: 20px; text-align: left;
  transition: box-shadow .2s, transform .2s;
}
.tl-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px) }
.tl-card h3 { color: var(--teal-dark); font-size: 1rem; margin-bottom: 8px }
.tl-card p { color: var(--gray); font-size: 14px; line-height: 1.55 }
.tl-card .tl-img { margin-top: 12px; border-radius: 10px; overflow: hidden; height: 280px }
.tl-card .tl-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block }

/* ── Team cards ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px }
.team-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-rest);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px) }
.team-card .portrait { height: 400px; overflow: hidden }
.team-card .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top }
.team-card .body { padding: 22px }
.team-card .name {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--teal-dark); font-size: 1.3rem; line-height: 1.1;
}
.team-card .role {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--teal); font-size: 13px; text-transform: uppercase;
  letter-spacing: .03em; margin: 6px 0 12px;
}
.team-card .bio { color: var(--gray); font-size: 14px; line-height: 1.55; font-weight: 400 }
.team-card .bio a { color: var(--teal); font-weight: 700; text-decoration: none }
.team-card > a { font-weight: 400; -webkit-font-smoothing: antialiased }

/* ── Media cards ── */
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto }
.media-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-rest);
  padding: 28px; text-align: center; text-decoration: none; display: block;
  transition: box-shadow .2s, transform .2s;
}
.media-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px) }
.media-card .outlet { font-family: 'Roboto Condensed'; font-weight: 700; color: var(--teal-dark); font-size: 1.3rem }
.media-card .kind { color: var(--gray); font-size: 13px; margin-top: 6px }
.media-card .go { color: var(--teal); font-weight: 700; font-size: 13px; margin-top: 14px; display: inline-block }

/* ── Contact ── */
.human-band { background: var(--teal); text-align: center; padding: 54px 24px }
.human-band .small {
  font-family: 'Roboto Condensed'; font-weight: 700;
  color: var(--white); font-size: 1rem; text-transform: uppercase;
  letter-spacing: .04em; opacity: .9;
}
.human-band h1 {
  color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 6px auto 0; text-transform: uppercase; max-width: 18ch;
}
.human-band .sub2 { color: var(--white); font-size: 14px; margin-top: 14px; opacity: .92 }
.contact-form-card {
  background: var(--white); border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  overflow: hidden; max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr .6fr;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 1000px; margin: 0 auto }
.contact-card {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-rest); padding: 30px;
}
.contact-card h3 { color: var(--teal-dark); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 6px }
.contact-card .note-line { color: var(--gray); font-size: 14px; margin-bottom: 18px }
.cform { display: grid; gap: 15px }
.contact-side h3 { color: var(--teal-dark); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 14px }
.contact-side .crow { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; color: var(--teal-dark); font-size: 14px }
.contact-side .crow b { font-family: 'Roboto Condensed'; color: var(--teal-dark); display: block }
.contact-side .ic { color: var(--teal); flex-shrink: 0; font-size: 1.1rem }

/* ── FAQ ── */
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px }
.faq-item {
  background: var(--white); border-radius: 14px;
  border: 1px solid rgba(0,0,0,.04); box-shadow: var(--shadow-rest); padding: 22px 24px;
}
.faq-item h3 { color: var(--teal-dark); font-size: 1.08rem; margin-bottom: 7px }
.faq-item p { color: var(--gray); font-size: 14px; line-height: 1.55 }

/* ── Location band ── */
.loc-band {
  background: linear-gradient(120deg, var(--teal-dark), var(--teal-mid));
  border-radius: 14px; text-align: center; padding: 40px 24px;
  max-width: 980px; margin: 0 auto;
}
.loc-band h2 { color: var(--white); font-size: 1.6rem; text-transform: uppercase }
.loc-band p { color: rgba(255,255,255,.85); margin-top: 8px }

/* ── Inputs (public forms) ── */
.field { display: grid; gap: 6px }
.field label {
  font-family: 'Roboto Condensed'; font-size: 12px; font-weight: 700;
  color: var(--teal-dark); text-transform: uppercase; letter-spacing: .04em;
}
.field label .req { color: var(--orange) }
.field input, .field select, .field textarea {
  font-family: 'Open Sans'; font-size: 13px; color: var(--black);
  padding: 11px 14px; border: 1.5px solid var(--gray-light);
  border-radius: 10px; background: var(--white); transition: border-color .2s; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal) }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }

/* ── Modal ── */
.pub-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15,57,75,.72); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.pub-overlay.open { display: flex; animation: pubfade .2s ease }
@keyframes pubfade { from { opacity: 0 } to { opacity: 1 } }
.pub-modal {
  background: var(--white); color: var(--black); border-radius: 14px;
  width: 100%; max-width: 480px; box-shadow: var(--shadow-modal);
  overflow: hidden; animation: pubpop .25s cubic-bezier(.2,.7,.2,1);
  max-height: 92vh; overflow-y: auto;
}
@keyframes pubpop { from { opacity: 0; transform: translateY(14px) scale(.98) } to { opacity: 1; transform: none } }
.pub-modal-head { padding: 26px 28px 0; position: relative }
.pub-modal-head h3 { color: var(--teal-dark); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .01em }
.pub-modal-head p { color: var(--gray); font-size: 14px; margin-top: 5px }
.pub-modal-close {
  position: absolute; top: 20px; right: 22px; width: 34px; height: 34px;
  border-radius: 50%; border: none; background: var(--gray-bg);
  color: var(--gray); font-size: 1.2rem; cursor: pointer; line-height: 1; transition: background .2s;
}
.pub-modal-close:hover { background: var(--gray-light) }
.pub-modal form { padding: 22px 28px 28px; display: grid; gap: 14px }
.form-foot { text-align: center; color: var(--gray); font-size: 12px }
.form-foot a { color: var(--teal); font-weight: 700; text-decoration: none }
.pub-success { padding: 38px 32px 34px; text-align: center; display: none }
.pub-success.show { display: block }
.pub-modal form.hide, .pub-modal-head.hide { display: none }
.pub-success .check {
  width: 62px; height: 62px; border-radius: 50%;
  margin: 0 auto 16px; background: var(--teal);
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.pub-success h3 { color: var(--teal-dark); font-size: 1.4rem; margin-bottom: 8px; text-transform: uppercase }
.pub-success p { color: var(--gray); font-size: 14px; line-height: 1.5; max-width: 32ch; margin: 0 auto }
.pub-success p b { color: var(--black) }
.pub-success .done { margin-top: 22px }

/* ── Founder page ── */
.founder-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; max-width: 1000px; margin: 0 auto }
.founder-photo { border-radius: 14px; overflow: hidden; min-height: 340px; box-shadow: var(--shadow-rest) }
.founder-photo img { width: 100%; height: 100%; object-fit: cover }
.founder-body h2 { color: var(--teal-dark) }
.founder-body p { color: var(--gray); font-size: 1rem; line-height: 1.65; margin-top: 16px }

/* ── Animations ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards }
  .d1 { animation-delay: .05s }
  .d2 { animation-delay: .15s }
  .d3 { animation-delay: .25s }
  .d4 { animation-delay: .35s }
  @keyframes rise { to { opacity: 1; transform: none } }
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .wrap { padding: 0 18px }
  .pub-nav-links { display: none }
  .pub-mobile-login { display: inline-block }
  .pub-mobile-toggle { display: block }
  .pub-nav-links .pub-login-btn { margin-left: 0 }
  .pub-nav-links.active {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; gap: 1rem;
    padding: 70px 1.5rem 1.5rem; box-shadow: 0 4px 6px rgba(0,0,0,.1); z-index: 45;
    overflow-y: auto;
  }
  .pub-nav-links.active .pub-mobile-close { display: block }
  .pub-dropdown-menu {
    position: static; transform: none; box-shadow: none;
    border-radius: 0; padding: 0 0 0 1rem; min-width: 0;
  }
  .pub-dropdown-menu.mobile-open { display: block }
  .hero-grid, .proof-grid, .who-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 26px }
  .contact-form-card { grid-template-columns: 1fr }
  /* Mobile hero: trim long text, shrink photo, surface card faster */
  .pub-hero { padding: 36px 0 30px }
  .pub-sub { display: none }
  .hero-text .pub-sub-mobile { display: block; color: var(--muted-light); font-size: 14px; line-height: 1.55; margin-top: 12px }
  .hero-text .pub-sub-mobile b { color: var(--white) }
  .photo-wide { min-height: 180px; margin-top: 24px }
  .hero-photo { min-height: 180px }
  .hero-grid { margin-top: 20px; gap: 20px }
  .trust-inner { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px }
  .trust-inner .v-div { display: none }
  .seal { display: none }
  .three, .services-grid, .team-grid { grid-template-columns: 1fr; gap: 20px }
  .media-grid { grid-template-columns: 1fr }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px }
  .section { padding: 60px 0 }
  .proof-photo { min-height: 250px }
  .who-photo { min-height: 250px }
  .timeline::before { left: 18px }
  .tl-item { width: 100%; left: 0; text-align: left; padding: 0 0 30px 48px }
  .tl-item.right { left: 0 }
  .tl-item.left { text-align: left }
  .tl-item.left .tl-dot, .tl-item.right .tl-dot { left: 11px; right: auto }
  .pub-login-btn { width: 100%; text-align: center }
  .pub-topbar nav { padding: 16px 20px }
}

@media (max-width: 540px) {
  .trust-inner { grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 16px }
  .stat b { font-size: 1.3rem }
  .stat span { font-size: 11px }
  .row2, .foot-grid { grid-template-columns: 1fr }
  .law-card { padding: 26px 22px }
  .media-grid { grid-template-columns: 1fr }
  .proof-photo { min-height: 200px }
  .who-photo { min-height: 200px }
  .tl-card .tl-img { height: 200px }
  .svc .sphoto { height: 200px }
  .team-card .portrait { height: 280px }
}
