/* ============================================================
   QUINO CAREERS — modern & bold marketing site
   Type: Bricolage Grotesque (display) + Manrope (text)
   ============================================================ */

:root {
  /* Brand */
  --red:        #CE0E2A;   /* primary crimson, from logo */
  --red-bright: #E11A30;
  --red-deep:   #7C0A1B;   /* bordeaux for dark sections */
  --red-wine:   #2A0408;   /* near-black wine */

  --ink:        #1C1113;   /* warm near-black */
  --ink-soft:   #3A2C2E;
  --muted:      #6E5F60;   /* body muted */
  --line:       #E7DCD9;

  --paper:      #FBF7F5;   /* warm off-white */
  --surface:    #F3EBE7;   /* light surface */
  --surface-2:  #EDE2DD;
  --white:      #ffffff;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(28,17,19,.05), 0 4px 14px rgba(28,17,19,.06);
  --shadow:    0 10px 30px rgba(28,17,19,.10), 0 2px 8px rgba(28,17,19,.06);
  --shadow-red: 0 14px 36px rgba(206,14,42,.30);

  --ease: cubic-bezier(.22,.61,.36,1);

  font-family: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* Visible keyboard focus (mouse clicks stay clean via :focus-visible) */
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
/* Inputs already show their own red focus ring — avoid a doubled outline */
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: none; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Manrope'; font-weight: 700; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.is-light { color: #F4B9C0; }
.eyebrow.is-light::before { background: #F4B9C0; }

/* Display type */
h1, h2, h3, .display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h-xl { font-size: clamp(2.7rem, 7.5vw, 5.6rem); }
.h-lg { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.04; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.55; max-width: 56ch; }
.text-red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  font-family: 'Manrope'; font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: var(--shadow-red); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(206,14,42,.38); }
.btn:active { transform: translateY(0); }
.btn .arw { transition: transform .25s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); background: transparent; }
.btn--light { --bg: #fff; --fg: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn--light:hover { box-shadow: 0 16px 40px rgba(0,0,0,.26); }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--red); font-size: 15px;
}
.link-arrow svg { transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.scrolled {
  background: rgba(251,247,245,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: 'Bricolage Grotesque'; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 22px; line-height: 1;
  box-shadow: var(--shadow-red); position: relative; overflow: hidden;
}
.brand__mark::after { content:""; position:absolute; inset: 5px 5px auto auto; width: 9px; height: 9px; border-radius: 50%; border: 2.5px solid rgba(255,255,255,.85); }
/* Real logo lockup (transparent PNG) — replaces the wordmark in nav + footer.
   Nav sits on the light paper bg, so the transparent logo drops in cleanly.
   The footer is dark, so the logo gets a white badge to keep its dark text legible. */
.brand__logo { display: block; height: 46px; width: auto; }
.footer .brand__logo { height: 40px; background: #fff; padding: 9px 14px; border-radius: 12px; }
.brand__name { font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand__name span { color: var(--red); }
.brand__name small { display:block; font-family:'Manrope'; font-weight:600; font-size:9.5px; letter-spacing:.22em; color: var(--muted); text-transform: uppercase; margin-top: 1px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a:not(.btn) {
  padding: 9px 14px; border-radius: 100px; font-weight: 600; font-size: 15px; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links a:not(.btn):hover { color: var(--red); background: rgba(206,14,42,.06); }
.nav__cta { margin-left: 10px; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle span + span { margin-top: 6px; }
.nav.open .nav__toggle span:nth-child(1){ transform: translateY(8.4px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2){ opacity: 0; }
.nav.open .nav__toggle span:nth-child(3){ transform: translateY(-8.4px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 130px; padding-bottom: 90px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__blob {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--red-bright), var(--red-deep));
  filter: blur(10px); opacity: .12;
}
.hero__grid {
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 7px 7px 16px; font-weight: 600; font-size: 13.5px; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero__pill b { color: var(--red); }
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #2BB673; box-shadow: 0 0 0 4px rgba(43,182,115,.18); }
.hero__pill .tag { background: var(--surface); border-radius: 100px; padding: 4px 11px; font-size: 12px; font-weight: 700; }

.hero h1 { margin-bottom: 22px; font-size: clamp(2.4rem, 5.4vw, 4.15rem); }
.hero h1 em { font-style: normal; color: var(--red); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content:""; position:absolute; left:0; right:0; bottom: 4%; height: 14%;
  background: rgba(206,14,42,.16); border-radius: 4px; z-index: -1;
}
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 50ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__proof { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__proof .stat { display: flex; flex-direction: column; }
.hero__proof .stat b { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 1.9rem; line-height: 1; }
.hero__proof .stat span { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 4px; }
.hero__proof .vr { width: 1px; height: 38px; background: var(--line); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow); background: var(--surface-2);
  border: 1px solid var(--line);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero__frame {
  position: absolute; inset: -18px -18px auto auto; width: 62%; aspect-ratio: 1;
  border: 2px solid var(--red); border-radius: var(--radius-lg); z-index: -1;
}
.hero__card {
  position: absolute; background: #fff; border-radius: 16px; box-shadow: var(--shadow);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-weight: 700;
}
.hero__card--a { bottom: 26px; left: -26px; }
.hero__card--b { top: 30px; right: -22px; }
.hero__card .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); color: var(--red); flex: none; }
.hero__card small { display: block; font-weight: 600; font-size: 12px; color: var(--muted); }
.hero__card .big { font-family: 'Bricolage Grotesque'; font-size: 18px; }

/* Marquee strip */
.strip { background: var(--ink); color: var(--paper); overflow: hidden; padding: 18px 0; }
.strip__track { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.strip__track span { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.6rem); display: inline-flex; align-items: center; gap: 56px; opacity: .92; }
.strip__track span::after { content: "✦"; color: var(--red-bright); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   WHAT WE DO — services
   ============================================================ */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p { margin-top: 22px; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center p { margin-inline: auto; }

.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.svc {
  grid-column: span 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden; min-height: 220px; display: flex; flex-direction: column;
}
.svc::before { content:""; position:absolute; inset: auto auto -40% -10%; width: 60%; aspect-ratio:1; background: radial-gradient(circle, rgba(206,14,42,.10), transparent 70%); opacity: 0; transition: opacity .3s; }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { opacity: 1; }
.svc__num { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 13px; color: var(--red); letter-spacing: .05em; }
.svc__ic { width: 48px; height: 48px; border-radius: 13px; background: var(--surface); color: var(--red); display: grid; place-items: center; margin: 14px 0 18px; transition: background .3s, color .3s; }
.svc:hover .svc__ic { background: var(--red); color: #fff; }
.svc h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 9px; }
.svc p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
/* feature span first card across two */
.svc--wide { grid-column: span 2; background: var(--ink); color: var(--paper); border-color: transparent; }
.svc--wide .svc__num, .svc--wide h3 { color: #fff; }
.svc--wide p { color: rgba(251,247,245,.72); font-size: 15.5px; }
.svc--wide .svc__ic { background: rgba(255,255,255,.1); color: #fff; }
.svc--wide:hover .svc__ic { background: var(--red); }

/* ============================================================
   CAREER — split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.career__list { list-style: none; margin: 30px 0 36px; display: grid; gap: 14px; }
.career__list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 600; font-size: 16.5px; }
.career__list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--red); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.career__visual { position: relative; }
.career__photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--surface-2); }
.career__photo img { width: 100%; height: 100%; object-fit: cover; }
.career__badge {
  position: absolute; bottom: -22px; right: -16px; background: var(--red); color: #fff;
  border-radius: 20px; padding: 22px 26px; box-shadow: var(--shadow-red); max-width: 230px;
}
.career__badge b { font-family: 'Bricolage Grotesque'; font-size: 2.4rem; display: block; line-height: 1; }
.career__badge span { font-size: 13.5px; font-weight: 600; opacity: .92; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface); }
.toggle {
  display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 5px;
  margin: 0 auto; box-shadow: var(--shadow-sm); position: relative;
}
.toggle button {
  border: none; background: none; cursor: pointer; font-family: 'Manrope'; font-weight: 700; font-size: 14.5px;
  padding: 11px 22px; border-radius: 100px; color: var(--muted); position: relative; z-index: 2; transition: color .25s;
  white-space: nowrap;
}
.toggle button.active { color: #fff; }
.toggle__pill { position: absolute; z-index: 1; top: 5px; bottom: 5px; border-radius: 100px; background: var(--red); transition: left .3s var(--ease), width .3s var(--ease); box-shadow: var(--shadow-red); }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 48px; }

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 32px;
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan--feat { background: var(--ink); color: var(--paper); border-color: transparent; box-shadow: var(--shadow); }
.plan--feat .plan__price, .plan--feat h3 { color: #fff; }
.plan--feat .plan__desc, .plan--feat .plan__feats li { color: rgba(251,247,245,.74); }
.plan__tag { position: absolute; top: 20px; right: 20px; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; }
.plan__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--surface); color: var(--red); display: grid; place-items: center; margin-bottom: 18px; }
.plan--feat .plan__ic { background: rgba(255,255,255,.12); color: #fff; }
.plan h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.plan__desc { font-size: 13.5px; color: var(--muted); line-height: 1.45; min-height: 38px; }
.plan__price { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 3rem; line-height: 1; margin: 18px 0 4px; display: flex; align-items: baseline; gap: 4px; }
.plan__price .cur { font-size: 1.4rem; }
.plan__price .from { font-family: 'Manrope'; font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; align-self: flex-start; margin-top: 6px; }
.plan--feat .plan__price .from { color: rgba(251,247,245,.6); }
.plan__feats { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; font-size: 14px; }
.plan__feats li { display: flex; gap: 9px; align-items: flex-start; color: var(--ink-soft); }
.plan__feats svg { flex: none; color: var(--red); margin-top: 2px; }
.plan--feat .plan__feats svg { color: var(--red-bright); }
.plan .btn { margin-top: auto; }
.pricing__note { text-align: center; margin-top: 30px; font-size: 14px; color: var(--muted); }
.pricing__note b { color: var(--ink); }

/* ---- Pricing page: country tabs + helpers ---- */
.pricetabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 26px; }
.pricetab {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px 10px 12px;
  border: 1px solid var(--line); background: #fff; border-radius: 100px;
  font-family: 'Manrope'; font-weight: 700; font-size: 14px; color: var(--ink-soft); cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .25s var(--ease), box-shadow .25s;
}
.pricetab:hover { border-color: var(--red); transform: translateY(-2px); }
.pricetab.active { border-color: transparent; color: #fff; background: var(--red); box-shadow: var(--shadow-red); }
.pricetab .flag { width: 26px; height: 18px; border-radius: 4px; flex: none; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.pricing-page .plan__price { min-height: 48px; align-items: center; }
.plan__price .onreq { font-family: 'Manrope'; font-weight: 800; font-size: 1.35rem; color: var(--muted); letter-spacing: -.01em; }
.plan__tier { font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin: 0 0 20px; }
.pricing__empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 30px 0; }
.pricing__empty a { color: var(--red); font-weight: 700; }
.plan__wa { display: block; text-align: center; margin-top: 11px; font-size: 13px; font-weight: 600; color: var(--muted); transition: color .2s; }
.plan__wa:hover { color: var(--red); }
.otherserv { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line); text-align: center; }
.otherserv__title { font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -.02em; }
.otherserv__sub { color: var(--muted); margin: 12px auto 26px; max-width: 54ch; font-size: 15px; }
.otherserv__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================
   AFFILIATIONS
   ============================================================ */
.affil { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.affil__card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: #fff; transition: border-color .3s, transform .3s var(--ease); }
.affil__card:hover { transform: translateY(-4px); border-color: var(--red); }
.affil__ic { width: 50px; height: 50px; border-radius: 13px; background: var(--surface); color: var(--red); display: grid; place-items: center; margin-bottom: 18px; }
.affil__card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.02em; }
.affil__card p { font-size: 14.5px; color: var(--muted); }
.partner-cta {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.partner-cta h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); max-width: 22ch; }
.partner-cta p { color: rgba(251,247,245,.72); margin-top: 8px; font-size: 15px; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve { background: var(--red-wine); color: var(--paper); overflow: hidden; }
.serve .eyebrow { color: #F4B9C0; }
.serve .eyebrow::before { background: #F4B9C0; }
.serve h2 { color: #fff; }
.serve__sub { color: rgba(251,247,245,.74); margin-top: 18px; max-width: 54ch; }
.countries { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.country {
  display: inline-flex; align-items: center; gap: 12px; padding: 13px 22px 13px 14px;
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px; background: rgba(255,255,255,.04);
  font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.25rem); font-family: 'Bricolage Grotesque';
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.country:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); transform: translateY(-3px); }
.country .flag { width: 34px; height: 24px; border-radius: 5px; overflow: hidden; flex: none; box-shadow: 0 2px 6px rgba(0,0,0,.3); display: grid; }
.country .flag svg, .country .flag > div { width: 100%; height: 100%; }
.serve__note { margin-top: 30px; color: rgba(251,247,245,.6); font-size: 14px; font-style: italic; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.testi__nav { display: flex; gap: 10px; }
.testi__nav button {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  display: grid; place-items: center; color: var(--ink); transition: all .25s var(--ease);
}
.testi__nav button:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }
.testi__viewport { overflow: hidden; }
.testi__track { display: flex; transition: transform .6s var(--ease); }
.testi__slide { flex: 0 0 100%; padding-right: 0; }
.tcard {
  display: grid; grid-template-columns: 1fr; gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 64px); position: relative; overflow: hidden;
}
.tcard__quote-mark { font-family: 'Bricolage Grotesque'; font-size: 9rem; line-height: .7; color: var(--red); opacity: .12; position: absolute; top: 24px; right: 40px; }
.tcard blockquote { font-family: 'Bricolage Grotesque'; font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.3rem); line-height: 1.22; letter-spacing: -.02em; max-width: 24ch; position: relative; }
.tcard blockquote .hl { color: var(--red); }
.tcard__foot { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.tcard__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; font-family: 'Bricolage Grotesque'; font-weight: 800; font-size: 22px; flex: none; }
.tcard__who b { font-size: 16px; display: block; }
.tcard__who span { font-size: 13.5px; color: var(--muted); }
.tcard__stars { display: flex; gap: 3px; margin-left: auto; color: #F5A623; }
.testi__dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: all .25s; padding: 0; }
.testi__dots button.active { background: var(--red); width: 26px; border-radius: 100px; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--surface); }
.team__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.member__photo { aspect-ratio: 1/1; overflow: hidden; background: var(--surface-2); position: relative; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.member:hover .member__photo img { transform: scale(1.04); }
.member__body { padding: 20px 22px 24px; }
.member__role { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.member h3 { font-size: 1.3rem; font-weight: 700; margin: 7px 0 9px; letter-spacing: -.02em; }
.member p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.member--founder { grid-row: span 2; display: flex; flex-direction: column; }
.member--founder .member__photo { aspect-ratio: auto; flex: 1; min-height: 340px; }
.member--founder .member__photo img { object-position: center 22%; }
.member--founder .member__body { padding: 26px 28px 30px; }
.member--founder h3 { font-size: 1.7rem; }
.member--founder .tag { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }

/* ============================================================
   BOOK / CONTACT
   ============================================================ */
.book { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.book__glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, var(--red-deep), transparent 65%); opacity: .55; top: -260px; right: -180px; pointer-events: none; }
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; position: relative; }
.book h2 { color: #fff; }
.book .eyebrow { color: #F4B9C0; }
.book .eyebrow::before { background: #F4B9C0; }
.book__sub { color: rgba(251,247,245,.74); margin: 18px 0 32px; font-size: 1.1rem; }
.book__contacts { display: grid; gap: 14px; }
.book__contact { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.03); transition: background .25s, border-color .25s; }
.book__contact:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.3); }
.book__contact .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff; display: grid; place-items: center; flex: none; }
.book__contact small { display: block; font-size: 12.5px; color: rgba(251,247,245,.6); font-weight: 600; }
.book__contact b { font-size: 16px; }

.form { background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form__hint { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'Manrope'; font-size: 15px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(206,14,42,.1); background: #fff; }
.field textarea { resize: vertical; min-height: 100px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__foot { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }

/* Honeypot — visually hidden, off-screen, still submitted by bots */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Inline form feedback (validation + send result) */
.form__status { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-size: 14px; font-weight: 600; line-height: 1.45; }
.form__status--pending { background: var(--surface); color: var(--ink-soft); }
.form__status--success { background: rgba(43,182,115,.12); color: #1B7F4C; border: 1px solid rgba(43,182,115,.32); }
.form__status--error   { background: rgba(206,14,42,.08); color: var(--red-deep); border: 1px solid rgba(206,14,42,.28); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--red-wine); color: rgba(251,247,245,.7); padding-top: 72px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer .brand__name small { color: rgba(251,247,245,.5); }
.footer__about { margin: 18px 0 22px; font-size: 14.5px; max-width: 36ch; line-height: 1.6; }
.footer__col h4 { color: #fff; font-family: 'Manrope'; font-weight: 800; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--paper); transition: all .25s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* disclaimer dropdown */
.disclaimer { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.disclaimer__btn { display: flex; align-items: center; gap: 10px; background: none; border: none; color: rgba(251,247,245,.7); cursor: pointer; font-family: 'Manrope'; font-weight: 700; font-size: 13.5px; letter-spacing: .04em; padding: 0; }
.disclaimer__btn svg { transition: transform .3s var(--ease); }
.disclaimer.open .disclaimer__btn svg { transform: rotate(180deg); }
.disclaimer__body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.disclaimer__body p { padding-top: 14px; font-size: 13.5px; line-height: 1.6; max-width: 80ch; }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 26px 0 34px; font-size: 13px; }
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   Reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: .08s; }
  .reveal[data-d="2"] { transition-delay: .16s; }
  .reveal[data-d="3"] { transition-delay: .24s; }
  .reveal[data-d="4"] { transition-delay: .32s; }
}
/* Safety: never leave content stuck-hidden (e.g. throttled/offscreen frames where
   CSS transitions are paused). Forces final visible state with no transition. */
html.reveals-off .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .svc--wide { grid-column: span 2; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .member--founder { grid-column: span 2; grid-row: auto; flex-direction: row; }
  .member--founder .member__photo { min-height: 0; aspect-ratio: 1; width: 46%; }
  .member--founder .member__body { display: flex; flex-direction: column; justify-content: center; }
}
@media (max-width: 880px) {
  .nav__links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--paper); padding: 18px var(--gut) 28px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .3s var(--ease); box-shadow: var(--shadow); }
  .nav.open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 14px 16px; font-size: 17px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__toggle { display: block; }
  .nav.open { background: var(--paper); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__card--a { left: 0; }
  .hero__card--b { right: 0; }
  .split { grid-template-columns: 1fr; }
  .career__visual { max-width: 460px; margin-inline: auto; }
  .book__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; }
  .plans { grid-template-columns: 1fr; }
  .affil { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .member--founder { grid-column: span 1; flex-direction: column; }
  .member--founder .member__photo { width: 100%; aspect-ratio: 4/3; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .testi__nav { display: none; }
  .hero__proof .vr { display: none; }
  .partner-cta { flex-direction: column; align-items: flex-start; }
}
