/* Sistema visual: superfícies escuras, tipografia editorial e acentos turquesa. */
:root {
  --black: #090a0c;
  --black-secondary: #111316;
  --graphite: #1b1e22;
  --gray: #9aa2aa;
  --light-gray: #cbd1d5;
  --silver: #edf0f2;
  --turquoise: #33d6d3;
  --turquoise-light: #80eeeb;
  --border: rgba(255, 255, 255, 0.13);
  --display: "Segoe UI Variable Display", "Avenir Next", Arial, sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
button {
  color: inherit;
}
a,
button {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 5px;
}
button:focus-visible {
  border-radius: 2px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}
p {
  color: var(--gray);
}
p + p {
  margin-top: 20px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(34px, 3.8vw, 54px);
}
h3 {
  font-size: 29px;
}
ul {
  padding: 0;
  list-style: none;
}
::selection {
  color: var(--black);
  background: var(--turquoise);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.accent {
  color: var(--turquoise);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: 600;
  color: var(--light-gray);
  line-height: 1.6;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--turquoise);
  color: var(--black);
  padding: 10px 20px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
/* Cabeçalho e navegação */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(9, 10, 12, 0.93);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -1px;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}
.brand span {
  color: var(--turquoise);
}
.brand i {
  font-style: normal;
  color: var(--turquoise);
  margin-left: -4px;
}
#menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
#menu a {
  font-size: 12px;
  color: var(--light-gray);
  padding-block: 12px;
  transition: color 0.2s;
}
#menu a:hover {
  color: var(--turquoise);
}
#menu .nav-cta {
  border: 1px solid #415455;
  color: var(--silver);
  padding: 11px 18px;
  display: flex;
  gap: 24px;
}
.nav-cta span {
  color: var(--turquoise);
}
.menu-toggle {
  display: none;
}
/* Abertura e retrato */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  align-items: center;
  padding-block: 55px 48px;
  min-height: 710px;
}
.hero-copy {
  padding-block: 12px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--turquoise);
  border-radius: 50%;
  box-shadow: 0 0 12px #33d6d355;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(50px, 5.45vw, 78px);
  margin-top: 30px;
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.hero h1 span {
  color: var(--turquoise);
}
.hero-description {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.85;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 33px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  min-height: 49px;
  background: var(--turquoise);
  color: var(--black);
  border: 1px solid var(--turquoise);
  padding: 13px 21px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--turquoise-light);
  border-color: var(--turquoise-light);
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
  font-weight: 400;
}
.text-link {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
  border-bottom: 1px solid var(--border);
}
.text-link:hover {
  color: var(--turquoise);
}
.roles {
  display: flex;
  gap: 37px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid var(--border);
}
.roles div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.roles div + div {
  border-left: 1px solid var(--border);
  padding-left: 30px;
}
.roles span {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--turquoise);
}
.roles strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero-portrait {
  position: relative;
  margin-right: 20px;
}
.portrait-code {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: var(--gray);
}
.portrait-code span {
  color: #a0a7ad;
}
.portrait-frame {
  position: relative;
  clip-path: polygon(0 0, 86% 0, 100% 12%, 100% 100%, 14% 100%, 0 88%);
  background: #1b1e22;
}
.portrait-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid var(--turquoise);
  pointer-events: none;
}
.portrait-frame img {
  height: 536px;
  object-fit: cover;
  object-position: center 10%;
}
.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 17px;
  font-size: 9px;
  letter-spacing: 0.025em;
}
.hero-portrait figcaption strong {
  font-weight: 500;
}
.hero-portrait figcaption span {
  color: var(--gray);
}
.vertical-caption {
  position: absolute;
  right: -30px;
  top: 45%;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.23em;
  color: var(--gray);
}
.values-strip {
  border-block: 1px solid var(--border);
  background: #101214;
}
.values-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-block: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--light-gray);
}
.values-strip i {
  font-size: 20px;
  line-height: 1;
  font-style: normal;
  color: var(--turquoise);
}
/* História e trajetória */
.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  margin-bottom: 42px;
}
.section-label > span {
  color: var(--turquoise);
  font-size: 11px;
  border: 1px solid var(--border);
  padding: 3px 9px;
  letter-spacing: 0.05em;
}
.light {
  background: var(--silver);
  color: var(--black);
}
.light .section-label > span {
  color: #086663;
  border-color: #c3cdcf;
}
.light p {
  color: #505960;
}
.history-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 85px;
}
.history h2 {
  font-size: clamp(35px, 3.6vw, 50px);
  line-height: 1.18;
}
.history h2 span {
  color: #42716f;
}
.history .lead {
  font-size: 20px;
  line-height: 1.6;
  color: #222b2e;
  margin-bottom: 25px;
}
.history-grid p {
  font-size: 14px;
}
.origin-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-size: 15px;
}
.origin-track {
  width: 85px;
  height: 1px;
  background: #71918e;
  position: relative;
}
.origin-track:after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #286e69;
  position: absolute;
  right: 0;
  top: -2px;
}
.origin-line small {
  margin-left: 14px;
  letter-spacing: 0.13em;
  font-size: 8px;
  color: #505960;
}
.turning {
  background: var(--black-secondary);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.turning-photo {
  max-width: 460px;
}
.turning-photo img {
  height: 565px;
  object-fit: cover;
  object-position: center 35%;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 86% 100%, 0 100%);
}
.turning-photo figcaption {
  font-size: 8px;
  color: var(--gray);
  letter-spacing: 0.18em;
  padding-top: 17px;
}
.year {
  font-family: var(--display);
  font-size: 110px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.2;
  color: var(--turquoise);
  display: flex;
  align-items: center;
  gap: 40px;
  margin-block: 10px;
}
.year span {
  font-size: 46px;
  font-weight: 300;
  color: #476061;
}
.turning h2 {
  font-size: 37px;
  margin-bottom: 24px;
  max-width: 400px;
}
.turning p {
  font-size: 14px;
}
.turning blockquote {
  border-left: 2px solid var(--turquoise);
  padding-left: 22px;
  font-size: 19px;
  line-height: 1.6;
  margin-top: 30px;
  color: var(--silver);
}
/* Empresas e princípios */
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
  margin-bottom: 50px;
}
.section-heading > p {
  max-width: 390px;
  font-size: 14px;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.company-card {
  padding: 38px 38px 0;
  background: linear-gradient(130deg, #191d20, #111316 65%);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.company-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 35px;
}
.company-symbol {
  font-size: 52px;
  line-height: 1;
  color: var(--silver);
  font-weight: 600;
  letter-spacing: -5px;
}
.company-symbol > span {
  color: var(--turquoise);
  font-size: 31px;
  vertical-align: top;
}
.company-symbol.infinity {
  font-size: 66px;
  font-weight: 300;
  color: var(--turquoise);
  letter-spacing: 0;
}
.company-top .eyebrow {
  font-size: 9px;
}
.company-card h3 {
  font-size: 32px;
  max-width: 390px;
  margin-bottom: 24px;
}
.company-card p {
  font-size: 14px;
}
.company-card ul {
  margin: 29px 0 34px;
}
.company-card li {
  font-size: 12px;
  padding-block: 6px;
  color: var(--light-gray);
}
.company-card li:before {
  content: "+";
  color: var(--turquoise);
  margin-right: 13px;
}
.card-link {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 23px;
  margin-top: auto;
  font-size: 12px;
}
.card-link span {
  color: var(--turquoise);
  font-size: 23px;
  transition: transform 0.2s;
}
.card-link:hover span {
  transform: translate(3px, -3px);
}
.purpose {
  background:
    radial-gradient(ellipse at 16% 20%, #13302e55, transparent 54%),
    var(--black-secondary);
  border-block: 1px solid var(--border);
}
.purpose-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 90px;
}
.purpose-statement {
  font-size: 23px;
  line-height: 1.6;
  color: var(--silver);
  margin-top: 30px;
  max-width: 480px;
}
.purpose-copy {
  padding-top: 7px;
}
.purpose-copy p {
  font-size: 14px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 70px;
}
.principles article {
  border-top: 1px solid #354340;
  padding-top: 25px;
}
.number {
  font-size: 11px;
  color: var(--turquoise);
  letter-spacing: 0.08em;
}
.principles h3 {
  font-family: var(--body);
  font-size: 17px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin-block: 17px;
}
.principles p {
  font-size: 13px;
  line-height: 1.8;
}
.personal {
  background: #141619;
}
.personal-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 95px;
  align-items: start;
}
.personal h2 {
  max-width: 500px;
}
.personal-intro {
  margin-top: 25px;
  font-size: 14px;
}
.personal-list {
  margin-top: 28px;
}
.personal-list article {
  display: flex;
  gap: 23px;
  padding-block: 22px;
  border-top: 1px solid var(--border);
}
.personal-list h3 {
  font-family: var(--body);
  font-size: 17px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.personal-list p {
  font-size: 13px;
  line-height: 1.75;
}
.personal-photo {
  margin-top: 12px;
  position: sticky;
  top: 125px;
}
.personal-photo img {
  height: 650px;
  object-fit: cover;
  object-position: 50% 38%;
  clip-path: polygon(14% 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 0 12%);
}
.personal-photo figcaption {
  padding: 22px 0 0 25px;
  border-left: 1px solid var(--turquoise);
  margin-top: 20px;
}
.personal-photo figcaption strong,
.personal-photo figcaption span {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.personal-photo figcaption span {
  font-size: 10px;
  color: var(--gray);
  margin-top: 5px;
}
.manifesto {
  border-block: 1px solid var(--border);
  text-align: center;
  padding-block: 80px;
  background: radial-gradient(ellipse at center, #14242455, transparent 70%);
}
.manifesto-mark {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: var(--turquoise);
  margin-bottom: 25px;
}
.manifesto h2 {
  font-size: clamp(32px, 4.3vw, 60px);
  line-height: 1.25;
  font-weight: 400;
}
.manifesto h2 span {
  color: var(--turquoise);
}
.manifesto .eyebrow {
  display: block;
  margin-top: 32px;
  color: var(--gray);
  font-size: 9px;
}
/* Conversa e rodapé */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.contact h2 {
  max-width: 470px;
}
.contact-grid > div > p {
  font-size: 14px;
  margin-top: 28px;
}
.contact-links {
  display: grid;
  gap: 25px;
  margin-top: 45px;
}
.contact-links span {
  display: block;
  font-size: 10px;
  color: var(--gray);
  margin-bottom: 5px;
}
.contact-links a {
  font-size: 18px;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  display: block;
  width: fit-content;
  min-height: 32px;
}
.contact-links a:hover {
  color: var(--turquoise);
}
.contact-links .phone-link {
  font-size: 11px;
  color: var(--gray);
  text-decoration: underline;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 12px;
  margin-bottom: 9px;
}
.field label span {
  color: var(--turquoise);
}
.field small {
  color: var(--gray);
  font-size: 10px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #33393e;
  background: #131619;
  padding: 14px;
  color: var(--silver);
  border-radius: 0;
  font-size: 13px;
}
.field textarea {
  min-height: 135px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #939ca4;
}
.field input:hover,
.field textarea:hover {
  border-color: #607373;
}
.consent {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 24px;
}
.consent input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 3px 0 0;
  accent-color: var(--turquoise);
}
.consent label {
  font-size: 11px;
  line-height: 1.8;
  color: var(--gray);
  cursor: pointer;
}
.consent a {
  text-decoration: underline;
  color: var(--light-gray);
  text-underline-offset: 3px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
.form-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 14px;
}
#form-status {
  font-size: 13px;
  color: var(--turquoise);
  margin-top: 14px;
}
#form-status:empty {
  display: none;
}
.site-footer {
  border-top: 1px solid var(--border);
  background: #101214;
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 70px;
  padding-bottom: 55px;
}
.footer-grid p {
  font-size: 12px;
  line-height: 1.85;
  margin-top: 19px;
}
.footer-grid nav {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 3px;
}
.footer-grid nav a,
.footer-grid nav button {
  font-size: 11px;
  color: var(--gray);
  padding: 7px 0;
  min-height: 34px;
  background: none;
  border: 0;
  text-align: left;
}
.footer-grid nav a:hover,
.footer-grid nav button:hover {
  color: var(--turquoise);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-block: 25px;
  font-size: 10px;
  color: var(--gray);
}
.footer-bottom > a {
  color: var(--silver);
}
/* Privacidade: aviso não modal e painel nativo com foco contido. */
.privacy-banner {
  position: fixed;
  z-index: 40;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1060px, calc(100% - 40px));
  background: #1b2023;
  border: 1px solid #455352;
  box-shadow: 0 12px 50px #0008;
  padding: 20px 25px;
  display: flex;
  gap: 35px;
  align-items: center;
}
.privacy-banner strong {
  font-size: 13px;
  font-weight: 600;
}
.privacy-banner p {
  font-size: 11px;
  margin-top: 3px;
  max-width: 640px;
}
.privacy-actions {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-shrink: 0;
}
.compact {
  font-size: 11px;
  padding: 10px 15px;
  min-height: 44px;
}
.text-button {
  background: none;
  border: 0;
  border-bottom: 1px solid #707b7c;
  padding: 10px 0;
  font-size: 11px;
  min-height: 44px;
}
dialog {
  background: #171c1f;
  color: var(--silver);
  border: 1px solid #465554;
  width: min(530px, calc(100% - 32px));
  padding: 32px;
  max-height: calc(100dvh - 40px);
  overflow: auto;
}
dialog::backdrop {
  background: #000b;
  backdrop-filter: blur(5px);
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.dialog-close {
  font-size: 27px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: none;
  line-height: 1;
}
dialog h2 {
  font-size: 32px;
  margin-bottom: 23px;
}
dialog p {
  font-size: 13px;
}
dialog .necessary {
  border-block: 1px solid var(--border);
  padding-block: 18px;
  margin-block: 25px;
  font-size: 12px;
  display: flex;
  gap: 25px;
  align-items: center;
}
dialog .necessary strong {
  color: var(--turquoise);
  white-space: nowrap;
  font-size: 10px;
}
dialog > a {
  display: block;
  text-decoration: underline;
  font-size: 12px;
  margin-block: 20px;
}
dialog > .button {
  width: 100%;
}
#storage-status:empty {
  display: none;
}
.legal-main {
  padding-block: 65px 100px;
  max-width: 950px;
}
.legal-main > .eyebrow {
  margin-top: 45px;
  color: var(--turquoise);
}
.legal-main h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin-block: 20px;
}
.legal-date {
  font-size: 12px;
}
.legal-content {
  max-width: 800px;
  margin-top: 60px;
}
.legal-content section + section {
  margin-top: 40px;
}
.legal-content h2 {
  font-size: 25px;
  letter-spacing: -0.025em;
  margin-bottom: 17px;
}
.legal-content p {
  font-size: 15px;
  line-height: 1.9;
}
.legal-content a {
  color: var(--turquoise);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
@media (min-width: 1500px) {
  .hero {
    gap: 95px;
    min-height: 770px;
  }
  .portrait-frame img {
    height: 580px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }
  #menu {
    gap: 18px;
  }
  .hero {
    gap: 35px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: 57px;
  }
  .hero-actions {
    gap: 18px;
    flex-wrap: wrap;
  }
  .portrait-frame img {
    height: 510px;
  }
  .hero-portrait figcaption {
    align-items: start;
    flex-direction: column;
  }
  .split,
  .history-grid,
  .purpose-grid,
  .personal-grid,
  .contact-grid {
    gap: 55px;
  }
  .roles {
    gap: 20px;
  }
  .roles div + div {
    padding-left: 20px;
  }
  .company-card {
    padding-inline: 28px;
  }
}
@media (max-width: 880px) {
  .container {
    width: calc(100% - 56px);
  }
  .section {
    padding-block: 80px;
  }
  .header-inner {
    height: 74px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border);
    width: 46px;
    height: 44px;
    padding: 12px;
  }
  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--silver);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  #menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #111619;
    padding: 25px 28px;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  #menu.is-open {
    display: flex;
  }
  #menu a {
    font-size: 14px;
    padding-block: 13px;
  }
  #menu .nav-cta {
    justify-content: space-between;
    margin-top: 8px;
  }
  .hero {
    gap: 25px;
    padding-block: 40px;
    min-height: 610px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding-inline: 14px;
    font-size: 11px;
    gap: 10px;
  }
  .roles {
    margin-top: 30px;
    gap: 15px;
  }
  .roles strong {
    font-size: 10px;
  }
  .roles div + div {
    padding-left: 15px;
  }
  .portrait-frame img {
    height: 450px;
  }
  .hero-portrait {
    margin-right: 12px;
  }
  .vertical-caption {
    right: -21px;
    font-size: 7px;
  }
  .portrait-code {
    font-size: 7px;
  }
  .values-strip .container {
    font-size: 8px;
    letter-spacing: 0.15em;
  }
  .history-grid,
  .split,
  .purpose-grid,
  .personal-grid,
  .contact-grid {
    gap: 35px;
  }
  .history h2 {
    font-size: 35px;
  }
  .history .lead {
    font-size: 18px;
  }
  .turning-photo img {
    height: 540px;
  }
  .turning h2 {
    font-size: 32px;
  }
  .year {
    font-size: 88px;
  }
  .company-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .company-card h3 {
    font-size: 27px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    max-width: 300px;
  }
  .purpose-statement {
    font-size: 21px;
  }
  .principles {
    gap: 25px;
  }
  .personal-photo img {
    height: 530px;
  }
  .contact-links a {
    font-size: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    gap: 35px;
  }
  .privacy-banner {
    gap: 20px;
    padding: 16px 20px;
  }
  .privacy-actions {
    flex-direction: column;
    gap: 0;
  }
  .privacy-banner p {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 65px;
  }
  .brand {
    font-size: 22px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(49px, 9.4vw, 68px);
    margin-top: 25px;
  }
  .hero-description {
    max-width: 480px;
    font-size: 15px;
    margin-top: 22px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-actions {
    gap: 25px;
    margin-top: 25px;
  }
  .hero-actions .button {
    padding: 14px 18px;
    font-size: 12px;
    gap: 20px;
  }
  .roles {
    margin-top: 34px;
    padding-top: 20px;
    gap: 30px;
  }
  .roles strong {
    font-size: 12px;
  }
  .roles div + div {
    padding-left: 28px;
  }
  .hero-portrait {
    width: calc(100% - 20px);
    max-width: 490px;
    margin-inline: auto 20px;
  }
  .portrait-frame img {
    height: 570px;
    object-position: 50% 10%;
  }
  .portrait-code {
    font-size: 9px;
  }
  .hero-portrait figcaption {
    flex-direction: row;
    font-size: 9px;
  }
  .vertical-caption {
    right: -22px;
    font-size: 8px;
  }
  .values-strip .container {
    gap: 10px;
    font-size: 8px;
    letter-spacing: 0.06em;
    padding-block: 19px;
    flex-wrap: wrap;
  }
  .values-strip i {
    font-size: 14px;
  }
  .values-strip i:last-child {
    display: none;
  }
  .section-label {
    margin-bottom: 30px;
  }
  .history-grid,
  .split,
  .purpose-grid,
  .personal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .history h2 {
    font-size: 39px;
  }
  .history h2 span br {
    display: none;
  }
  .history-grid .lead {
    font-size: 19px;
  }
  .history-grid p {
    font-size: 14px;
  }
  .turning-photo {
    max-width: 100%;
    order: 2;
  }
  .turning-photo img {
    height: 520px;
    object-position: center 29%;
  }
  .turning-photo figcaption {
    font-size: 8px;
  }
  .turning h2 {
    font-size: 36px;
    max-width: 440px;
  }
  .turning blockquote {
    font-size: 19px;
  }
  .year {
    font-size: 96px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    margin-top: 23px;
    max-width: 100%;
  }
  .business-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .company-card {
    padding: 28px 27px 0;
  }
  .company-top {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
  }
  .company-card h3 {
    font-size: 31px;
  }
  .company-top .eyebrow {
    font-size: 9px;
  }
  .purpose-statement {
    max-width: 100%;
    font-size: 22px;
  }
  .purpose-grid {
    gap: 24px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 40px;
  }
  .principles article {
    display: grid;
    grid-template-columns: 25px 1fr;
    column-gap: 18px;
    padding-top: 20px;
  }
  .principles .number {
    grid-row: 1/3;
    margin-top: 2px;
  }
  .principles h3 {
    margin: 0 0 12px;
  }
  .principles p {
    grid-column: 2;
  }
  .personal-intro {
    margin-top: 22px;
  }
  .personal-photo {
    position: static;
    margin-top: 0;
  }
  .personal-photo img {
    height: 570px;
    object-position: 50% 36%;
  }
  .manifesto {
    padding-block: 58px;
  }
  .manifesto h2 {
    font-size: clamp(28px, 5.5vw, 39px);
    letter-spacing: -0.045em;
  }
  .manifesto .eyebrow {
    font-size: 8px;
  }
  .contact h2 {
    max-width: 480px;
    font-size: 40px;
  }
  .contact-grid {
    gap: 40px;
  }
  .contact-links {
    gap: 20px;
    margin-top: 30px;
  }
  .contact-links a {
    font-size: 18px;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-grid > div {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-bottom span:first-child {
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .privacy-banner {
    width: calc(100% - 24px);
    bottom: 12px;
    display: block;
    padding: 16px 18px;
  }
  .privacy-banner p {
    font-size: 11px;
    line-height: 1.65;
  }
  .privacy-actions {
    flex-direction: row;
    margin-top: 13px;
    justify-content: space-between;
    gap: 15px;
  }
  .privacy-actions .compact {
    flex: 1;
  }
  .privacy-actions .text-button {
    padding-inline: 8px;
  }
  .legal-main {
    padding-block: 40px 65px;
  }
  .legal-main > .eyebrow {
    margin-top: 30px;
  }
  .legal-content {
    margin-top: 40px;
  }
  .legal-content h2 {
    font-size: 24px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 48px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 13px;
    gap: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .roles {
    gap: 20px;
  }
  .roles div + div {
    padding-left: 20px;
  }
  .roles strong {
    font-size: 10px;
  }
  .portrait-frame img {
    height: 460px;
  }
  .hero-portrait figcaption {
    font-size: 8px;
    gap: 8px;
  }
  .values-strip .container {
    font-size: 7px;
    gap: 7px;
  }
  .values-strip i {
    font-size: 11px;
  }
  .history h2 {
    font-size: 34px;
  }
  h2 {
    font-size: 34px;
  }
  .turning-photo img {
    height: 470px;
  }
  .company-card h3 {
    font-size: 29px;
  }
  .company-top .eyebrow {
    font-size: 8px;
  }
  .personal-photo img {
    height: 490px;
  }
  .manifesto h2 {
    font-size: 28px;
  }
  .contact h2 {
    font-size: 36px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    gap: 22px;
  }
  .footer-grid nav a,
  .footer-grid nav button {
    font-size: 10px;
  }
  .footer-bottom {
    font-size: 9px;
  }
  dialog {
    padding: 23px;
  }
  dialog .necessary {
    gap: 15px;
  }
  dialog h2 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
}
