@font-face {
  font-family: "Manrope";
  src: url("assets/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #07111c;
  --ink-soft: #102032;
  --paper: #f0ece3;
  --paper-soft: #f7f4ed;
  --white: #fbfaf7;
  --blue: #6d8cff;
  --blue-soft: #a8b9ff;
  --line-dark: rgba(7, 17, 28, .17);
  --line-light: rgba(255, 255, 255, .17);
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Palatino Linotype", Palatino, serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(88px, 11vw, 156px);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 76px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--blue); color: var(--white); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), height .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled,
.site-header.menu-active {
  height: 72px;
  background: rgba(7, 17, 28, .9);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
}
.brand { justify-self: start; }
.brand img { width: 154px; height: auto; }
.desktop-nav { display: flex; gap: 38px; }
.desktop-nav a,
.header-cta {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .06em;
  text-decoration: none;
}
.desktop-nav a { opacity: .72; transition: opacity .2s ease; }
.desktop-nav a:hover { opacity: 1; }
.header-cta {
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(109,140,255,.2), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .25s var(--ease), border-color .25s, background .25s;
}
.header-cta:hover { transform: translateY(-2px); border-color: rgba(168,185,255,.65); background: linear-gradient(135deg, rgba(109,140,255,.34), rgba(255,255,255,.1)); }
.header-cta::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: currentColor;
}
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: var(--white); }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .25s var(--ease); }
.site-header.menu-active .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.menu-active .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  padding: 38px var(--gutter) 46px;
  background: rgba(7, 17, 28, .98);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.mobile-menu.is-open { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.mobile-menu a { font-size: 13px; font-weight: 650; letter-spacing: .08em; text-decoration: none; }
.mobile-menu a:last-child { width: 100%; margin-top: 12px; padding: 15px 18px; border-radius: var(--radius-pill); background: linear-gradient(135deg, #5579ff, #8ea8ff); color: var(--white); text-align: center; box-shadow: 0 16px 36px rgba(71,104,223,.28); }

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 10, 17, .99) 0%, rgba(4, 10, 17, .91) 31%, rgba(4, 10, 17, .27) 63%, rgba(4, 10, 17, .08) 100%),
    linear-gradient(0deg, rgba(4, 10, 17, .78), transparent 27%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  min-height: max(780px, 100svh);
  margin: 0 auto;
  padding: 132px var(--gutter) 122px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eyebrow, .section-index {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 18px; color: var(--blue-soft); }
.eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; }
.eyebrow span { color: rgba(255,255,255,.54); }
.hero-copy-block { width: min(620px, 47vw); margin-right: auto; }
.hero h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 4.15vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.display-title em,
.hero h1 em { color: var(--blue-soft); font-weight: 400; }
.hero-copy {
  max-width: 56ch;
  margin: 28px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.72;
  text-wrap: pretty;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 56px;
  padding: 0 9px 0 25px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 16px 42px rgba(26,58,150,.24);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
}
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(105deg, transparent 18%, rgba(255,255,255,.2) 46%, transparent 72%); transform: translateX(-115%); transition: transform .65s var(--ease); }
.button:hover { transform: translateY(-3px); box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 22px 52px rgba(26,58,150,.36); filter: saturate(1.1); }
.button:hover::before { transform: translateX(115%); }
.button > span { width: 40px; height: 40px; flex: 0 0 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.16); box-shadow: inset 0 1px 0 rgba(255,255,255,.22); transition: transform .25s var(--ease), background .25s; }
.button:hover > span { transform: translate(2px,-2px); background: rgba(255,255,255,.26); }
.button-light { background: linear-gradient(135deg, #ffffff 0%, #e7edff 52%, #b6c6ff 100%); color: var(--ink); border-color: rgba(255,255,255,.7); }
.button-light > span { background: rgba(7,17,28,.1); }
.button-blue { background: linear-gradient(135deg, #4768df 0%, #6d8cff 52%, #93aaff 100%); color: var(--white); }
.hero-meta {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  bottom: 24px;
  width: min(calc(100% - (2 * var(--gutter))), 1120px);
  transform: translateX(-50%);
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius-md);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(135deg, rgba(17,31,48,.78), rgba(7,17,28,.46));
  box-shadow: 0 20px 55px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}
.hero-meta span + span { padding-left: 34px; border-left: 1px solid var(--line-light); }
.hero-meta span { flex: 1 1 0; text-align: center; }

.section { max-width: var(--container); margin: 0 auto; padding: var(--section) var(--gutter); }
.section-index { display: flex; gap: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line-dark); }
.section-index span:first-child { color: var(--blue); }
.section-index-light { border-color: var(--line-light); }
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(56px, 7vw, 104px);
  padding: 72px 0 112px;
}
.intro-grid .display-title { max-width: 13ch; }
.intro-grid .display-title em,
.process-heading .display-title em,
.location .display-title em { color: #4868d5; }
.intro-copy { align-self: end; max-width: 550px; }
.intro-copy .lead { font-size: clamp(20px, 2vw, 28px); line-height: 1.35; letter-spacing: -.02em; }
.intro-copy p:not(.lead) { max-width: 56ch; color: rgba(7,17,28,.68); }
.text-link {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.subjects { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.subject { position: relative; min-height: 190px; padding: 26px 24px; display: flex; flex-direction: column; border: 1px solid rgba(7,17,28,.11); border-radius: var(--radius-md); background: rgba(255,255,255,.3); overflow: hidden; transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.subject::after { content: ""; position: absolute; z-index: -1; top: -80px; right: -80px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(109,140,255,.2), transparent 68%); opacity: 0; transition: opacity .3s var(--ease); }
.subject:hover { z-index: 1; background: rgba(255,255,255,.5); transform: translateY(-4px); box-shadow: 0 22px 56px rgba(7,17,28,.08); }
.subject:hover::after { opacity: 1; }
.subject > span, .process-number {
  color: #4868d5;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}
.subject h3 { min-height: 2.35em; margin: auto 0 0; display: flex; align-items: flex-end; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.12; letter-spacing: -.02em; text-wrap: balance; }

.proof { margin: clamp(12px, 2vw, 28px); border-radius: var(--radius-lg); background: var(--ink); color: var(--white); padding: var(--section) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); overflow: hidden; }
.proof-head { max-width: calc(var(--container) - 2 * var(--gutter)); margin: 0 auto; }
.proof-title-row { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; padding: 72px 0; }
.proof-title-row .display-title { max-width: 12ch; }
.rating { display: grid; min-width: 250px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); text-decoration: none; text-align: left; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.rating:hover { transform: translateY(-3px); border-color: rgba(168,185,255,.5); background: linear-gradient(145deg, rgba(109,140,255,.14), rgba(255,255,255,.04)); }
.rating-brand { display: flex; justify-content: flex-start; align-items: center; gap: 9px; margin-bottom: 12px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.google-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: #4285f4; font-size: 14px; font-weight: 800; letter-spacing: 0; text-transform: none; }
.stars { color: var(--blue-soft); letter-spacing: .18em; font-size: 13px; }
.rating strong { margin-top: 10px; font-size: 24px; }
.rating small { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }
.reviews-toolbar { max-width: calc(var(--container) - 2 * var(--gutter)); margin: 0 auto 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.reviews-toolbar > p { margin: 0; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.reviews-controls { display: flex; gap: 9px; }
.reviews-controls button { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: rgba(255,255,255,.045); color: var(--white); font-size: 17px; transition: transform .22s var(--ease), background .22s, border-color .22s; }
.reviews-controls button:hover { transform: translateY(-2px); border-color: rgba(168,185,255,.55); background: rgba(109,140,255,.16); }
.reviews-shell { max-width: calc(var(--container) - 2 * var(--gutter)); margin: 0 auto; overflow: hidden; }
.reviews { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior-inline: contain; }
.reviews::-webkit-scrollbar { display: none; }
.review { flex: 0 0 clamp(310px, 31vw, 390px); min-height: 390px; padding: 28px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-md); background: rgba(255,255,255,.025); scroll-snap-align: start; transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s; }
.review:hover { background: rgba(255,255,255,.055); border-color: rgba(168,185,255,.28); transform: translateY(-4px); }
.quote-mark { color: var(--blue-soft); font-family: var(--serif); font-size: 68px; line-height: 1; }
.review blockquote { margin: 30px 0 auto; font-family: var(--serif); font-size: clamp(18px, 1.35vw, 21px); line-height: 1.45; letter-spacing: -.01em; text-wrap: pretty; }
.review footer { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.review footer > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: var(--blue-soft); font-size: 10px; }
.review footer p { display: grid; margin: 0; }
.review footer strong { font-size: 11px; letter-spacing: .04em; }
.review footer small { color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }

.process-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; padding: 72px 0 110px; }
.process-heading p { max-width: 42ch; margin: 0; color: rgba(7,17,28,.65); font-size: 17px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-dark); }
.process-list li {
  display: grid;
  grid-template-columns: 74px .75fr 1fr 34px;
  align-items: start;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding .3s var(--ease), background .3s var(--ease);
  border-radius: var(--radius-sm);
}
.process-list li:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.32); }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 400; letter-spacing: -.025em; }
.process-list p { max-width: 60ch; margin: 0; color: rgba(7,17,28,.64); font-size: 14px; }
.process-arrow { justify-self: end; color: #4868d5; font-size: 22px; }

.about {
  position: relative;
  display: grid;
  min-height: 920px;
  padding: clamp(72px, 7vw, 108px) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  grid-template-columns: minmax(0, 1fr) minmax(520px, .92fr);
  align-items: center;
  background: var(--ink-soft);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  margin: clamp(12px, 2vw, 28px);
  border-radius: var(--radius-lg);
}
.about::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8%;
  top: -26%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,140,255,.18), transparent 66%);
  filter: blur(16px);
  pointer-events: none;
}
.about-media { position: absolute; z-index: -2; inset: 0; min-height: 0; overflow: hidden; }
.about-media picture { display: block; width: 100%; height: 100%; }
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,28,.04) 0%, rgba(7,17,28,.13) 42%, rgba(7,17,28,.78) 73%, rgba(7,17,28,.96) 100%),
    linear-gradient(0deg, rgba(7,17,28,.72), transparent 42%);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1s var(--ease); }
.about:hover .about-media img { transform: scale(1.025); }
.about-media > span { position: absolute; z-index: 1; left: var(--gutter); bottom: 48px; font-size: 10px; font-weight: 700; letter-spacing: .16em; line-height: 1.6; text-transform: uppercase; }
.about-content {
  position: relative;
  z-index: 1;
  grid-column: 2;
  padding: clamp(44px, 4vw, 60px);
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(18,32,50,.8), rgba(7,17,28,.62));
  box-shadow: 0 36px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-content::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255,255,255,.06), transparent 24%, transparent 76%, rgba(109,140,255,.07));
  border-radius: inherit;
}
.about-content > * { position: relative; z-index: 1; }
.about-content .display-title { max-width: none; margin: 34px 0 26px; font-size: clamp(38px, 3.4vw, 50px); }
.about-title span { display: block; white-space: nowrap; }
.about-lead { max-width: 48ch; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.82); }
.team-media[hidden], .team-profile[hidden] { display: none; }
.team-media[data-team-media="pedro"] img { object-position: 22% center; }
.team-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 24px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  background: rgba(4,12,21,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.team-tab {
  min-width: 0;
  min-height: 58px;
  display: grid;
  align-content: center;
  gap: 1px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius-md) - 6px);
  background: transparent;
  color: rgba(255,255,255,.58);
  text-align: left;
  transition: color .25s, border-color .25s, background .25s, box-shadow .25s, transform .25s var(--ease);
}
.team-tab:hover { color: var(--white); transform: translateY(-1px); }
.team-tab span { font-size: 13px; font-weight: 750; letter-spacing: .04em; }
.team-tab small { overflow: hidden; font-size: 8px; font-weight: 650; letter-spacing: .1em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.team-tab.is-active {
  border-color: rgba(168,185,255,.46);
  background: linear-gradient(135deg, rgba(109,140,255,.5), rgba(63,90,188,.3));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(10,26,68,.3), inset 0 1px 0 rgba(255,255,255,.18);
}
.team-profile { animation: team-profile-in .42s var(--ease) both; }
.team-profile > * { position: relative; z-index: 1; }
.team-profile .display-title { text-wrap: balance; }
.about-content .team-profile .pedro-title { max-width: none; font-size: clamp(34px, 2.7vw, 40px); line-height: 1.02; }
.pedro-title span { display: block; white-space: nowrap; }
.team-profile p { text-wrap: pretty; }
.team-profile .pedro-lead { text-wrap: balance; }
.keep-together { white-space: nowrap; }
.team-format {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 22px;
  align-items: end;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(109,140,255,.13), rgba(255,255,255,.035));
}
.team-format > span {
  grid-column: 1 / -1;
  color: var(--blue-soft);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.team-format strong { font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; }
.team-format p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.45; }
@keyframes team-profile-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.credentials { display: grid; grid-template-columns: 1fr; gap: 0; margin: 30px 0; padding-top: 12px; border-top: 1px solid var(--line-light); }
.credentials p { margin: 0; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.55; }
.credentials p:last-child { border-bottom: 0; }
.numbers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid var(--line-light); }
.numbers > div { min-width: 0; min-height: 132px; padding: 18px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-sm); background: rgba(255,255,255,.035); }
.numbers strong { white-space: nowrap; font-family: var(--serif); font-size: clamp(42px, 3.4vw, 54px); font-weight: 400; line-height: .92; }
.numbers sup { color: var(--blue-soft); font-size: .45em; }
.numbers span { max-width: 17ch; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 700; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }

.location { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 680px; margin: clamp(12px, 2vw, 28px); border-radius: var(--radius-lg); background: var(--paper-soft); box-shadow: 0 22px 70px rgba(7,17,28,.08); overflow: hidden; }
.location-copy { padding: var(--section) clamp(32px, 6vw, 96px); }
.location .display-title { max-width: 13ch; margin: 70px 0; }
.address { display: grid; grid-template-columns: 90px 1fr; gap: 16px 26px; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.address > span { font-size: 9px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; color: #4868d5; }
.address p { margin: 0; font-size: 14px; }
.address .text-link { grid-column: 2; justify-self: start; }
.map-wrap { min-height: 600px; margin: 16px; border-radius: calc(var(--radius-lg) - 8px); filter: grayscale(1) contrast(.9) sepia(.08); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 600px; border: 0; }

.contact { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(60px, 9vw, 140px); margin: clamp(12px, 2vw, 28px); padding: var(--section) max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter))); border-radius: var(--radius-lg); background: #0a1927; color: var(--white); overflow: hidden; }
.contact::after { content: "?"; position: absolute; right: -2vw; top: -12vw; color: rgba(109,140,255,.055); font-family: var(--serif); font-size: 52vw; line-height: 1; pointer-events: none; }
.contact-copy, .contact-form { position: relative; z-index: 1; }
.contact-copy .display-title { max-width: 13ch; margin: 70px 0 36px; }
.contact-copy > p { max-width: 50ch; color: rgba(255,255,255,.62); }
.contact-note { display: flex; gap: 18px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line-light); color: var(--blue-soft); }
.contact-note p { margin: 0; color: rgba(255,255,255,.68); font-family: var(--serif); font-style: italic; }
.contact-form { align-self: end; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); box-shadow: 0 30px 90px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.07); -webkit-backdrop-filter: blur(16px) saturate(1.1); backdrop-filter: blur(16px) saturate(1.1); }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  background: rgba(255,255,255,.045);
  color: var(--white);
  outline: none;
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--blue-soft); }
.contact-form .button { width: 100%; border: 0; margin-top: 8px; }
.form-note { margin: -10px 0 0; color: rgba(255,255,255,.4); font-size: 10px; text-align: center; }

.site-footer { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; align-items: end; padding: 64px var(--gutter); background: #050c14; color: rgba(255,255,255,.5); border-top: 1px solid var(--line-light); font-size: 10px; letter-spacing: .06em; line-height: 1.65; text-transform: uppercase; }
.site-footer img { width: 174px; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); }

.whatsapp-float {
  position: fixed;
  z-index: 9;
  right: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  display: none;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(168, 185, 255, .7);
  border-radius: 50%;
  background: rgba(7, 17, 28, .94);
  color: var(--blue-soft);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s var(--ease), background .25s;
}
.whatsapp-float.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-float:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .menu-toggle { display: block; }
  .hero-media img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4,10,17,.96) 0%, rgba(4,10,17,.78) 46%, rgba(4,10,17,.16) 100%), linear-gradient(0deg, rgba(4,10,17,.7), transparent 48%); }
  .hero-copy-block { width: min(570px, 56vw); }
  .subjects { grid-template-columns: repeat(3, 1fr); }
  .about { grid-template-columns: .85fr 1.15fr; }
  .credentials { grid-template-columns: 1fr; }
  .contact { gap: 60px; }
}

@media (max-width: 820px) {
  .intro-grid, .process-heading, .location, .contact { grid-template-columns: 1fr; }
  .intro-grid { gap: 42px; padding-bottom: 80px; }
  .intro-copy { max-width: 640px; }
  .proof-title-row { grid-template-columns: 1fr; }
  .rating { justify-self: start; text-align: left; }
  .review { min-height: 360px; padding: 28px; }
  .review blockquote { max-width: 38ch; margin-top: 18px; }
  .process-heading { gap: 34px; padding-bottom: 70px; }
  .process-list li { grid-template-columns: 52px .72fr 1fr 24px; gap: 18px; }
  .about { display: block; min-height: 0; padding: 520px var(--gutter) 80px; }
  .about-media { height: 650px; min-height: 0; }
  .about-media > span { display: none; }
  .about-content { width: min(680px, 100%); margin-left: auto; padding: 58px 48px; }
  .credentials { grid-template-columns: 1fr; }
  .location-copy { padding: 96px var(--gutter); }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
  .contact { padding: 96px var(--gutter); }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --section: 86px; }
  .site-header { height: 76px; }
  .brand img { width: 126px; }
  .header-cta { display: none; }
  .hero { min-height: 900px; padding-top: 0; }
  .hero-media { position: absolute; inset: 0; height: auto; }
  .hero-media img { object-position: 50% top; }
  .hero-shade { display: block; background: linear-gradient(0deg, rgba(4,10,17,1) 0%, rgba(4,10,17,.98) 39%, rgba(4,10,17,.28) 70%, rgba(4,10,17,.08) 100%); }
  .hero-inner { min-height: 900px; padding: 410px var(--gutter) 104px; align-items: flex-end; justify-content: flex-start; background: transparent; }
  .hero-copy-block { width: 100%; margin: 0; text-align: center; }
  .hero h1 { max-width: 100%; margin: 0 auto; font-size: clamp(34px, 9.2vw, 39px); line-height: 1.02; }
  .hero-copy { margin: 24px auto 0; font-size: 14px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { left: 50%; right: auto; bottom: 18px; width: calc(100% - (2 * var(--gutter))); min-height: 54px; justify-content: center; text-align: center; font-size: 9px; }
  .hero-meta span:not(:last-child) { display: none; }
  .hero-meta span + span { padding-left: 0; border-left: 0; }
  .mobile-title-lines { max-width: none !important; font-size: clamp(29px, 7.5vw, 32px); line-height: 1.05; text-wrap: nowrap; }
  .mobile-title-lines > span { display: block; white-space: nowrap; }
  .subjects { grid-template-columns: 1fr; }
  .subject, .subject + .subject { min-height: auto; padding: 24px; }
  .subject h3 { min-height: 0; margin: 22px 0 0; }
  .proof { padding-left: var(--gutter); padding-right: var(--gutter); }
  .proof-title-row { padding: 54px 0; }
  .process-list li { grid-template-columns: 42px 1fr 24px; }
  .process-list h3 { font-size: 25px; }
  .process-list p { grid-column: 2 / -1; }
  .process-arrow { grid-column: 3; grid-row: 1; }
  .about { padding: 460px var(--gutter) 72px; }
  .about-media { height: 580px; min-height: 0; }
  .about-media::after { background: linear-gradient(0deg, rgba(7,17,28,1) 0%, rgba(7,17,28,.76) 24%, rgba(7,17,28,.04) 64%, rgba(7,17,28,.02) 100%); }
  .team-media[data-team-media="rafael"] img { object-position: 22% center; }
  .team-media[data-team-media="pedro"] img { object-position: 10% center; }
  .about-content { width: 100%; margin: 0; padding: 46px 24px 50px; }
  .about-content .display-title { margin: 34px 0 28px; font-size: 34px; }
  .about-content .team-profile .pedro-title { font-size: 29px; }
  .team-tabs { margin-top: 20px; }
  .team-tab { min-height: 56px; padding: 8px 12px; }
  .team-tab small { font-size: 7px; }
  .credentials { grid-template-columns: 1fr; }
  .numbers { gap: 12px; }
  .numbers > div { min-height: 124px; }
  .numbers strong { font-size: 40px; letter-spacing: -.03em; }
  .numbers > div:nth-child(2) strong { font-size: 37px; }
  .location .display-title { margin: 54px 0; }
  .address { grid-template-columns: 1fr; }
  .address .text-link { grid-column: 1; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .contact-copy .display-title { margin-top: 54px; }
  .contact-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .field-full { grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; padding: 54px var(--gutter); }
  .whatsapp-float { display: grid; }
}

@media (max-width: 390px) {
  .hero { min-height: 880px; }
  .hero-inner { min-height: 880px; padding-top: 390px; }
  .hero h1 { font-size: 35px; }
  .button { padding: 0 8px 0 20px; gap: 18px; font-size: 10px; }
  .display-title { font-size: 34px; }
  .mobile-title-lines { font-size: 29px; }
  .about-content .display-title { font-size: 29px; }
  .about-content .team-profile .pedro-title { font-size: 25px; }
  .team-tab small { display: none; }
  .team-format { grid-template-columns: 1fr; align-items: start; }
  .about { padding-top: 420px; }
  .about-media { height: 540px; }
  .numbers { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
